Android Google应用程序索引:需要在host intent filter atribute中指定完整的网站?

Android Google应用程序索引:需要在host intent filter atribute中指定完整的网站?,android,android-intent,intentfilter,deep-linking,google-app-indexing,Android,Android Intent,Intentfilter,Deep Linking,Google App Indexing,例如,如果我有一个名为: http://www.testmycars.com 当有人在android设备搜索应用程序中搜索雪佛兰时,我希望该html文件被索引并显示指向我的应用程序内容的链接: http://www.testmycars.com/cars/huge/chevrolet.html 因此,我将其添加到html文件的头部: <link rel="alternate" href="android-app://com.mycompany.myapp/http/section/ch

例如,如果我有一个名为:

http://www.testmycars.com
当有人在android设备搜索应用程序中搜索雪佛兰时,我希望该html文件被索引并显示指向我的应用程序内容的链接:

http://www.testmycars.com/cars/huge/chevrolet.html
因此,我将其添加到html文件的头部:

<link rel="alternate" href="android-app://com.mycompany.myapp/http/section/chevrolet"/>

我将此意向过滤器添加到我的android清单中:

        <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:scheme="http"
                android:host="section" />
        </intent-filter>

它会与意图过滤器中的主机atribute和html头部的URI一起工作吗?我不想指定完整的网站,因为我正在使用一个应用程序生成器,为这个意图过滤器使用相同的主机atribute构建许多APK。谷歌应用程序索引会使用此代码吗


谢谢你能告诉我你的目标是什么吗。是将一个网站与多个应用程序关联,在所有应用程序上提供相同的内容,还是在每个应用程序中提供与网站不同的内容(不同部分)

另外,为什么不在深层链接中提供网站的完整域

干杯