Skip to content

Commit

Permalink
Fix versions
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkourlas committed Jan 27, 2024
1 parent 428fbdc commit f3a61a5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
5 changes: 3 additions & 2 deletions fastlane/metadata/android/en-US/changelogs/147.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
0.6.25
0.6.26
• Target API 34
• Update dependencies
• Fix lint issues
• Fix lint issues
• Bug fixes
5 changes: 0 additions & 5 deletions fastlane/metadata/android/en-US/changelogs/148.txt

This file was deleted.

2 changes: 1 addition & 1 deletion voipms-sms/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android {
applicationId "net.kourlas.voipms_sms"
minSdkVersion 21
targetSdkVersion 34
versionCode 148
versionCode 147
versionName "0.6.26"

ksp {
Expand Down
6 changes: 4 additions & 2 deletions voipms-sms/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" />
<uses-permission
android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC"
android:maxSdkVersion="33" />

<!-- Vibration when notification received -->
<uses-permission android:name="android.permission.VIBRATE" />
Expand Down Expand Up @@ -265,7 +267,7 @@

<service
android:name="androidx.work.impl.foreground.SystemForegroundService"
android:foregroundServiceType="dataSync"
android:foregroundServiceType="shortService|dataSync"
tools:ignore="Instantiatable"
tools:node="merge" />
</application>
Expand Down

0 comments on commit f3a61a5

Please sign in to comment.