Skip to content

Commit

Permalink
Added more
Browse files Browse the repository at this point in the history
  • Loading branch information
drogga committed Jul 25, 2024
1 parent f06777b commit d698a0e
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,18 @@
android:exported="true"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" android:host="www.youtube.com" />
<data android:scheme="https" android:host="youtu.be" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:host="youtube.com" />
<data android:host="*.youtube.com" />
<data android:host="youtu.be" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
Expand All @@ -51,8 +54,11 @@
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" android:host="www.youtube.com" />
<data android:scheme="https" android:host="youtu.be" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:host="youtube.com" />
<data android:host="*.youtube.com" />
<data android:host="youtu.be" />
</intent-filter>
<intent-filter android:label="@string/dl">
<action android:name="android.intent.action.SEND" />
Expand Down

0 comments on commit d698a0e

Please sign in to comment.