1

假设我有https://myapplication.com域的应用程序。我希望我的 android 应用程序能够打开myapplication.com/users/12之类的链接。

所以我上传了https://myapplication.com/.well-known/assetlinks.json并将下一行添加到 AndroidManifest:

 <intent-filter>
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />
            <data 
                 android:scheme="https"
                 android:host="myapplication.com"
                 android:path="/users/>
 </intent-filter>

一切似乎都很好,但是我需要添加 Firebase 动态链接支持。在 firebase 控制台中,我创建了下一个动态链接myshort.link/RErvWrS6,它重定向到myapplication.com/users/12

我的问题是:

4

0 回答 0