Merge intent-filter
aktivdigital-frontend opened this issue · 2 comments
aktivdigital-frontend commented
godhand1607 commented
Any updates on this? We also have this problem
Kodzhabashev commented
As a workaround, you can use inject and before that you can delete all s
manifest:
- file: AndroidManifest.xml
delete: //intent-filter
- file: AndroidManifest.xml
target: manifest/application/activity
inject: |
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
- file: AndroidManifest.xml
target: manifest/application/activity
inject: |
<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="your_host" />
</intent-filter>