Skip to content

Commit

Permalink
feat: Add naming for APK
Browse files Browse the repository at this point in the history
  • Loading branch information
Xtr126 committed Feb 19, 2024
1 parent e525668 commit 48650ca
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,19 @@ android {
ignoreAssetsPattern ''
}
}
externalNativeBuild {

externalNativeBuild {
ndkBuild {
path 'Android.mk'
}
}

applicationVariants.configureEach {
it.outputs.every {
it.outputFileName = "XtMapper-${it.name}-v${defaultConfig.versionName}.apk"
}
}

buildTypes {
release {
minifyEnabled false
Expand Down

0 comments on commit 48650ca

Please sign in to comment.