因此,我将发布屏幕快照,以确保所有设置均正确。 我通过应用程序通过电子邮件发送了邀请。我从未安装该应用程序的另一台设备打开了电子邮件,而不是转到自定义网址,而是一个来自Google驱动器的共享链接,我可以在其中下载该应用程序,它会转到Play商店并收到消息“未找到”。我在这里做错了什么?
清单文件是
output$slider1 <- renderUI({
sliderInput("rangex",
"X Range:",
min = 0,
max = max_r
value = c(0, max_r)
)
)
})
observeEvent(input$rangex[2], {
data<- data()
output$g_Plot <- renderUI({
output$g <- renderPlot({
ggplot(data, aes(x, weight = y) +
geom_histogram() + xlim(input$rangex)
})
plotOutput("g_Plot")
})
邀请功能为
<activity android:name=".MainActivity">
<!-- [START deep_link_filter] -->
<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:host="****prototype.page.link" android:scheme="http"/>
<data android:host="****prototype.page.link" android:scheme="https"/>
</intent-filter>
</activity>
private fun invite() {
val intent = AppInviteInvitation.IntentBuilder(getString(R.string.invitation_title))
.setMessage("install this cool app!")
.setDeepLink(Uri.parse("https://www.google.com"))
.setCustomImage(Uri.parse(getString(R.string.invitation_custom_image)))
.setCallToActionText(getString(R.string.invitation_cta))
.build()
startActivityForResult(intent, REQUEST_INVITE)
}
应该从深链接URL中获取值,即“ https://www.google.com”,对吧?