From 9867d0bf81f16d769200e32df067ea306df1fe49 Mon Sep 17 00:00:00 2001 From: nt4f04uNd Date: Sat, 31 Aug 2024 17:37:13 +0200 Subject: [PATCH 1/5] Update targetSdkVersion https://support.google.com/googleplay/android-developer/answer/11926878?hl=en --- android/app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 434592905..7d118ad18 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -52,7 +52,7 @@ android { defaultConfig { applicationId "com.nt4f04und.sweyer" minSdkVersion Math.max(21, flutter.minSdkVersion) - targetSdkVersion 33 // flutter.targetSdkVersion + targetSdkVersion 35 // flutter.targetSdkVersion versionCode flutterVersionCode.toInteger() versionName flutterVersionName } From e179a44242b018f473d32d7be55fb1c98b6c7df0 Mon Sep 17 00:00:00 2001 From: nt4f04uNd Date: Sat, 31 Aug 2024 17:43:32 +0200 Subject: [PATCH 2/5] Update pubspec and changelog --- CHANGELOG.md | 31 ++++++++++++++++++++++++++++++- pubspec.yaml | 2 +- 2 files changed, 31 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 675b31931..daaf680c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,38 @@ [@Abestanis]: https://github.com/Abestanis [@ernince]: https://github.com/ernince +## 1.0.12 + +* Update targetSdkVersion to 35 to match new [Google Play store API level requirements](https://support.google.com/googleplay/android-developer/answer/11926878?hl=en) @nt4f04und + +## 1.0.11 + +* Fix Fastlane CD by @nt4f04uNd in https://github.com/nt4f04uNd/sweyer/pull/118 +* Upload symbols to Crashlytics on CD step by @nt4f04uNd in https://github.com/nt4f04uNd/sweyer/pull/125 +* Fix firstYear crash by @nt4f04uNd in https://github.com/nt4f04uNd/sweyer/pull/124 + + +**Full Changelog**: https://github.com/nt4f04uNd/sweyer/compare/1.0.10...1.0.11 + ## 1.0.10 -- [Added Turkish language support](https://github.com/nt4f04uNd/sweyer/pull/86) **([@ernince])** +First release generated by Fastlane CD! + +* Added Turkish translation by @eren-ince in https://github.com/nt4f04uNd/sweyer/pull/86 +* Add privacy policy link to README by @nt4f04uNd in https://github.com/nt4f04uNd/sweyer/pull/93 +* Move the native Android code of Sweyer into a plugin by @Abestanis in https://github.com/nt4f04uNd/sweyer/pull/85 +* Update Flutter and dependencies by @Abestanis in https://github.com/nt4f04uNd/sweyer/pull/89 +* Fix settings button visible on insertion settings page by @Abestanis in https://github.com/nt4f04uNd/sweyer/pull/90 +* Support Material You monochrome app icon by @nt4f04uNd in https://github.com/nt4f04uNd/sweyer/pull/115 +* Decide whether to show scroll labels based on drag position by @Abestanis in https://github.com/nt4f04uNd/sweyer/pull/91 +* Improve startup robustness by @Abestanis in https://github.com/nt4f04uNd/sweyer/pull/95 +* Convert Java to Kotlin by @Abestanis in https://github.com/nt4f04uNd/sweyer/pull/94 +* Fastlane CD (init) by @nt4f04uNd in https://github.com/nt4f04uNd/sweyer/pull/117 + +### New Contributors +* @eren-ince made their first contribution in https://github.com/nt4f04uNd/sweyer/pull/86 + +**Full Changelog**: https://github.com/nt4f04uNd/sweyer/compare/1.0.9...1.0.10 ## 1.0.9 diff --git a/pubspec.yaml b/pubspec.yaml index ab9b64e73..0a0be7142 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,7 +4,7 @@ homepage: https://github.com/nt4f04uNd/sweyer repository: https://github.com/nt4f04uNd/sweyer issue_tracker: https://github.com/nt4f04uNd/sweyer/issues publish_to: none -version: 1.0.11+14 +version: 1.0.12+15 environment: sdk: '>=2.17.0 <3.0.0' From 046b6aa08d9d7a5853c4168ec49116779a3fbdf2 Mon Sep 17 00:00:00 2001 From: nt4f04uNd Date: Sat, 31 Aug 2024 18:27:27 +0200 Subject: [PATCH 3/5] Fixes --- android/app/build.gradle | 4 ++-- android/app/src/main/AndroidManifest.xml | 2 ++ pubspec.lock | 6 +++--- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 7d118ad18..927161e28 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -34,7 +34,7 @@ if (keystorePropertiesFile.exists()) { } android { - compileSdkVersion 33 // flutter.compileSdkVersion + compileSdkVersion 34 // flutter.compileSdkVersion compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 @@ -52,7 +52,7 @@ android { defaultConfig { applicationId "com.nt4f04und.sweyer" minSdkVersion Math.max(21, flutter.minSdkVersion) - targetSdkVersion 35 // flutter.targetSdkVersion + targetSdkVersion 34 // flutter.targetSdkVersion versionCode flutterVersionCode.toInteger() versionName flutterVersionName } diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index b2634abfa..91005bbcd 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -7,6 +7,7 @@ + diff --git a/pubspec.lock b/pubspec.lock index c935a41d4..5dde4a542 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -70,7 +70,7 @@ packages: description: path: audio_service ref: sweyer - resolved-ref: "8b8b6e66a2e24bbab610bd02ce02ecaca0ddbdc4" + resolved-ref: "1e92412fcd76c43fc88c9b1157b855d097b7c9b3" url: "https://github.com/nt4f04uNd/audio_service" source: git version: "0.16.2" @@ -79,7 +79,7 @@ packages: description: path: audio_service_platform_interface ref: sweyer - resolved-ref: "8b8b6e66a2e24bbab610bd02ce02ecaca0ddbdc4" + resolved-ref: "1e92412fcd76c43fc88c9b1157b855d097b7c9b3" url: "https://github.com/nt4f04und/audio_service.git" source: git version: "1.0.0" @@ -88,7 +88,7 @@ packages: description: path: audio_service_web ref: sweyer - resolved-ref: "8b8b6e66a2e24bbab610bd02ce02ecaca0ddbdc4" + resolved-ref: "1e92412fcd76c43fc88c9b1157b855d097b7c9b3" url: "https://github.com/nt4f04und/audio_service.git" source: git version: "0.16.2" From dcb6ad7af90d45a6f55005d9724b1ca8de313103 Mon Sep 17 00:00:00 2001 From: nt4f04uNd Date: Sat, 31 Aug 2024 18:39:32 +0200 Subject: [PATCH 4/5] + --- sweyer_plugin/android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sweyer_plugin/android/build.gradle b/sweyer_plugin/android/build.gradle index 960719302..7d0b01e06 100644 --- a/sweyer_plugin/android/build.gradle +++ b/sweyer_plugin/android/build.gradle @@ -25,7 +25,7 @@ apply plugin: 'com.android.library' apply plugin: 'kotlin-android' android { - compileSdkVersion 31 + compileSdkVersion 34 compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 From 2943c0794433631d0b923572316117998f553825 Mon Sep 17 00:00:00 2001 From: nt4f04uNd Date: Sat, 31 Aug 2024 18:55:45 +0200 Subject: [PATCH 5/5] Update CHANGELOG.md Co-authored-by: Abestanis --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index daaf680c4..cc0dceb9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ ## 1.0.12 -* Update targetSdkVersion to 35 to match new [Google Play store API level requirements](https://support.google.com/googleplay/android-developer/answer/11926878?hl=en) @nt4f04und +* Update targetSdkVersion to 34 to match new [Google Play store API level requirements](https://support.google.com/googleplay/android-developer/answer/11926878?hl=en) @nt4f04und ## 1.0.11