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
|
||||
|
||||
plugins {
|
||||
id 'base'
|
||||
id 'com.android.application'
|
||||
id 'checkstyle'
|
||||
id 'brouter.version-conventions'
|
||||
|
@ -9,6 +10,10 @@ plugins {
|
|||
android {
|
||||
compileSdk 34
|
||||
|
||||
base {
|
||||
archivesName = "BRouterApp." + project.version
|
||||
}
|
||||
|
||||
defaultConfig {
|
||||
namespace 'btools.routingapp'
|
||||
applicationId "btools.routingapp"
|
||||
|
@ -17,7 +22,6 @@ android {
|
|||
versionName project.version
|
||||
|
||||
resValue('string', 'app_version', defaultConfig.versionName)
|
||||
setProperty("archivesBaseName", "BRouterApp." + defaultConfig.versionName)
|
||||
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 35
|
||||
|
|
Loading…
Reference in a new issue