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 <data
android:host="sudoku.secuso.org" android:host="sudoku.secuso.org"
android:scheme="http" /> android:scheme="http" />
</intent-filter> <data
<intent-filter> android:host="sudoku.secuso.org"
<action android:name="android.intent.action.VIEW" /> android:scheme="https" />
<data
<category android:name="android.intent.category.DEFAULT" /> android:scheme="sudoku.secuso.org" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="sudoku.secuso.org" />
</intent-filter> </intent-filter>
</activity> </activity>
<activity android:name="org.secuso.privacyfriendlysudoku.ui.AboutActivity" /> <activity android:name="org.secuso.privacyfriendlysudoku.ui.AboutActivity" />