Skip to content

Commit

Permalink
Fixed: "Publish App to playStore" task failed to upload the applicati…
Browse files Browse the repository at this point in the history
…on on PlayStore.
  • Loading branch information
MohitMaliDeveloper committed Oct 10, 2024
1 parent 83899c6 commit 6a9cce2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/testing_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
push:
tags:
- 'internal_testing' # internal_testing Tag
pull_request:
branches:
- '*'

jobs:
publish:
Expand Down
8 changes: 5 additions & 3 deletions core/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,14 @@
tools:ignore="ScopedStorage" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />

<!-- Device with versions >= Pie need this permission -->
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<!-- Device with versions >= UPSIDE_DOWN_CAKE need these permissions-->
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PLAYBACK" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_CONNECTED_DEVICE" />

<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
<uses-permission
Expand All @@ -23,8 +27,6 @@
<uses-permission
android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PLAYBACK" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE" />
<queries>
<intent>
<action android:name="android.intent.action.TTS_SERVICE" />
Expand Down Expand Up @@ -104,6 +106,6 @@
android:foregroundServiceType="mediaPlayback" />
<service
android:name=".webserver.wifi_hotspot.HotspotService"
android:foregroundServiceType="specialUse" />
android:foregroundServiceType="connectedDevice" />
</application>
</manifest>

0 comments on commit 6a9cce2

Please sign in to comment.