我已将我的深层链接定义如下:
<activity android:name=".x"
android:launchMode="singleTask"
android:parentActivityName=".x">
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="http"
android:host="*.x.lv"
android:pathPrefix="/x" />
<data android:scheme="https"
android:host="*x.lv"
android:pathPrefix="/x" />
</intent-filter>
</activity>
如何为intent-filter
添加“唯一”ID?动作不会削减它,因为"android.intent.action.VIEW"
可以出于不同的原因使用,并且这并不能让我完全信任这个意图是针对deep-links
而没有别的。有什么想法吗?