Skip to content

Commit 54e2155

Browse files
author
WooSignal
committed
small fix for AndroidManifest.xml
1 parent d0270cd commit 54e2155

File tree

4 files changed

+25
-5
lines changed

4 files changed

+25
-5
lines changed

LabelStoreMax/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [2.0.2] - 2020-05-04
2+
3+
* AndroidManifest.xml bug fix
4+
15
## [2.0.1] - 2020-04-30
26

37
* Login/register with WordPress

LabelStoreMax/android/app/build.gradle

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,15 @@ android {
6262
}
6363
buildTypes {
6464
release {
65-
signingConfig signingConfigs.release
65+
// Uncomment "signingConfig signingConfigs.release"
66+
// Remove "signingConfig signingConfigs.debug"
67+
// When you're ready to build for release
68+
// Also check out https://flutter.dev/docs/deployment/android
69+
// Set the key.properties when building apk or appbundle
70+
71+
// signingConfig signingConfigs.release
72+
73+
signingConfig signingConfigs.debug
6674
}
6775
}
6876

LabelStoreMax/android/app/src/main/AndroidManifest.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.woosignal.label_storemax">
2+
package="com.woosignal.label_storemax"
3+
xmlns:tools="http://schemas.android.com/tools">
34

45
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
56
calls FlutterMain.startInitialization(this); in its onCreate method.
@@ -13,6 +14,7 @@
1314
<application
1415
android:name="io.flutter.app.FlutterApplication"
1516
android:label="label_storemax"
17+
tools:replace="android:label"
1618
android:icon="@mipmap/launcher_icon">
1719
<activity
1820
android:name=".MainActivity"
Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
storePassword=<password>
2-
keyPassword=<password>
1+
storePassword=""
2+
keyPassword=""
33
keyAlias=key
4-
storeFile=<location of the key store file, e.g. /Users/<user name>/key.jks>
4+
storeFile=""
5+
6+
#update the above. Check out https://flutter.dev/docs/deployment/android for more info
7+
#storePassword=<password>
8+
#keyPassword=<password>
9+
#keyAlias=key
10+
#storeFile=<location of the key store file, e.g. /Users/<user name>/key.jks>

0 commit comments

Comments
 (0)