mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
buildserver: support new ConstraintLayout license bullshit
The new ConstraintLayout library in Android Support has some new custom way of handling the license. I suspect that they are going to use this new way with all of the bits that gradle downloads. We also have to support it for apps that use it, including soon fdroidclient. fdroiddata!2094 ci-images!1
This commit is contained in:
parent
7211381e27
commit
590160d766
1 changed files with 7 additions and 0 deletions
|
@ -71,6 +71,13 @@ y
|
|||
|
||||
EOH
|
||||
|
||||
mkdir -p $ANDROID_HOME/licenses/
|
||||
echo -e "\n8933bad161af4178b1185d1a37fbf41ea5269c55" > $ANDROID_HOME/licenses/android-sdk-license
|
||||
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"
|
||||
echo y | $ANDROID_HOME/tools/bin/sdkmanager "extras;m2repository;com;android;support;constraint;constraint-layout;1.0.2"
|
||||
echo y | $ANDROID_HOME/tools/bin/sdkmanager "extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.2"
|
||||
|
||||
chmod -R a+rX $ANDROID_HOME/
|
||||
find $ANDROID_HOME/ -type f -executable -print0 | xargs -0 chmod a+x
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue