Skip to content

Commit 10aa6c5

Browse files
authored
Merge pull request #50 from JDI-Group/redesign
Redesign
2 parents 1e16e8b + 2c43af6 commit 10aa6c5

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

.github/workflows/compile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
echo "$(( ${{ secrets.DEV_ENV_FILE_CONTENT }} + 67 ))" > .env
2727
shell: bash
2828

29-
- uses: reasje/action-flutter-build-android@main
29+
- uses: sheenhx/action-flutter-build-android@main
3030
with:
3131
keystore-base64: ${{ secrets.ANDROID_RELEASE_KEY }}
3232
keystore-password: "${{ secrets.ANDROID_RELEASE_KEY_PASSWORD }}"

.github/workflows/submit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
echo "$(( ${{ secrets.PROD_ENV_FILE_CONTENT }} + 67 ))" > .env
2525
shell: bash
2626

27-
- uses: reasje/action-flutter-build-android@main
27+
- uses: sheenhx/action-flutter-build-android@main
2828
with:
2929
keystore-base64: ${{ secrets.ANDROID_RELEASE_KEY }}
3030
keystore-password: "${{ secrets.ANDROID_RELEASE_KEY_PASSWORD }}"

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ android {
6363
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
6464
minSdkVersion 21
6565
minSdk 21
66-
manifestPlaceholders = [
66+
manifestPlaceholders += [
6767
minSdkVersion: "21",
68-
applicationName: "android.app.Application"
68+
applicationName: "io.flutter.app.FlutterApplication"
6969
]
7070
targetSdkVersion rootProject.ext.targetSdkVersion
7171
versionCode System.getenv('VERSION_CODE')?.hashCode()?.abs() ?: 404

android/app/src/main/AndroidManifest.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@
5353

5454
<application tools:replace="android:label" android:label="MoonBase" android:name="${applicationName}" android:icon="@mipmap/launcher_icon" android:theme="@style/LaunchTheme" android:requestLegacyExternalStorage="true">
5555

56+
57+
<meta-data
58+
android:name="flutterEmbedding"
59+
android:value="2" />
60+
5661
# This is line is to disable Impeller
5762
<meta-data
5863
android:name="io.flutter.embedding.android.EnableImpeller"

packages/shared

0 commit comments

Comments
 (0)