Merge pull request #160 from TouchInstinct/feature/android_application_bundle_naming_format

Add buildscript for naming application bundle
This commit is contained in:
Даниил Борисовский 2020-02-04 16:25:29 +03:00 committed by GitHub
commit 6917053179
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
android {
defaultConfig {
setProperty(
"archivesBaseName",
"${project.android.defaultConfig.applicationId}" +
"-" +
"${project.android.defaultConfig.versionName}"
)
}
}