Customizing the Manifest.xml

Create only one Intent Filter with multiple <data> elements for Sudoku Deep linking.
Extend the existing formats with https scheme.
This commit is contained in:
ErikWaegerle 2020-08-22 18:24:34 +02:00
parent cb3e20966d
commit 0af90ed3fd

View file

@ -57,14 +57,11 @@
<data
android:host="sudoku.secuso.org"
android:scheme="http" />
</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="sudoku.secuso.org" />
<data
android:host="sudoku.secuso.org"
android:scheme="https" />
<data
android:scheme="sudoku.secuso.org" />
</intent-filter>
</activity>
<activity android:name="org.secuso.privacyfriendlysudoku.ui.AboutActivity" />