我在我的Android应用程序中实现深层链接。我已经添加了here提到的属性,但我仍然没有得到任何日志,同时调试它的应用程序。 我的清单看起来像:
<activity
android:name=".activities.HomeActivity"
android:configChanges="orientation|screenSize"
android:exported="true"
android:label="@string/app_name"
android:launchMode="singleInstance"
android:noHistory="false"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter android:autoVerify="true">
<data android:host="domain" android:scheme="https" />
<data android:host="domain" android:scheme="http" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
</activity>
我正在测试api级别为23的设备。但它仍无法正常工作。任何帮助都将非常感激。
我已将以下文件放在我的服务器上: 我创建了一个名为“.well-known”的目录,然后保存了文件,其中包含下面给出的名称为“assetlinks.json”的文件
[{
"relation": ["delegate_permission/common.handle_all_urls"],
"target" : { "namespace": "android_app",
"package_name": "package-name",
"sha256_cert_fingerprints": ["fingerprints"] }
}]
但仍然没有获得任何日志,也没有工作。