如何在 Play 商店为我的 android 应用程序创建 deep-link url 并将其粘贴到游戏的 Facebook 产品页面? [截屏]
How to create deep-link url for my android app on play store and paste it on facebook product page of the game? [screenshot]
在 App Link 区域 "Add a Android deep link URL to your app." post "Add a Android deep link URL to your app." 的真正意义是什么?
我想对于这里的每个人来说都是微不足道的,但我正在努力。
在您的 Android 清单中,您可以声明某些活动能够查看某些 uri - 例如
yourapp://view/specific/content/at/this/uri
您 activity 中针对此的意图过滤器可能是
<activity ...>
<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="yourapp"/>
</intent-filter>
</activity>
见https://developer.android.com/training/app-indexing/deep-linking.html
在 App Link 区域 "Add a Android deep link URL to your app." post "Add a Android deep link URL to your app." 的真正意义是什么?
我想对于这里的每个人来说都是微不足道的,但我正在努力。
在您的 Android 清单中,您可以声明某些活动能够查看某些 uri - 例如
yourapp://view/specific/content/at/this/uri
您 activity 中针对此的意图过滤器可能是
<activity ...>
<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="yourapp"/>
</intent-filter>
</activity>
见https://developer.android.com/training/app-indexing/deep-linking.html