This file contains hidden or 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
| -dontwarn java.lang.invoke.StringConcatFactory | |
| -keep class com.thinkflagship.shorts.*.data.model** { *; } | |
| -keep class com.thinkflagship.shorts.*.domain.model** { *; } | |
| -keep class com.thinkflagship.shorts.*.presentation.model** { *; } | |
| -keep class org.koin.ksp.generated** { *; } | |
| # General Android rules | |
| -keepattributes Signature | |
| -keepattributes *Annotation* | |
| -keepattributes EnclosingMethod |
This file contains hidden or 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
| FROM amazoncorretto:11-alpine-jdk | |
| ARG SDK_VERSION=commandlinetools-linux-7302050_latest.zip | |
| ARG ANDROID_BUILD_VERSION=30 | |
| ARG ANDROID_TOOLS_VERSION=30.0.3 | |
| ARG ANDROID_CMAKE_VERSION=3.10.2.4988404 | |
| # set default environment variables | |
| ENV ADB_INSTALL_TIMEOUT=10 | |
| ENV ANDROID_HOME=/opt/android |