diff --git a/.github/workflows/auto_publish_app.yaml b/.github/workflows/auto_publish_app.yaml index 94c167ba..67eff08c 100644 --- a/.github/workflows/auto_publish_app.yaml +++ b/.github/workflows/auto_publish_app.yaml @@ -43,6 +43,11 @@ jobs: distribution: 'corretto' java-version: '17' cache: gradle + - uses: actions/setup-python@v5 + with: + python-version: '3.12.3' + cache: 'pip' + - name: Setup Flutter uses: subosito/flutter-action@v2 with: diff --git a/mobile_app/android/app/build.gradle b/mobile_app/android/app/build.gradle index 91ac25b2..89280260 100644 --- a/mobile_app/android/app/build.gradle +++ b/mobile_app/android/app/build.gradle @@ -30,8 +30,8 @@ if (flutterVersionName == null) { apply plugin: 'com.android.application' // START: FlutterFire Configuration apply plugin: 'com.google.gms.google-services' -apply plugin: 'com.android.application' -apply plugin: 'com.chaquo.python' +apply plugin: 'com.android.application' +apply plugin: 'com.chaquo.python' // END: FlutterFire Configuration apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" @@ -53,7 +53,7 @@ android { versionCode flutterVersionCode.toInteger() versionName flutterVersionName ndk { - abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64" + abiFilters "arm64-v8a", "x86_64" } python { pip { diff --git a/mobile_app/lib/screens/user_screens/user_profile_screen.dart b/mobile_app/lib/screens/user_screens/user_profile_screen.dart index 74c0baf3..b179fc8e 100644 --- a/mobile_app/lib/screens/user_screens/user_profile_screen.dart +++ b/mobile_app/lib/screens/user_screens/user_profile_screen.dart @@ -83,7 +83,7 @@ class _UserProfileScreenState extends State { ), const SizedBox(height: 5), Text( - "Thai Dong", + "Thai Dongggg", style: const TextStyle( fontWeight: FontWeight.bold, fontSize: 18, diff --git a/mobile_app/pubspec.yaml b/mobile_app/pubspec.yaml index 3566e6c8..0ad796ae 100644 --- a/mobile_app/pubspec.yaml +++ b/mobile_app/pubspec.yaml @@ -15,7 +15,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 0.0.1+7 +version: 0.0.1+8 environment: sdk: ">=3.0.0 <4.0.0"