私はアンドロイド反応ネイティブでディープリンクをセットアップしました。リンクをクリックしたときにオプション メニューをスキップしたかったので.well-known/assetlinks.json
、ドメイン アドレスにファイルを追加しました。thisを使用して検証する
と、エラーは表示されません。エラーは表示されません。
assetlinks.json
ファイル:
[{
"relation": ["delegate_permission/common.handle_all_urls"],
"target": {
"namespace": "android_app",
"package_name": "<package-name>",
"sha256_cert_fingerprints": [<SHA>]
}
}]
デジタルアセットリンクの対応
{
"statements": [
{
"source": {
"web": {
"site": "<domain>."
}
},
"relation": "delegate_permission/common.handle_all_urls",
"target": {
"androidApp": {
"packageName": "<package-name>",
"certificate": {
"sha256Fingerprint": "<SHA>"
}
}
}
}
],
"maxAge": "59.999586063s",
"debugString": "********************* ERRORS
*********************\nNone!\n********************* INFO MESSAGES *********************\n*
Info: The following statements were considered when processing the request:\n\n---\nSource:
Androidマニフェスト:
<intent-filter android:label="@string/app_name" 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="http" android:host="domain" />
<data android:scheme="https" />
</intent-filter>
MainActivity.java
public class MainActivity extends ReactActivity {
/**
* Returns the name of the main component registered from JavaScript.
* This is used to schedule rendering of the component.
*/
@Override
protected String getMainComponentName() {
return "<package-name>";
}
@Override
protected ReactActivityDelegate createReactActivityDelegate() {
return new ReactActivityDelegate(this, getMainComponentName()) {
@Override
protected ReactRootView createRootView() {
return new RNGestureHandlerEnabledRootView(MainActivity.this);
}
};
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// ATTENTION: This was auto-generated to handle app links.
Intent appLinkIntent = getIntent();
String appLinkAction = appLinkIntent.getAction();
Uri appLinkData = appLinkIntent.getData();
}
}
参考までに: IOS の推奨エクササイズを実行したときは、問題なく動作しています。