Skip to content

Commit

Permalink
Merge pull request #745 from Automattic/fix/update-targetSdk-34
Browse files Browse the repository at this point in the history
[Fix] Update targetSdk to 34 and fixed a few issues along the way.
  • Loading branch information
irfano authored Jan 22, 2024
2 parents bd7265e + 608509f commit 3df182a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ subprojects {
ext {
minSdkVersion = 24
compileSdkVersion = 34
targetSdkVersion = 33
targetSdkVersion = 34
}

ext {
Expand All @@ -111,7 +111,7 @@ ext {
googleMaterialVersion = '1.2.1'
kotlinxCoroutinesVersion = '1.3.9'
kotlinxSerializationVersion = '1.0-M1-1.4.0-rc'
sentryAndroidVersion = "5.0.1"
sentryAndroidVersion = "6.32.0"
slf4jVersion = '1.7.25'

// test
Expand Down
4 changes: 3 additions & 1 deletion stories/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" />

<application>
<activity
Expand All @@ -14,7 +15,8 @@
<!-- Services -->
<service
android:name="com.wordpress.stories.compose.frame.FrameSaveService"
android:label="Frame Save Service" />
android:label="Frame Save Service"
android:foregroundServiceType="dataSync"/>
<meta-data
android:name="preloaded_fonts"
android:resource="@array/preloaded_fonts" />
Expand Down

0 comments on commit 3df182a

Please sign in to comment.