Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
bc74ae54
Unverified
Commit
bc74ae54
authored
Aug 12, 2020
by
Dan Field
Committed by
GitHub
Aug 12, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused files (#63532)
parent
cbb821ab
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
45 deletions
+0
-45
download_android_sdk.sh
dev/bots/download_android_sdk.sh
+0
-28
download_open_jdk.sh
dev/bots/download_open_jdk.sh
+0
-17
No files found.
dev/bots/download_android_sdk.sh
deleted
100755 → 0
View file @
cbb821ab
#!/usr/bin/env bash
# Copyright 2014 The Flutter Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
set
-e
if
[[
-z
$ANDROID_SDK_TOOLS_URL
||
-z
$ANDROID_HOME
||
-z
$ANDROID_SDK_ROOT
]]
;
then
exit
0
fi
curl
-L
$ANDROID_SDK_TOOLS_URL
--output
android_sdk_tools.zip
mkdir
-p
$ANDROID_SDK_ROOT
unzip android_sdk_tools.zip
-d
$ANDROID_SDK_ROOT
rm
android_sdk_tools.zip
yes
|
$ANDROID_SDK_ROOT
/tools/bin/sdkmanager
--licenses
$ANDROID_SDK_ROOT
/tools/bin/sdkmanager tools
$ANDROID_SDK_ROOT
/tools/bin/sdkmanager platform-tools
# this is large and we don't need it just yet
# $ANDROID_SDK_ROOT/tools/bin/sdkmanager emulator
$ANDROID_SDK_ROOT
/tools/bin/sdkmanager
"platforms;android-28"
\
"build-tools;28.0.3"
\
"platforms;android-27"
\
"build-tools;27.0.3"
\
"extras;google;m2repository"
\
"extras;android;m2repository"
dev/bots/download_open_jdk.sh
deleted
100755 → 0
View file @
cbb821ab
#!/usr/bin/env bash
# Copyright 2014 The Flutter Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
set
-e
if
[[
-z
$OPEN_JDK_URL
]]
;
then
exit
0
fi
mkdir
-p
$HOME
/Java
pushd
$HOME
/Java
curl
-L
$OPEN_JDK_URL
--output
open_jdk.tar.gz
tar
-xvf
open_jdk.tar.gz
rm
open_jdk.tar.gz
popd
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment