Skip to content

Commit 335144f

Browse files
committed
v8.0.0
1 parent 7185a3d commit 335144f

File tree

145 files changed

+4547
-1955
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+4547
-1955
lines changed

LabelStoreMax/.env

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ APP_DEBUG="true"
66
APP_URL="https://mywoocommercestore.com"
77
API_BASE_URL="https://mywoocommercestore.com"
88

9-
ASSET_PATH_PUBLIC="public/assets/"
10-
ASSET_PATH_IMAGES="public/assets/images"
9+
ASSET_PATH_PUBLIC="public/"
10+
ASSET_PATH_IMAGES="public/images"
1111
TIMEZONE="UTC"
1212

1313
LIGHT_THEME_ID="default_light_theme"

LabelStoreMax/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [8.0.0] - 2024-12-01
2+
3+
* Update project for Nylo 6.x
4+
* Pubspec.yaml dependency updates
5+
16
## [7.5.7] - 2024-07-31
27

38
* Update order_wc.dart class

LabelStoreMax/analysis_options.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# (the recommended set includes the core lints).
1212
# The core lints are also what is used by pub.dev for scoring packages.
1313

14-
include: package:lints/recommended.yaml
14+
#include: package:flutter_lints/flutter.yaml
1515

1616
# Uncomment the following section to specify additional rules.
1717

LabelStoreMax/android/app/build.gradle

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,23 @@ if (flutterVersionName == null) {
2323
}
2424

2525
android {
26+
namespace "com.woosignal.android"
27+
compileSdk 35
28+
ndkVersion = "25.1.8937393"
29+
2630
packagingOptions {
2731
exclude 'META-INF/DEPENDENCIES'
2832
}
2933

30-
compileSdkVersion 34
34+
compileOptions {
35+
coreLibraryDesugaringEnabled true
36+
sourceCompatibility JavaVersion.VERSION_17
37+
targetCompatibility JavaVersion.VERSION_17
38+
}
39+
40+
kotlinOptions {
41+
jvmTarget = 17
42+
}
3143

3244
sourceSets {
3345
main.java.srcDirs += 'src/main/kotlin'
@@ -60,4 +72,6 @@ flutter {
6072
source '../..'
6173
}
6274

63-
dependencies {}
75+
dependencies {
76+
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.2.2'
77+
}

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

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

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.woosignal.android">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
43
calls FlutterMain.startInitialization(this); in its onCreate method.
54
In most cases you can leave this as-is, but you if you want to provide

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.woosignal.android">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<!-- Flutter needs it to communicate with the running application
43
to allow setting breakpoints, to provide hot reload, etc.
54
-->
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
org.gradle.jvmargs=-Xmx4G
1+
org.gradle.jvmargs=-Xmx4G -XX:MaxMetaspaceSize=2G -XX:+HeapDumpOnOutOfMemoryError
22
android.useAndroidX=true
3-
android.enableJetifier=true
3+
android.enableJetifier=true
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Fri Jun 23 08:50:38 CEST 2017
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
43
zipStoreBase=GRADLE_USER_HOME
54
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip

LabelStoreMax/android/settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ pluginManagement {
1919

2020
plugins {
2121
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
22-
id "com.android.application" version "7.3.0" apply false
23-
id "org.jetbrains.kotlin.android" version "1.9.10" apply false
22+
id "com.android.application" version "8.3.2" apply false
23+
id "org.jetbrains.kotlin.android" version "2.0.20" apply false
2424
}
2525

2626
include ":app"

0 commit comments

Comments
 (0)