【发布时间】:2019-09-01 07:04:55
【问题描述】:
我想检查是否安装了应用程序然后打开应用程序,如果没有则播放商店。我尝试使用我的应用的 Play 商店链接,但没有成功
<intent-filter
android:autoVerify="true"
android:label="Notification Log">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="play.google.com"
android:path="/store/apps/details?id=com.appnotification.notificationhistorylog"
android:scheme="http" />
</intent-filter>
谁能帮我解决这个问题
【问题讨论】:
标签: android deep-linking