Skip to content

Commit

Permalink
Merge pull request #481 from hannesa2/EnergySaving-api34
Browse files Browse the repository at this point in the history
CI test with api34
  • Loading branch information
hannesa2 authored Aug 6, 2023
2 parents 811d020 + 8266d64 commit 6c2272e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
os: [ ARM64 ]
api: [ 33 ]
api: [ 34 ]
abi: [ arm64-v8a ]
tag: [ 'google_apis' ]
# include:
Expand Down
4 changes: 3 additions & 1 deletion serviceLibrary/src/androidTest/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

<application>
<!-- Mqtt Service -->
<service android:name="info.mqtt.android.service.MqttService" />
<service
android:name="info.mqtt.android.service.MqttService"
android:foregroundServiceType="dataSync" />

</application>

Expand Down
5 changes: 4 additions & 1 deletion serviceLibrary/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" />

<application>

<service android:name="info.mqtt.android.service.MqttService" />
<service
android:name="info.mqtt.android.service.MqttService"
android:foregroundServiceType="dataSync" />

</application>

Expand Down

0 comments on commit 6c2272e

Please sign in to comment.