Skip to content

Commit 723f626

Browse files
committed
v2.2.2 tweaks and dependency updates
1 parent 88547a1 commit 723f626

File tree

10 files changed

+29
-37
lines changed

10 files changed

+29
-37
lines changed

LabelStoreMax/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [2.2.2] - 2020-10-30
2+
3+
* Bug fix for Android build
4+
* Pubspec.yaml dependency updates
5+
16
## [2.2.1] - 2020-10-22
27

38
* Minimum IOS deployment now IOS13

LabelStoreMax/android/app/build.gradle

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,6 @@ apply plugin: 'com.android.application'
2525
apply plugin: 'kotlin-android'
2626
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
2727

28-
def keystoreProperties = new Properties()
29-
def keystorePropertiesFile = rootProject.file('key.properties')
30-
if (keystorePropertiesFile.exists()) {
31-
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
32-
}
33-
3428
android {
3529
compileSdkVersion 29
3630

@@ -52,15 +46,6 @@ android {
5246
multiDexEnabled true
5347
}
5448

55-
signingConfigs {
56-
release {
57-
keyAlias keystoreProperties['keyAlias']
58-
keyPassword keystoreProperties['keyPassword']
59-
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
60-
storePassword keystoreProperties['storePassword']
61-
}
62-
}
63-
6449
buildTypes {
6550
release {
6651
// TODO: Add your own signing config for the release build.
@@ -72,8 +57,6 @@ android {
7257
// Also check out https://flutter.dev/docs/deployment/android
7358
// Set the key.properties when building apk or appbundle
7459

75-
// signingConfig signingConfigs.release
76-
7760
signingConfig signingConfigs.debug
7861
}
7962
}
@@ -86,4 +69,4 @@ flutter {
8669
dependencies {
8770
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
8871
implementation 'com.android.support:multidex:1.0.3'
89-
}
72+
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.woosignal.label_storemax">
2+
package="com.woosignal.android">
33
<!-- Flutter needs it to communicate with the running application
44
to allow setting breakpoints, to provide hot reload, etc.
55
-->

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.woosignal.label_storemax">
2+
package="com.woosignal.android">
33
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
44
calls FlutterMain.startInitialization(this); in its onCreate method.
55
In most cases you can leave this as-is, but you if you want to provide
@@ -17,9 +17,9 @@
1717
android:name=".MainActivity"
1818
android:launchMode="singleTop"
1919
android:theme="@style/LaunchTheme"
20-
android:screenOrientation="portrait"
2120
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
2221
android:hardwareAccelerated="true"
22+
android:screenOrientation="portrait"
2323
android:windowSoftInputMode="adjustResize">
2424
<!-- Specifies an Android theme to apply to this Activity as soon as
2525
the Android process has started. This theme is visible to the user
@@ -57,4 +57,4 @@
5757
android:name="flutterEmbedding"
5858
android:value="2" />
5959
</application>
60-
</manifest>
60+
</manifest>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.woosignal.label_storemax
1+
package com.woosignal.android
22

33
import io.flutter.embedding.android.FlutterActivity
44

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.woosignal.label_storemax">
2+
package="com.woosignal.android">
33
<!-- Flutter needs it to communicate with the running application
44
to allow setting breakpoints, to provide hot reload, etc.
55
-->

LabelStoreMax/android/build.gradle

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ buildscript {
33
repositories {
44
google()
55
jcenter()
6-
maven {
7-
url "https://maven.google.com"
8-
}
96
}
107

118
dependencies {

LabelStoreMax/pubspec.lock

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,14 +112,21 @@ packages:
112112
name: device_info
113113
url: "https://pub.dartlang.org"
114114
source: hosted
115-
version: "0.4.2+4"
115+
version: "0.4.2+9"
116+
device_info_platform_interface:
117+
dependency: transitive
118+
description:
119+
name: device_info_platform_interface
120+
url: "https://pub.dartlang.org"
121+
source: hosted
122+
version: "1.0.1"
116123
dio:
117124
dependency: transitive
118125
description:
119126
name: dio
120127
url: "https://pub.dartlang.org"
121128
source: hosted
122-
version: "3.0.9"
129+
version: "3.0.10"
123130
edge_alert:
124131
dependency: "direct main"
125132
description:
@@ -461,7 +468,7 @@ packages:
461468
name: shared_preferences
462469
url: "https://pub.dartlang.org"
463470
source: hosted
464-
version: "0.5.12"
471+
version: "0.5.12+2"
465472
shared_preferences_linux:
466473
dependency: transitive
467474
description:
@@ -634,7 +641,7 @@ packages:
634641
name: uuid
635642
url: "https://pub.dartlang.org"
636643
source: hosted
637-
version: "2.1.0"
644+
version: "2.2.2"
638645
vector_math:
639646
dependency: transitive
640647
description:
@@ -655,7 +662,7 @@ packages:
655662
name: woosignal
656663
url: "https://pub.dartlang.org"
657664
source: hosted
658-
version: "1.2.0"
665+
version: "1.2.1"
659666
woosignal_stripe:
660667
dependency: "direct main"
661668
description:

LabelStoreMax/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Official WooSignal App Template for WooCommerce
22

33
# Label StoreMax
4-
# Version 2.2.1
4+
# Version 2.2.2
55
# Homepage: https://woosignal.com
66
# Author: Anthony Gordon <agordon@woosignal.com>
77
# Documentation: https://woosignal.com/docs/app/ios/label-storemax
@@ -27,7 +27,7 @@ environment:
2727
sdk: ">=2.1.0 <3.0.0"
2828

2929
dependencies:
30-
woosignal: ^1.2.0
30+
woosignal: ^1.2.1
3131
woosignal_stripe: ^0.0.6
3232
razorpay_flutter: ^1.2.2
3333
wp_json_api: ^0.1.4

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# WooCommerce App: Label StoreMax
66

7-
### Label StoreMax - v2.2.1
7+
### Label StoreMax - v2.2.2
88

99

1010
[Official WooSignal WooCommerce App](https://woosignal.com)
@@ -26,8 +26,8 @@ Label StoreMax is a WooCommerce Flutter App template, built exclusively for onli
2626

2727
- App Store Ready
2828
- One config file
29-
- Login/register via WordPress
30-
- Stripe, Cash on delivery, RazorPay
29+
- Login/Register via WordPress
30+
- Stripe, Cash On Delivery, RazorPay
3131
- Localized for en, es, pt, it, hi, fr
3232

3333
## Security Vulnerabilities

0 commit comments

Comments
 (0)