我试图在Android上实施应用程序索引。
我有一个意图过滤器,如下:
<intent-filter android:label="@string/app_name">
<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="www.hotelsclick.com" />
<data android:scheme="https"
android:host="www.hotelsclick.com" />
</intent-filter>
我可以使用此命令从adb调用活动
adb shell am start -a android.intent.action.VIEW -d "https://www.hotelsclick.com?hotel_id=135738"
因此,我无法将&#34; Fetch视为google&#34;特色作品。
我很想知道:我怎么能理解&#34;以谷歌和谷歌的方式工作?特征? &#34; URI不受支持&#34;是一个无用的痕迹。我该怎么调试呢?
谢谢