upgrade flutter to stable v1.22.1 + packages upgrade

This commit is contained in:
Thibault Deckers 2020-10-09 15:52:39 +09:00
parent e0c7504c92
commit a98b7b284f
6 changed files with 9 additions and 8 deletions

View file

@ -15,7 +15,7 @@ jobs:
- uses: subosito/flutter-action@v1 - uses: subosito/flutter-action@v1
with: with:
channel: stable channel: stable
flutter-version: '1.22.0' flutter-version: '1.22.1'
- name: Clone the repository. - name: Clone the repository.
uses: actions/checkout@v2 uses: actions/checkout@v2

View file

@ -17,7 +17,7 @@ jobs:
- uses: subosito/flutter-action@v1 - uses: subosito/flutter-action@v1
with: with:
channel: stable channel: stable
flutter-version: '1.22.0' flutter-version: '1.22.1'
# Workaround for this Android Gradle Plugin issue (supposedly fixed in AGP 4.1): # Workaround for this Android Gradle Plugin issue (supposedly fixed in AGP 4.1):
# https://issuetracker.google.com/issues/144111441 # https://issuetracker.google.com/issues/144111441
@ -50,8 +50,8 @@ jobs:
echo "${{ secrets.KEY_JKS }}" > release.keystore.asc echo "${{ secrets.KEY_JKS }}" > release.keystore.asc
gpg -d --passphrase "${{ secrets.KEY_JKS_PASSPHRASE }}" --batch release.keystore.asc > $AVES_STORE_FILE gpg -d --passphrase "${{ secrets.KEY_JKS_PASSPHRASE }}" --batch release.keystore.asc > $AVES_STORE_FILE
rm release.keystore.asc rm release.keystore.asc
flutter build apk --bundle-sksl-path shaders_1.22.0.sksl.json flutter build apk --bundle-sksl-path shaders_1.22.1.sksl.json
flutter build appbundle --bundle-sksl-path shaders_1.22.0.sksl.json flutter build appbundle --bundle-sksl-path shaders_1.22.1.sksl.json
rm $AVES_STORE_FILE rm $AVES_STORE_FILE
env: env:
AVES_STORE_FILE: ${{ github.workspace }}/key.jks AVES_STORE_FILE: ${{ github.workspace }}/key.jks

View file

@ -207,7 +207,7 @@ packages:
name: firebase_core name: firebase_core
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.5.0" version: "0.5.0+1"
firebase_core_platform_interface: firebase_core_platform_interface:
dependency: transitive dependency: transitive
description: description:
@ -228,14 +228,14 @@ packages:
name: firebase_crashlytics name: firebase_crashlytics
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.2.1" version: "0.2.1+1"
firebase_crashlytics_platform_interface: firebase_crashlytics_platform_interface:
dependency: transitive dependency: transitive
description: description:
name: firebase_crashlytics_platform_interface name: firebase_crashlytics_platform_interface
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.1.0" version: "1.1.1"
flushbar: flushbar:
dependency: "direct main" dependency: "direct main"
description: description:

File diff suppressed because one or more lines are too long

1
shaders_1.22.1.sksl.json Normal file

File diff suppressed because one or more lines are too long

View file

@ -21,6 +21,7 @@ void main() {
Future<void> configureAndLaunch() async { Future<void> configureAndLaunch() async {
await settings.init(); await settings.init();
settings.keepScreenOn = KeepScreenOn.always; settings.keepScreenOn = KeepScreenOn.always;
settings.hasAcceptedTerms = false;
app.main(); app.main();
} }