diff --git a/brouter-routing-app/build.gradle b/brouter-routing-app/build.gradle index 7dc0085..56038cf 100644 --- a/brouter-routing-app/build.gradle +++ b/brouter-routing-app/build.gradle @@ -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