Skip to content

Commit

Permalink
Update AndroidManifest.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
prateek-chaubey authored Jun 24, 2024
1 parent e119bb4 commit 6718172
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<application
android:allowBackup="true"
android:label="YouTube Pro"
android:label="@string/app_name"
android:icon="@drawable/app_icon"
android:largeHeap="true"
android:usesCleartextTraffic="true"
Expand All @@ -18,11 +20,18 @@
android:supportsPictureInPicture="true"
android:theme="@style/NoActionBar"
android:exported="true"
android:screenOrientation="portrait">
android:screenOrientation="fullSensor">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<service
android:name=".ForegroundService"
android:enabled="true"
android:exported="true"
/>

<receiver android:name=".NotificationActionService"/>
</application>
</manifest>

0 comments on commit 6718172

Please sign in to comment.