这是我的代码:
window.location.href = 'intent://#Intent;package=mypackagename;scheme=myscheme;S.browser_fallback_url=https%3A%2F%2Fplay.google.com%2Fstore%2Fapps%3Fhl%3Den;end;';
这存在于android app的AndroidManifest.xml中:
<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="myscheme" />
</intent-filter>
说“无效操作”。我做错了什么?