diff --git a/.builds/debian-stable.yml b/.builds/debian-stable.yml index 1abdf309dda2ff74d398f02048f8bc53cc3d147b..e7450199971c2b33081e98e48dd5c89d5f7e4aa8 100644 --- a/.builds/debian-stable.yml +++ b/.builds/debian-stable.yml @@ -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 diff --git a/build.gradle b/build.gradle index 953c93b78c523a08e3791258db34bd0c9848564d..e89526e6aece240a2ae3f6b23519d5d44564ced4 100644 --- a/build.gradle +++ b/build.gradle @@ -146,6 +146,13 @@ android { testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } + splits { + abi { + universalApk true + enable true + } + } + configurations { implementation.exclude group: 'org.jetbrains' , module:'annotations' }