Android 设置 url scheme 允许 H5 唤起APP

在 android/app/src/main/AndroidManifest.xml 中添加 intent-filter

<intent-filter>
<!-- scheme 协议 h5 打开 lishishengwu://zhinengpingan/参数/参数/ -->
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="lishishengwu" android:host="zhinengpingan"/>
<!-- scheme -->
</intent-filter>


不要动原来的 intent-filter, 再他下面添加


h5 唤醒 app 

location.href='lishishengwu://zhinengpingan/参数/参数/'


1819
0
2年前