Skip to content

Commit

Permalink
#30: Seperate intent-filters in Manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
Entreco committed Jul 13, 2018
1 parent 54842d1 commit 4f9d6ec
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions android/DartsScorecard/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,20 @@
android:name=".splash.SplashActivity"
android:noHistory="true"
android:theme="@style/SplashTheme">
<intent-filter android:autoVerify="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter android:autoVerify="true">
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<action android:name="android.intent.action.VIEW" />

<data
android:host="entreco.nl"
android:pathPrefix="/dsc"
android:pathPattern="/*"
android:scheme="http" />

<data
android:host="entreco.nl"
android:pathPattern="/dsc"
android:scheme="http" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:host="entreco.nl" />
<data android:pathPattern="/*" />
<data android:pathPrefix="/dsc" />
</intent-filter>

</activity>
Expand Down
Binary file modified design/playstore.sketch
Binary file not shown.

0 comments on commit 4f9d6ec

Please sign in to comment.