added new gradle app name
This commit is contained in:
parent
b1e9208be6
commit
8d22a2d0eb
1 changed files with 5 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform
|
import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
|
id 'base'
|
||||||
id 'com.android.application'
|
id 'com.android.application'
|
||||||
id 'checkstyle'
|
id 'checkstyle'
|
||||||
id 'brouter.version-conventions'
|
id 'brouter.version-conventions'
|
||||||
|
@ -9,6 +10,10 @@ plugins {
|
||||||
android {
|
android {
|
||||||
compileSdk 34
|
compileSdk 34
|
||||||
|
|
||||||
|
base {
|
||||||
|
archivesName = "BRouterApp." + project.version
|
||||||
|
}
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
namespace 'btools.routingapp'
|
namespace 'btools.routingapp'
|
||||||
applicationId "btools.routingapp"
|
applicationId "btools.routingapp"
|
||||||
|
@ -17,7 +22,6 @@ android {
|
||||||
versionName project.version
|
versionName project.version
|
||||||
|
|
||||||
resValue('string', 'app_version', defaultConfig.versionName)
|
resValue('string', 'app_version', defaultConfig.versionName)
|
||||||
setProperty("archivesBaseName", "BRouterApp." + defaultConfig.versionName)
|
|
||||||
|
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 35
|
targetSdkVersion 35
|
||||||
|
|
Loading…
Reference in a new issue