upgraded Flutter to stable v3.16.1
2
.flutter
|
@ -1 +1 @@
|
||||||
Subproject commit d211f42860350d914a5ad8102f9ec32764dc6d06
|
Subproject commit 7f20e5d18ce4cb80c621533090a7c5113f5bdc52
|
|
@ -12,7 +12,7 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
- long press actions trigger haptic feedback according to OS settings
|
- long press actions trigger haptic feedback according to OS settings
|
||||||
- target Android 14 (API 34)
|
- target Android 14 (API 34)
|
||||||
- upgraded Flutter to stable v3.13.9
|
- upgraded Flutter to stable v3.16.1
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
|
|
@ -68,6 +68,11 @@ android {
|
||||||
// if there are some libs in `lib/armeabi-v7a` unmatched by libs in `lib/arm64-v8a`,
|
// if there are some libs in `lib/armeabi-v7a` unmatched by libs in `lib/arm64-v8a`,
|
||||||
// so we exclude the extra `neon` libs bundled by `FFmpegKit`.
|
// so we exclude the extra `neon` libs bundled by `FFmpegKit`.
|
||||||
exclude 'lib/armeabi-v7a/*_neon.so'
|
exclude 'lib/armeabi-v7a/*_neon.so'
|
||||||
|
|
||||||
|
// necessary since Flutter v3.16.0
|
||||||
|
pickFirst 'lib/armeabi-v7a/libc++_shared.so'
|
||||||
|
pickFirst 'lib/arm64-v8a/libc++_shared.so'
|
||||||
|
pickFirst 'lib/x86_64/libc++_shared.so'
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
|
@ -240,7 +245,7 @@ dependencies {
|
||||||
// huawei flavor only
|
// huawei flavor only
|
||||||
huaweiImplementation "com.huawei.agconnect:agconnect-core:$huawei_agconnect_version"
|
huaweiImplementation "com.huawei.agconnect:agconnect-core:$huawei_agconnect_version"
|
||||||
|
|
||||||
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.10.0'
|
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.10.1'
|
||||||
|
|
||||||
kapt 'androidx.annotation:annotation:1.7.0'
|
kapt 'androidx.annotation:annotation:1.7.0'
|
||||||
ksp "com.github.bumptech.glide:ksp:$glide_version"
|
ksp "com.github.bumptech.glide:ksp:$glide_version"
|
||||||
|
|
|
@ -101,18 +101,24 @@
|
||||||
</intent>
|
</intent>
|
||||||
</queries>
|
</queries>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
as of Flutter v3.16.0, predictive back gesture does not work
|
||||||
|
as expected when extending `FlutterFragmentActivity`
|
||||||
|
so we disable `enableOnBackInvokedCallback`
|
||||||
|
-->
|
||||||
<application
|
<application
|
||||||
android:allowBackup="true"
|
android:allowBackup="true"
|
||||||
android:appCategory="image"
|
android:appCategory="image"
|
||||||
android:banner="@drawable/banner"
|
android:banner="@drawable/banner"
|
||||||
android:dataExtractionRules="@xml/data_extraction_rules"
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
||||||
|
android:enableOnBackInvokedCallback="false"
|
||||||
android:fullBackupContent="@xml/full_backup_content"
|
android:fullBackupContent="@xml/full_backup_content"
|
||||||
android:fullBackupOnly="true"
|
android:fullBackupOnly="true"
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:requestLegacyExternalStorage="true"
|
android:requestLegacyExternalStorage="true"
|
||||||
android:roundIcon="@mipmap/ic_launcher_round"
|
android:roundIcon="@mipmap/ic_launcher_round"
|
||||||
tools:targetApi="s">
|
tools:targetApi="tiramisu">
|
||||||
<activity
|
<activity
|
||||||
android:name=".MainActivity"
|
android:name=".MainActivity"
|
||||||
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
||||||
|
@ -309,8 +315,8 @@
|
||||||
<meta-data
|
<meta-data
|
||||||
android:name="flutterEmbedding"
|
android:name="flutterEmbedding"
|
||||||
android:value="2" />
|
android:value="2" />
|
||||||
<!-- as of Flutter v3.10.1 (stable) / v3.12.0-15.0.pre.105 (master),
|
<!-- as of Flutter v3.16.0 (stable),
|
||||||
Impeller badly renders text, fails to render videos, and crashes with Google Maps -->
|
Impeller fails to render videos & platform views, has poor performance -->
|
||||||
<meta-data
|
<meta-data
|
||||||
android:name="io.flutter.embedding.android.EnableImpeller"
|
android:name="io.flutter.embedding.android.EnableImpeller"
|
||||||
android:value="false" />
|
android:value="false" />
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
buildscript {
|
buildscript {
|
||||||
ext {
|
ext {
|
||||||
kotlin_version = '1.8.21'
|
kotlin_version = '1.9.20'
|
||||||
ksp_version = "$kotlin_version-1.0.11"
|
ksp_version = "$kotlin_version-1.0.14"
|
||||||
agp_version = '8.1.2'
|
agp_version = '8.1.2'
|
||||||
glide_version = '4.16.0'
|
glide_version = '4.16.0'
|
||||||
// AppGallery Connect plugin versions: https://developer.huawei.com/consumer/en/doc/development/AppGallery-connect-Guides/agc-sdk-changenotes-0000001058732550
|
// AppGallery Connect plugin versions: https://developer.huawei.com/consumer/en/doc/development/AppGallery-connect-Guides/agc-sdk-changenotes-0000001058732550
|
||||||
|
|
Before Width: | Height: | Size: 282 KiB After Width: | Height: | Size: 280 KiB |
Before Width: | Height: | Size: 498 KiB After Width: | Height: | Size: 496 KiB |
Before Width: | Height: | Size: 211 KiB After Width: | Height: | Size: 201 KiB |
Before Width: | Height: | Size: 93 KiB After Width: | Height: | Size: 119 KiB |
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 83 KiB |
Before Width: | Height: | Size: 341 KiB After Width: | Height: | Size: 326 KiB |
Before Width: | Height: | Size: 341 KiB After Width: | Height: | Size: 337 KiB |
Before Width: | Height: | Size: 283 KiB After Width: | Height: | Size: 279 KiB |
Before Width: | Height: | Size: 499 KiB After Width: | Height: | Size: 497 KiB |
Before Width: | Height: | Size: 210 KiB After Width: | Height: | Size: 200 KiB |
Before Width: | Height: | Size: 93 KiB After Width: | Height: | Size: 119 KiB |
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 84 KiB |
Before Width: | Height: | Size: 350 KiB After Width: | Height: | Size: 327 KiB |
Before Width: | Height: | Size: 346 KiB After Width: | Height: | Size: 337 KiB |
Before Width: | Height: | Size: 285 KiB After Width: | Height: | Size: 281 KiB |
Before Width: | Height: | Size: 499 KiB After Width: | Height: | Size: 496 KiB |
Before Width: | Height: | Size: 214 KiB After Width: | Height: | Size: 205 KiB |
Before Width: | Height: | Size: 88 KiB After Width: | Height: | Size: 114 KiB |
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 84 KiB |
Before Width: | Height: | Size: 350 KiB After Width: | Height: | Size: 327 KiB |
Before Width: | Height: | Size: 346 KiB After Width: | Height: | Size: 337 KiB |
Before Width: | Height: | Size: 283 KiB After Width: | Height: | Size: 280 KiB |
Before Width: | Height: | Size: 499 KiB After Width: | Height: | Size: 496 KiB |
Before Width: | Height: | Size: 208 KiB After Width: | Height: | Size: 199 KiB |
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 118 KiB |
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 82 KiB |
Before Width: | Height: | Size: 351 KiB After Width: | Height: | Size: 328 KiB |
Before Width: | Height: | Size: 345 KiB After Width: | Height: | Size: 337 KiB |
Before Width: | Height: | Size: 285 KiB After Width: | Height: | Size: 282 KiB |
Before Width: | Height: | Size: 499 KiB After Width: | Height: | Size: 496 KiB |
Before Width: | Height: | Size: 214 KiB After Width: | Height: | Size: 203 KiB |
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 120 KiB |
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 83 KiB |
Before Width: | Height: | Size: 350 KiB After Width: | Height: | Size: 327 KiB |
Before Width: | Height: | Size: 345 KiB After Width: | Height: | Size: 337 KiB |
Before Width: | Height: | Size: 285 KiB After Width: | Height: | Size: 284 KiB |
Before Width: | Height: | Size: 499 KiB After Width: | Height: | Size: 496 KiB |
Before Width: | Height: | Size: 212 KiB After Width: | Height: | Size: 202 KiB |
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 119 KiB |
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 85 KiB |
Before Width: | Height: | Size: 342 KiB After Width: | Height: | Size: 328 KiB |
Before Width: | Height: | Size: 340 KiB After Width: | Height: | Size: 337 KiB |
Before Width: | Height: | Size: 283 KiB After Width: | Height: | Size: 279 KiB |
Before Width: | Height: | Size: 499 KiB After Width: | Height: | Size: 496 KiB |
Before Width: | Height: | Size: 211 KiB After Width: | Height: | Size: 201 KiB |
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 120 KiB |
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 84 KiB |
Before Width: | Height: | Size: 349 KiB After Width: | Height: | Size: 326 KiB |
Before Width: | Height: | Size: 345 KiB After Width: | Height: | Size: 337 KiB |
Before Width: | Height: | Size: 283 KiB After Width: | Height: | Size: 281 KiB |
Before Width: | Height: | Size: 499 KiB After Width: | Height: | Size: 497 KiB |
Before Width: | Height: | Size: 210 KiB After Width: | Height: | Size: 200 KiB |
Before Width: | Height: | Size: 89 KiB After Width: | Height: | Size: 119 KiB |
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 84 KiB |
Before Width: | Height: | Size: 342 KiB After Width: | Height: | Size: 328 KiB |
Before Width: | Height: | Size: 336 KiB After Width: | Height: | Size: 337 KiB |
Before Width: | Height: | Size: 282 KiB After Width: | Height: | Size: 278 KiB |
Before Width: | Height: | Size: 499 KiB After Width: | Height: | Size: 496 KiB |
Before Width: | Height: | Size: 208 KiB After Width: | Height: | Size: 200 KiB |
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 117 KiB |
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 83 KiB |
Before Width: | Height: | Size: 350 KiB After Width: | Height: | Size: 327 KiB |
Before Width: | Height: | Size: 345 KiB After Width: | Height: | Size: 337 KiB |
Before Width: | Height: | Size: 284 KiB After Width: | Height: | Size: 281 KiB |
Before Width: | Height: | Size: 499 KiB After Width: | Height: | Size: 496 KiB |
Before Width: | Height: | Size: 211 KiB After Width: | Height: | Size: 202 KiB |
Before Width: | Height: | Size: 93 KiB After Width: | Height: | Size: 119 KiB |
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 84 KiB |
Before Width: | Height: | Size: 349 KiB After Width: | Height: | Size: 326 KiB |
Before Width: | Height: | Size: 345 KiB After Width: | Height: | Size: 337 KiB |
Before Width: | Height: | Size: 284 KiB After Width: | Height: | Size: 280 KiB |
Before Width: | Height: | Size: 498 KiB After Width: | Height: | Size: 496 KiB |
Before Width: | Height: | Size: 209 KiB After Width: | Height: | Size: 198 KiB |
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 122 KiB |
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 85 KiB |
Before Width: | Height: | Size: 347 KiB After Width: | Height: | Size: 326 KiB |
Before Width: | Height: | Size: 346 KiB After Width: | Height: | Size: 338 KiB |
Before Width: | Height: | Size: 283 KiB After Width: | Height: | Size: 279 KiB |
Before Width: | Height: | Size: 500 KiB After Width: | Height: | Size: 496 KiB |
Before Width: | Height: | Size: 207 KiB After Width: | Height: | Size: 200 KiB |
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 116 KiB |
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 82 KiB |
Before Width: | Height: | Size: 349 KiB After Width: | Height: | Size: 325 KiB |
Before Width: | Height: | Size: 346 KiB After Width: | Height: | Size: 338 KiB |
Before Width: | Height: | Size: 282 KiB After Width: | Height: | Size: 282 KiB |
Before Width: | Height: | Size: 499 KiB After Width: | Height: | Size: 496 KiB |
Before Width: | Height: | Size: 214 KiB After Width: | Height: | Size: 203 KiB |
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 120 KiB |
Before Width: | Height: | Size: 68 KiB After Width: | Height: | Size: 83 KiB |
Before Width: | Height: | Size: 341 KiB After Width: | Height: | Size: 327 KiB |
Before Width: | Height: | Size: 346 KiB After Width: | Height: | Size: 337 KiB |
Before Width: | Height: | Size: 278 KiB After Width: | Height: | Size: 279 KiB |
Before Width: | Height: | Size: 499 KiB After Width: | Height: | Size: 496 KiB |
Before Width: | Height: | Size: 208 KiB After Width: | Height: | Size: 199 KiB |
Before Width: | Height: | Size: 93 KiB After Width: | Height: | Size: 118 KiB |