Android 深层链接,无法使用方案 'android-app' 过滤意图

Android deep linking, cannot filter intent with scheme 'android-app'

我正在关注 App Indexing API doc 。 我的应用程序 URI 是 android-app://com.mypackagename.app/intro/intro/,因此我将其添加到清单文件中 <activity>

<activity
            android:name=".MainActivity"
            android:label="@string/config_app_name"
            android:screenOrientation="portrait"
            android:enabled="true"
            android:exported="true"
            > 
            <intent-filter android:label="test">
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />

                <data android:scheme="android-app"
                    android:host="com.mypackagename.app" />
            </intent-filter>
</activity>

但是在我的phone上测试Test your deep link中所说的深度link时,linkandroid-app://com.mypackagename.app/intro/intro/打不开,祝酒词 "there are no apps installed that can handle it"

我错过了什么?谢谢

更新: 在 Mattia 指出的文档中,绝对可以选择放置任何方案,例如 'example',但它对我不起作用。我在棒棒糖上,如果它有所作为。

<intent-filter android:label="@string/filter_title_viewgizmos">
         <action android:name="android.intent.action.VIEW" />
         <category android:name="android.intent.category.DEFAULT" />
         <category android:name="android.intent.category.BROWSABLE" />
         <!-- Accepts URIs that begin with "example://gizmos" -->
         <data android:scheme="example"
               android:host="gizmos" />
     </intent-filter>

更新 2:包之后的任何东西都是方案,在我的例子中,android-app://com.mypackagename.app/intro/intro/,它是 intro。下面标记的答案

您应该使用您的域,而不是 android-app 和您在 documentation 中看到的包裹。

试试这个例子:

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

    <application
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme">
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name"
            android:windowSoftInputMode="stateVisible">
            <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="yourdomain"
                    android:scheme="example" />
            </intent-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="www.yourdomain.com"
                    android:scheme="http" />
            </intent-filter>
        </activity>
    </application>

</manifest>

比使用这些值测试 here(将 com.example.test 更改为您应用程序的包名称):

android-app://com.example.test/http/www.yourdomain.com/page
android-app://com.example.test/example/yourdomain/page

当您扫描条形码并按 link 时,您的应用程序将自动打开。