Álvaro Salcedo García

Results 9 comments of Álvaro Salcedo García

Hello @iamarjun, that is because it downloads the SDK version according to the compileSDK. Here is a log using `android-30-jdk11`: ``` /home/android/katana # ./gradlew assembleDebug Downloading https://services.gradle.org/distributions/gradle-7.5.1-bin.zip ...........10%............20%...........30%............40%...........50%............60%...........70%............80%...........90%............100% Configuration cache...

Is it possible to disable this or at least configure each destination? Because each of my composables are in a separated module and internal, I cannot create a navigation-like class...

Hi @cah-jayakumar-asokan, I did some tests in differents CI using `android-31-jdk11` and when executing `./gradlew buildDebug` on [this](https://github.com/skydoves/Pokedex) project, I get an average time of 6 minutes. Can you try...

Hi @Horkyze, can you try with: ```Dockerfile FROM alvrme/alpine-android:android-30-jdk11 USER root RUN extras fastlane ``` If not I will specify a default version for fastlane.

Hi @samkhawase, right now arm64 is not supported in Alpine AdoptOpenJDK images (AdoptOpenJDK/openjdk-docker#519) nor Amazon Corretto (corretto/corretto-docker#46) so is not possible to do right now, maybe in a future.

@samkhawase @rizkyramadhan I'm going to create tomorrow a test image using [Liberica JDK](https://bell-sw.com/pages/libericajdk/) instead of AdoptOpenJDK/Corretto because it seems that it will take a long time. I will let you...

Is not possible yet to generate arm64 images. `build-tools` package installs `emulator` package and is not yet available for arm64. It seems that it will be with the release of...

The file is created automatically when you compile the project in debug. If you are not compiling it, you need to create it before. You can create a new one...

By default, AABs are not signed during creation if the signingConfig is not specified for that buildType. That is because the signing is done when creating the APK from that...