Help! I am trying to insert intent filters into AndroidManifest.xml using this hook but I am getting a syntax error.
This is what I’m trying to add to AndroidManifest.xml
<activity ...>
<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="http" android:host="www.android.com" />
<data android:scheme="https" android:host="www.android.com" />
</intent-filter>
</activity>
How would I add inside the config.xml or is there another way to modify AndroidManifest.xml with a plugin?
Thank you