Add prefix to application id during debug

This allows to install the application side by side on a real device where the
production app is installed as well
This commit is contained in:
Roland Geider
2023-11-09 19:37:59 +01:00
parent 81ed85c2f2
commit 1b09cfd73a

View File

@@ -99,6 +99,9 @@ android {
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.release
}
debug {
applicationIdSuffix ".debug"
}
}
}