We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current behavior:
cordova-android@latest
cordova-plugin-camera@latest
cordova-custom-config@latest
config.xml
<custom-config-file parent="./queries" target="AndroidManifest.xml"> <intent> <action android:name="android.support.customtabs.action.CustomTabsService" /> </intent> </custom-config-file>
cordova prepare
queries
example
<queries> <intent> <action android:name="android.support.customtabs.action.CustomTabsService" /> </intent> <intent> <action android:name="android.intent.action.GET_CONTENT" /> </intent> <intent> <action android:name="android.intent.action.PICK" /> </intent> <intent> <action android:name="com.android.camera.action.CROP" /> <data android:mimeType="image/*" android:scheme="content" /> </intent> </queries> <queries> <intent> <action android:name="android.media.action.IMAGE_CAPTURE" /> </intent> <intent> <action android:name="android.intent.action.GET_CONTENT" /> </intent> <intent> <action android:name="android.intent.action.PICK" /> </intent> <intent> <action android:name="com.android.camera.action.CROP" /> <data android:mimeType="image/*" android:scheme="content" /> </intent> </queries>
Expected behavior: plugin should replace the value in the section
Environment information
cordova -v
cordova platform ls
cordova plugin ls
Android build issue:
node -v
Related code:
insert any relevant code here such as plugin API calls / input parameters
Console output
<queries> <intent> <action android:name="android.media.action.IMAGE_CAPTURE" /> </intent> <intent> <action android:name="android.intent.action.GET_CONTENT" /> </intent> <intent> <action android:name="android.intent.action.PICK" /> </intent> <intent> <action android:name="com.android.camera.action.CROP" /> <data android:mimeType="image/*" android:scheme="content" /> </intent> <intent> <action android:name="android.support.customtabs.action.CustomTabsService" /> </intent> <intent> <action android:name="android.support.customtabs.action.CustomTabsService" /> </intent> <intent> <action android:name="android.support.customtabs.action.CustomTabsService" /> </intent> <intent> <action android:name="android.support.customtabs.action.CustomTabsService" /> </intent> </queries> <queries> <intent> <action android:name="android.media.action.IMAGE_CAPTURE" /> </intent> <intent> <action android:name="android.intent.action.GET_CONTENT" /> </intent> <intent> <action android:name="android.intent.action.PICK" /> </intent> <intent> <action android:name="com.android.camera.action.CROP" /> <data android:mimeType="image/*" android:scheme="content" /> </intent> </queries>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug report
Current behavior:
cordova-android@latest
platformcordova-plugin-camera@latest
plugincordova-custom-config@latest
pluginconfig.xml
cordova prepare
cordova prepare
againqueries
example
AndroidManifest
Expected behavior:
plugin should replace the value in the section
Environment information
cordova -v
- 10.0.0cordova platform ls
cordova plugin ls
Android build issue:
node -v
- v14.18.1Related code:
Console output
with `mode="add"` plugin duplicate original section and add the item into other section every time on `cordova prepare`
The text was updated successfully, but these errors were encountered: