Skip to content

Commit fa2a425

Browse files
nt4f04uNdAbestanis
andauthored
Update targetSdkVersion (#154)
* Update targetSdkVersion https://support.google.com/googleplay/android-developer/answer/11926878?hl=en * Update pubspec and changelog Co-authored-by: Abestanis <[email protected]> --------- Co-authored-by: Abestanis <[email protected]>
1 parent 86ca448 commit fa2a425

File tree

6 files changed

+39
-8
lines changed

6 files changed

+39
-8
lines changed

CHANGELOG.md

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,38 @@
11
[@Abestanis]: https://github.com/Abestanis
22
[@ernince]: https://github.com/ernince
33

4+
## 1.0.12
5+
6+
* 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
7+
8+
## 1.0.11
9+
10+
* Fix Fastlane CD by @nt4f04uNd in https://github.com/nt4f04uNd/sweyer/pull/118
11+
* Upload symbols to Crashlytics on CD step by @nt4f04uNd in https://github.com/nt4f04uNd/sweyer/pull/125
12+
* Fix firstYear crash by @nt4f04uNd in https://github.com/nt4f04uNd/sweyer/pull/124
13+
14+
15+
**Full Changelog**: https://github.com/nt4f04uNd/sweyer/compare/1.0.10...1.0.11
16+
417
## 1.0.10
518

6-
- [Added Turkish language support](https://github.com/nt4f04uNd/sweyer/pull/86) **([@ernince])**
19+
First release generated by Fastlane CD!
20+
21+
* Added Turkish translation by @eren-ince in https://github.com/nt4f04uNd/sweyer/pull/86
22+
* Add privacy policy link to README by @nt4f04uNd in https://github.com/nt4f04uNd/sweyer/pull/93
23+
* Move the native Android code of Sweyer into a plugin by @Abestanis in https://github.com/nt4f04uNd/sweyer/pull/85
24+
* Update Flutter and dependencies by @Abestanis in https://github.com/nt4f04uNd/sweyer/pull/89
25+
* Fix settings button visible on insertion settings page by @Abestanis in https://github.com/nt4f04uNd/sweyer/pull/90
26+
* Support Material You monochrome app icon by @nt4f04uNd in https://github.com/nt4f04uNd/sweyer/pull/115
27+
* Decide whether to show scroll labels based on drag position by @Abestanis in https://github.com/nt4f04uNd/sweyer/pull/91
28+
* Improve startup robustness by @Abestanis in https://github.com/nt4f04uNd/sweyer/pull/95
29+
* Convert Java to Kotlin by @Abestanis in https://github.com/nt4f04uNd/sweyer/pull/94
30+
* Fastlane CD (init) by @nt4f04uNd in https://github.com/nt4f04uNd/sweyer/pull/117
31+
32+
### New Contributors
33+
* @eren-ince made their first contribution in https://github.com/nt4f04uNd/sweyer/pull/86
34+
35+
**Full Changelog**: https://github.com/nt4f04uNd/sweyer/compare/1.0.9...1.0.10
736

837
## 1.0.9
938

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ if (keystorePropertiesFile.exists()) {
3434
}
3535

3636
android {
37-
compileSdkVersion 33 // flutter.compileSdkVersion
37+
compileSdkVersion 34 // flutter.compileSdkVersion
3838

3939
compileOptions {
4040
sourceCompatibility JavaVersion.VERSION_1_8
@@ -52,7 +52,7 @@ android {
5252
defaultConfig {
5353
applicationId "com.nt4f04und.sweyer"
5454
minSdkVersion Math.max(21, flutter.minSdkVersion)
55-
targetSdkVersion 33 // flutter.targetSdkVersion
55+
targetSdkVersion 34 // flutter.targetSdkVersion
5656
versionCode flutterVersionCode.toInteger()
5757
versionName flutterVersionName
5858
}

android/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<!-- Needed to stay awake feature in MediaPlayer -->
88
<uses-permission android:name="android.permission.WAKE_LOCK" />
99
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
10+
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PLAYBACK" />
1011
<application
1112
android:label="Sweyer"
1213
android:name="${applicationName}"
@@ -55,6 +56,7 @@
5556
android:value="2" />
5657

5758
<service android:name="com.ryanheise.audioservice.AudioService"
59+
android:foregroundServiceType="mediaPlayback"
5860
android:exported="true">
5961
<intent-filter>
6062
<action android:name="android.media.browse.MediaBrowserService" />

pubspec.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ homepage: https://github.com/nt4f04uNd/sweyer
44
repository: https://github.com/nt4f04uNd/sweyer
55
issue_tracker: https://github.com/nt4f04uNd/sweyer/issues
66
publish_to: none
7-
version: 1.0.11+14
7+
version: 1.0.12+15
88

99
environment:
1010
sdk: '>=2.17.0 <3.0.0'

sweyer_plugin/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ apply plugin: 'com.android.library'
2525
apply plugin: 'kotlin-android'
2626

2727
android {
28-
compileSdkVersion 31
28+
compileSdkVersion 34
2929

3030
compileOptions {
3131
sourceCompatibility JavaVersion.VERSION_1_8

0 commit comments

Comments
 (0)