Update Android runner

This commit is contained in:
Anton Tananaev 2025-05-09 22:15:27 -07:00
parent 37c0513c5d
commit 531b7eee02
10 changed files with 38 additions and 4 deletions

View file

@ -5,6 +5,9 @@ plugins {
id("dev.flutter.flutter-gradle-plugin")
}
val backgroundGeolocation = project(":flutter_background_geolocation")
apply { from("${backgroundGeolocation.projectDir}/background_geolocation.gradle") }
android {
namespace = "com.example.traccar_client"
compileSdk = flutter.compileSdkVersion
@ -20,8 +23,7 @@ android {
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = "com.example.traccar_client"
applicationId = "org.traccar.client"
// You can update the following values to match your application needs.
// For more information, see: https://flutter.dev/to/review-gradle-config.
minSdk = flutter.minSdkVersion
@ -35,6 +37,7 @@ android {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig = signingConfigs.getByName("debug")
isShrinkResources = false
}
}
}