small fix for AndroidManifest.xml

This commit is contained in:
WooSignal 2020-05-04 22:11:41 +01:00
parent d0270cdcd3
commit 54e215507f
4 changed files with 25 additions and 5 deletions

View File

@ -1,3 +1,7 @@
## [2.0.2] - 2020-05-04
* AndroidManifest.xml bug fix
## [2.0.1] - 2020-04-30
* Login/register with WordPress

View File

@ -62,7 +62,15 @@ android {
}
buildTypes {
release {
signingConfig signingConfigs.release
// Uncomment "signingConfig signingConfigs.release"
// Remove "signingConfig signingConfigs.debug"
// When you're ready to build for release
// Also check out https://flutter.dev/docs/deployment/android
// Set the key.properties when building apk or appbundle
// signingConfig signingConfigs.release
signingConfig signingConfigs.debug
}
}

View File

@ -1,5 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.woosignal.label_storemax">
package="com.woosignal.label_storemax"
xmlns:tools="http://schemas.android.com/tools">
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
calls FlutterMain.startInitialization(this); in its onCreate method.
@ -13,6 +14,7 @@
<application
android:name="io.flutter.app.FlutterApplication"
android:label="label_storemax"
tools:replace="android:label"
android:icon="@mipmap/launcher_icon">
<activity
android:name=".MainActivity"

View File

@ -1,4 +1,10 @@
storePassword=<password>
keyPassword=<password>
storePassword=""
keyPassword=""
keyAlias=key
storeFile=<location of the key store file, e.g. /Users/<user name>/key.jks>
storeFile=""
#update the above. Check out https://flutter.dev/docs/deployment/android for more info
#storePassword=<password>
#keyPassword=<password>
#keyAlias=key
#storeFile=<location of the key store file, e.g. /Users/<user name>/key.jks>