-
-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added VanillaIceCream (API 35) * Added arm64 architecture (#10)
- Loading branch information
Showing
5 changed files
with
30 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,10 +6,10 @@ LABEL maintainer="Álvaro Salcedo García <[email protected]>" | |
ARG BUILD_TOOLS | ||
ARG TARGET_SDK | ||
|
||
ENV PATH $PATH:${ANDROID_SDK_ROOT}/build-tools/${BUILD_TOOLS} | ||
ENV PATH=$PATH:${ANDROID_SDK_ROOT}/build-tools/${BUILD_TOOLS} | ||
|
||
# Install SDK Packages | ||
RUN sdkmanager --sdk_root="${ANDROID_SDK_ROOT}" --install "build-tools;${BUILD_TOOLS}" "platforms;android-${TARGET_SDK}" && \ | ||
sdkmanager --sdk_root="${ANDROID_SDK_ROOT}" --uninstall emulator | ||
sdkmanager --sdk_root="${ANDROID_SDK_ROOT}" --uninstall emulator || true | ||
|
||
CMD ["/bin/bash"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,9 +6,9 @@ LABEL maintainer="Álvaro Salcedo García <[email protected]>" | |
ARG CMDLINE_VERSION | ||
ARG SDK_TOOLS_VERSION | ||
|
||
ENV ANDROID_SDK_ROOT "/opt/sdk" | ||
ENV ANDROID_HOME ${ANDROID_SDK_ROOT} | ||
ENV PATH $PATH:${ANDROID_SDK_ROOT}/cmdline-tools/${CMDLINE_VERSION}/bin:${ANDROID_SDK_ROOT}/platform-tools:${ANDROID_SDK_ROOT}/extras/google/instantapps | ||
ENV ANDROID_SDK_ROOT="/opt/sdk" | ||
ENV ANDROID_HOME=${ANDROID_SDK_ROOT} | ||
ENV PATH=$PATH:${ANDROID_SDK_ROOT}/cmdline-tools/${CMDLINE_VERSION}/bin:${ANDROID_SDK_ROOT}/platform-tools:${ANDROID_SDK_ROOT}/extras/google/instantapps | ||
|
||
RUN apk upgrade && \ | ||
apk add --no-cache bash curl git unzip wget coreutils openssh-client tar && \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
set -e | ||
|
||
DEFAULT_NDK=26.1.10909125 | ||
DEFAULT_NDK=27.0.12077973 | ||
DEFAULT_CMAKE=3.22.1 | ||
|
||
install_fastlane() { | ||
|