Skip to content

Commit

Permalink
Merge pull request #1355 from wallabag/dependabot/gradle/com.android.…
Browse files Browse the repository at this point in the history
…tools.build-gradle-8.2.0
  • Loading branch information
dependabot[bot] authored Dec 1, 2023
2 parents 8d69f8b + b0ea814 commit 7fc0193
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="22"/>
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> <!-- needed by TTS service for Android P or above -->
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PLAYBACK" />

<queries>
<intent>
Expand Down Expand Up @@ -137,6 +138,7 @@

<service
android:name="fr.gaulupeau.apps.Poche.tts.TtsService"
android:foregroundServiceType="mediaPlayback"
android:exported="false">
<intent-filter>
<action android:name="android.intent.action.MEDIA_BUTTON" />
Expand Down Expand Up @@ -176,10 +178,12 @@

<service
android:name="fr.gaulupeau.apps.Poche.service.MainService"
android:foregroundServiceType="dataSync"
android:exported="false" />

<service
android:name="fr.gaulupeau.apps.Poche.service.SecondaryService"
android:foregroundServiceType="dataSync"
android:exported="false" />

<provider
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.4'
classpath 'com.android.tools.build:gradle:8.2.0'
classpath 'org.greenrobot:greendao-gradle-plugin:3.3.1'
}
}
Expand Down

0 comments on commit 7fc0193

Please sign in to comment.