diff --git a/android/app/build.gradle b/android/app/build.gradle index beec0ce55f1ae25b56393f25f3655b04ea78a16d..e68f940f8065f0184863007913e61e578b31dd46 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -44,7 +44,7 @@ android { defaultConfig { applicationId "org.benoitharrault.wordguessing" minSdkVersion 16 - targetSdkVersion 31 + targetSdkVersion 30 versionCode appVersionCode.toInteger() versionName appVersionName archivesBaseName = "$applicationId" + "_" + "$versionCode" diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 7f722361a136cf5c25bfb0d145d4c1f52d6f2f30..06c148f8ba78ff8fc611d3bc95fe46938bac53bd 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -10,19 +10,10 @@ android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize"> - <!-- Specifies an Android theme to apply to this Activity as soon as - the Android process has started. This theme is visible to the user - while the Flutter UI initializes. After that, this theme continues - to determine the Window background behind the Flutter UI. --> <meta-data android:name="io.flutter.embedding.android.NormalTheme" android:resource="@style/NormalTheme" /> - <!-- Displays an Android View that continues showing the launch screen - Drawable until Flutter paints its first frame, then this splash - screen fades out. A splash screen is useful to avoid any visual - gap between the end of Android's launch screen and the painting of - Flutter's first frame. --> <meta-data android:name="io.flutter.embedding.android.SplashScreenDrawable" android:resource="@drawable/launch_background" @@ -32,8 +23,6 @@ <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> - <!-- Don't delete the meta-data below. - This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> <meta-data android:name="flutterEmbedding" android:value="2" /> diff --git a/android/gradle.properties b/android/gradle.properties index ebc8b566c2624d291359845547a9e30b74f08a4c..54efb9394543e57a918abc75a610e0f33e6bc158 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -1,5 +1,5 @@ org.gradle.jvmargs=-Xmx1536M android.useAndroidX=true android.enableJetifier=true -app.versionName=0.1.21 -app.versionCode=45 +app.versionName=0.1.22 +app.versionCode=46 diff --git a/pubspec.lock b/pubspec.lock index ea35171a9d8676ef4b90833e62626dabb6daaf98..6f3d12323633a0ea9e3b960399e0e942d234e572 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -66,7 +66,7 @@ packages: name: http url: "https://pub.dartlang.org" source: hosted - version: "0.13.2" + version: "0.13.4" http_parser: dependency: transitive description: @@ -109,20 +109,13 @@ packages: url: "https://pub.dartlang.org" source: hosted version: "1.8.0" - pedantic: - dependency: transitive - description: - name: pedantic - url: "https://pub.dartlang.org" - source: hosted - version: "1.11.0" provider: dependency: "direct main" description: name: provider url: "https://pub.dartlang.org" source: hosted - version: "5.0.0" + version: "6.0.2" sky_engine: dependency: transitive description: flutter diff --git a/pubspec.yaml b/pubspec.yaml index 3673be2c89d708e3c30e6e7fc6db960566ee4dd0..6d45b4d20a35ce7da9cef83286da1c97a98819f5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -10,7 +10,7 @@ dependencies: flutter: sdk: flutter http: ^0.13.1 - provider: ^5.0.0 + provider: ^6.0.2 dev_dependencies: flutter_test: