Skip to content
This repository has been archived by the owner on Aug 17, 2023. It is now read-only.

Add android 12 compatibility with new syntax #260

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 35 additions & 7 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@
<param name="onload" value="true" />
</feature>
</config-file>


<config-file target="AndroidManifest.xml" parent="/manifest/application/activity">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
Expand All @@ -52,11 +50,41 @@
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="$DEEPLINK_SCHEME" android:host="$DEEPLINK_HOST" android:pathPrefix="$ANDROID_PATH_PREFIX" />
<data android:scheme="$DEEPLINK_2_SCHEME" android:host="$DEEPLINK_2_HOST" android:pathPrefix="$ANDROID_2_PATH_PREFIX" />
<data android:scheme="$DEEPLINK_3_SCHEME" android:host="$DEEPLINK_3_HOST" android:pathPrefix="$ANDROID_3_PATH_PREFIX" />
<data android:scheme="$DEEPLINK_4_SCHEME" android:host="$DEEPLINK_4_HOST" android:pathPrefix="$ANDROID_4_PATH_PREFIX" />
<data android:scheme="$DEEPLINK_5_SCHEME" android:host="$DEEPLINK_5_HOST" android:pathPrefix="$ANDROID_5_PATH_PREFIX" />
<data android:scheme="$DEEPLINK_SCHEME" />
<data android:host="$DEEPLINK_HOST" />
<data android:pathPrefix="$ANDROID_PATH_PREFIX" />
</intent-filter>
<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="$DEEPLINK_2_SCHEME" />
<data android:host="$DEEPLINK_2_HOST" />
<data android:pathPrefix="$ANDROID_2_PATH_PREFIX" />
</intent-filter>
<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="$DEEPLINK_3_SCHEME" />
<data android:host="$DEEPLINK_3_HOST" />
<data android:pathPrefix="$ANDROID_3_PATH_PREFIX" />
</intent-filter>
<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="$DEEPLINK_4_SCHEME" />
<data android:host="$DEEPLINK_4_HOST" />
<data android:pathPrefix="$ANDROID_4_PATH_PREFIX" />
</intent-filter>
<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="$DEEPLINK_5_SCHEME" />
<data android:host="$DEEPLINK_5_HOST" />
<data android:pathPrefix="$ANDROID_5_PATH_PREFIX" />
</intent-filter>
</config-file>

Expand Down