我有一個Android應用程序。我想爲我的應用程序實施App Indexing。應用程序的APP URI索引Android應用程序
我按照谷歌開發者聯繫
https://developers.google.com/app-indexing/android/publish
https://developers.google.com/app-indexing/reference/deeplinks
https://developer.android.com/training/app-indexing/deep-linking.html
https://support.google.com/googleplay/android-developer/answer/6041489
我認識了來自鏈接幾件事情
我需要驗證我的網站
使用App Indexing API的在我的活動
,我不明白
事物的網址是什麼,我應該校驗?
我應該給APP_URI & WEB_URL?
static final Uri APP_URI = Uri.parse("android-app://com.example.android.recipes/http/recipe-app.com/recipes"); static final Uri WEB_URL = Uri.parse("http://recipe-app.com/recipes/");
什麼是承載我的鏈接的模式?
android-app://{package_name}/{scheme}/{host_path}
我應該在Manifest文件中給出什麼樣的數據。
認爲我很新的Android開發。任何示例都是最有幫助的。提前致謝。