Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
KEY_ALIAS: ${{ secrets.KEY_ALIAS }}
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
run: ./gradlew assembleRelease --stacktrace
run: ./gradlew assembleRelease -PabiSplits --stacktrace
- name: Upload Debug APK
uses: actions/upload-artifact@v4
with:
Expand All @@ -74,5 +74,5 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: ModBundle-Release
path: app/build/outputs/apk/release/app-release.apk
path: app/build/outputs/apk/release/*.apk
retention-days: 30
14 changes: 13 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,24 @@ android {
buildTypes {
release {
signingConfig signingConfigs.release
minifyEnabled false
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
signingConfig signingConfigs.release
debuggable true
minifyEnabled false
shrinkResources false
}
}

splits {
abi {
enable project.hasProperty('abiSplits')
reset()
include 'arm64-v8a', 'armeabi-v7a', 'x86_64'
universalApk true
}
}

Expand Down
Loading