Merge pull request #160 from TouchInstinct/feature/android_application_bundle_naming_format
Add buildscript for naming application bundle
This commit is contained in:
commit
6917053179
|
|
@ -0,0 +1,10 @@
|
|||
android {
|
||||
defaultConfig {
|
||||
setProperty(
|
||||
"archivesBaseName",
|
||||
"${project.android.defaultConfig.applicationId}" +
|
||||
"-" +
|
||||
"${project.android.defaultConfig.versionName}"
|
||||
)
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue