gpt4 book ai didi

java - 安卓 : Firebase dynamic link always goes to playstore URL even if the app is installed

转载 作者:行者123 更新时间:2023-12-02 03:51:06 25 4
gpt4 key购买 nike

我正在尝试将 Firebase 动态链接集成到 Android 应用程序中,但问题是,即使安装了该应用程序,动态链接也会将我带到 Play 商店页面以从 Play 商店下载该应用程序。我发送了带有动态链接的电子邮件。然后在 Android 智能手机上,我打开电子邮件并单击动态链接,它总是进入 Play 商店。有没有人遇到同样的问题并有解决方案。

当我在 https://firebase.google.com/docs/app-indexing/android/test 进行测试时动态链接可以很好地连接到应用程序。因为应用程序已安装。

我向我的应用添加了 SHA-1、SHA-256 key 。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="io.chillingchat.android">

<uses-permission android:name="android.permission.INTERNET" />

<application
android:allowBackup="true"
android:icon="@drawable/adv"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
>
<activity
android:name="io.chillingchat.android.view.MainActivity"
android:label="@string/app_name">

</activity>

<activity
android:name="io.chillingchat.android.view.AuthActivity">

<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<data
android:host="chillingchat.io"
android:scheme="https"/>
<data
android:host="chillingchat.io"
android:scheme="http"/>
</intent-filter>
</activity>


</application>

actionCodeSettings = ActionCodeSettings.newBuilder()
// URL you want to redirect back to. The domain (www.example.com)
// URL must be whitelisted in the Firebase Console.
.setUrl("https://chillingchat.page.link/in")
// This must be true
.setHandleCodeInApp(true)
.setAndroidPackageName(
"io.chillingchat.android",
true, /* installIfNotAvailable */
"16" /* minimumVersion */)
.build();

最佳答案

我终于解决了这个可怕的问题。

在actionCodeSetting中,

.setAndroidPackageName(
"io.chillingchat.android",
true, /* installIfNotAvailable */
"16" /* minimumVersion */)

更改为

.setAndroidPackageName(
"io.chillingchat.android",
false, /* installIfNotAvailable */
"16" /* minimumVersion */)

但我不知道为什么将 true 更改为 false * installIfNotAvailable * 选项可以工作..

关于java - 安卓 : Firebase dynamic link always goes to playstore URL even if the app is installed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56779189/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com