mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-19 21:30:10 +01:00
Merge branch 'gradle-platform-install' into 'master'
Allow Gradle to install new platforms See merge request fdroid/fdroidserver!373
This commit is contained in:
commit
b72d6d7dbb
@ -74,7 +74,11 @@ y
|
||||
EOH
|
||||
|
||||
mkdir -p $ANDROID_HOME/licenses/
|
||||
echo -e "\n8933bad161af4178b1185d1a37fbf41ea5269c55" > $ANDROID_HOME/licenses/android-sdk-license
|
||||
cat << EOF > $ANDROID_HOME/licenses/android-sdk-license
|
||||
|
||||
8933bad161af4178b1185d1a37fbf41ea5269c55
|
||||
d56f5187479451eabf01fb78af6dfcb131a6481e
|
||||
EOF
|
||||
echo -e "\n84831b9409646a918e30573bab4c9c91346d8abd" > $ANDROID_HOME/licenses/android-sdk-preview-license
|
||||
echo y | $ANDROID_HOME/tools/bin/sdkmanager "extras;m2repository;com;android;support;constraint;constraint-layout;1.0.1"
|
||||
echo y | $ANDROID_HOME/tools/bin/sdkmanager "extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.1"
|
||||
@ -86,9 +90,9 @@ chgrp vagrant $ANDROID_HOME
|
||||
chmod g+w $ANDROID_HOME
|
||||
find $ANDROID_HOME/ -type f -executable -print0 | xargs -0 chmod a+x
|
||||
|
||||
# allow gradle to install newer build-tools versions
|
||||
chgrp vagrant $ANDROID_HOME/build-tools
|
||||
chmod g+w $ANDROID_HOME/build-tools
|
||||
# allow gradle to install newer build-tools and platforms
|
||||
chgrp vagrant $ANDROID_HOME/{build-tools,platforms}
|
||||
chmod g+w $ANDROID_HOME/{build-tools,platforms}
|
||||
|
||||
# allow gradle/sdkmanager to install into the new m2repository
|
||||
test -d $ANDROID_HOME/extras/m2repository || mkdir -p $ANDROID_HOME/extras/m2repository
|
||||
|
Loading…
Reference in New Issue
Block a user