1
0
mirror of https://github.com/git-touch/git-touch synced 2025-01-11 23:33:49 +01:00

feat: add android deep link

This commit is contained in:
Rongjian Zhang 2019-02-07 20:17:19 +08:00
parent 74aa4a7ea5
commit 5c0870a80b

View File

@ -28,6 +28,16 @@
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<!-- Deep Links -->
<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="gittouch"
android:host="login" />
</intent-filter>
</activity>
</application>
</manifest>