2017-03-08 100 views
1

我想在Android中集成网页深度链接。但是,我无法得到它的工作。以下是具体步骤我以下:Android:深度链接网址

步骤1的AndroidManifest.xml:

<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" /> 
    <data android:scheme="https" android:host="niksguitarist.000webhostapp.com" android:pathPrefix="/asset"/> 
</intent-filter> 

<meta-data android:name="asset_statements" android:resource="@string/asset_statements" android:autoVerify="true"/> 

步骤2. RES /价值/ strings.xml中:

<string name="asset_statements"> 
    [{ 
    \"relation\": [\"delegate_permission/common.share_location\"], 
    \"target\": { 
    \"namespace\": \"web\", 
    \"site\": \"https://niksguitarist.000webhostapp.com/\" 
    } 
    }] 
</string> 

第3步。服务器上的主机assetLink:

https://niksguitarist.000webhostapp.com/.well-known/assetlinks.json

[{ 
    "relation": ["delegate_permission/common.handle_all_urls"], 
    "target": { 
    "namespace": "android_app", 
    "package_name": "com.sprinklr.distributedapp", 
    "sha256_cert_fingerprints": ["A8:D4:5F:DC:AE:67:D6:90:46:23:07:8B:23:89:0B:11:AB:49:4E:B0:C7:87:50:0C:59:32:01:A0:4A:88:1A:5A"] 
    } 
}] 

现在,当我尝试在移动浏览器(Chrome或Firefox)打开https://niksguitarist.000webhostapp.com/asset,它不路由我到我的应用程序。

有人可以建议我做错了什么吗?

回答

1

如果您试图直接从浏览器打开网址,应用链接将不起作用。只有当您尝试从非浏览器应用程序打开网址时才会有效 - 请注意,聊天或任何其他应用程序

+0

或者从另一个域(在Web浏览器中) –