我有一个安卓应用程序。我想为我的应用程序实现应用程序索引。
我已经关注了谷歌开发者链接
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
我从链接中了解了一些事情
我需要验证我的网站
在我的活动中使用应用索引 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}
我应该在清单文件中提供什么“数据”。
认为我对 android 开发非常陌生。任何例子都是最有帮助的。提前致谢。