fix: android update

This commit is contained in:
Stefan Schueller 2021-10-01 18:22:27 +02:00
parent 3e168e6d98
commit cb9801b185
1 changed files with 5 additions and 4 deletions

View File

@ -3,7 +3,8 @@ FROM gradle:7-jdk16
# get link at bottom of https://developer.android.com/studio
ENV ANDROID_SDK_URL https://dl.google.com/android/repository/commandlinetools-linux-7583922_latest.zip
ENV ANDROID_SDK_CHECKSUM 124f2d5115eee365df6cf3228ffbca6fc3911d16f8025bebd5b1c6e2fcfa7faf
ENV ANDROID_BUILD_TOOLS_VERSION 29.0.3
# https://developer.android.com/studio/releases/platform-tools
ENV ANDROID_BUILD_TOOLS_VERSION 29.0.6
ENV ANDROID_HOME /usr/local/android-sdk-linux
ENV ANDROID_VERSION 29
ENV PATH ${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools
@ -15,9 +16,9 @@ RUN mkdir "$ANDROID_HOME" .android && \
unzip sdk.zip && \
rm sdk.zip
RUN yes | ${ANDROID_HOME}/tools/bin/sdkmanager --licenses
RUN $ANDROID_HOME/tools/bin/sdkmanager --update
RUN $ANDROID_HOME/tools/bin/sdkmanager "build-tools;${ANDROID_BUILD_TOOLS_VERSION}" \
RUN yes | ${ANDROID_HOME}/cmdline-tools/bin/sdkmanager --licenses
RUN $ANDROID_HOME/cmdline-tools/bin/sdkmanager --update
RUN $ANDROID_HOME/cmdline-tools/bin/sdkmanager "build-tools;${ANDROID_BUILD_TOOLS_VERSION}" \
"platforms;android-${ANDROID_VERSION}" \
"platform-tools"