From db17140569bfa3aa542322dbb3c76e7b5fb7d97f Mon Sep 17 00:00:00 2001 From: Bruce Liu Date: Sun, 24 Sep 2023 10:48:45 -0700 Subject: [PATCH] update dependencies --- .vscode/settings.json | 3 + android/app/build.gradle | 4 +- android/app/src/main/AndroidManifest.xml | 3 +- .../gradle/wrapper/gradle-wrapper.properties | 3 +- ios/Podfile | 2 +- ios/Podfile.lock | 32 +- ios/Runner.xcodeproj/project.pbxproj | 4 +- ios/Runner/Info.plist | 2 + lib/components/subscription_item.dart | 80 +-- lib/main.dart | 7 +- lib/pages/item_list_page.dart | 342 +++++++------ lib/pages/subscription_list_page.dart | 154 +++--- pubspec.lock | 473 ++++++++++-------- pubspec.yaml | 4 +- 14 files changed, 614 insertions(+), 499 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..c5f3f6b --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "java.configuration.updateBuildConfiguration": "interactive" +} \ No newline at end of file diff --git a/android/app/build.gradle b/android/app/build.gradle index 948d1ea..fd38c76 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -32,7 +32,7 @@ if (keystorePropertiesFile.exists()) { } android { - compileSdkVersion 31 + compileSdkVersion 33 sourceSets { main.java.srcDirs += 'src/main/kotlin' @@ -46,7 +46,7 @@ android { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). applicationId "me.hyliu.fluent_reader_lite" minSdkVersion 24 - targetSdkVersion 29 + targetSdkVersion 33 versionCode flutterVersionCode.toInteger() versionName flutterVersionName } diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 78dfa82..901194e 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -19,7 +19,8 @@ android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" - android:windowSoftInputMode="adjustResize"> + android:windowSoftInputMode="adjustResize" + android:exported="true">