Fixes for package name for android app

This commit is contained in:
M 2022-01-05 17:51:26 +02:00
parent e756490c31
commit 1afd00fa3e
3 changed files with 3 additions and 3 deletions

View file

@ -44,8 +44,7 @@ android {
versionCode flutterVersionCode.toInteger() versionCode flutterVersionCode.toInteger()
versionName flutterVersionName versionName flutterVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
manifestPlaceholders = [APP_NAME: System.getenv('APP_ANDROID_NAME'), manifestPlaceholders = [APP_NAME: System.getenv('APP_ANDROID_NAME')]
APP_PACKAGE: System.getenv('APP_ANDROID_PACKAGE')]
externalNativeBuild { externalNativeBuild {
cmake { cmake {

View file

@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="${APP_PACKAGE}"> package="__APP_PACKAGE__">
<uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.USE_FINGERPRINT"/> <uses-permission android:name="android.permission.USE_FINGERPRINT"/>

View file

@ -6,3 +6,4 @@ if [ -z "$APP_ANDROID_TYPE" ]; then
fi fi
sed -i "0,/version:/{s/version:.*/version: ${APP_ANDROID_VERSION}+${APP_ANDROID_BUILD_NUMBER}/}" ./../../pubspec.yaml sed -i "0,/version:/{s/version:.*/version: ${APP_ANDROID_VERSION}+${APP_ANDROID_BUILD_NUMBER}/}" ./../../pubspec.yaml
sed -i "0,/version:/{s/__APP_PACKAGE__/${APP_ANDROID_PACKAGE}/}" ./../../android/app/src/main/AndroidManifest.xml