M .builds/debian-stable.yml => .builds/debian-stable.yml +2 -2
@@ 43,6 43,6 @@ tasks:
echo keystore.alias=cheogram >> signing.properties
./gradlew bundleCheogramPlaystoreRelease
- assets: |
- mv cheogram-android/build/outputs/apk/cheogramFree/debug/*.apk cheogram.apk
- mv cheogram-android/build/outputs/apk/cheogramPlaystore/debug/*.apk cheogram_google_play.apk
+ mv cheogram-android/build/outputs/apk/cheogramFree/debug/*universal*.apk cheogram.apk
+ mv cheogram-android/build/outputs/apk/cheogramPlaystore/debug/*universal*.apk cheogram_google_play.apk
mv cheogram-android/build/outputs/bundle/cheogramPlaystoreRelease/*.aab cheogram_google_play.aab
M build.gradle => build.gradle +7 -0
@@ 146,6 146,13 @@ android {
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
+ splits {
+ abi {
+ universalApk true
+ enable true
+ }
+ }
+
configurations {
implementation.exclude group: 'org.jetbrains' , module:'annotations'
}