14
Views
3
Comments
Solved
[Zebra DataWedge Connector Plugin] Conflict with cordova camera plugin
Question
zebra-datawedge-connector-plugin
Mobile icon
Forge asset by João Lopes
Application Type
Mobile

HI,
I am trying to generate build with new version of camera plugin as it is required by Zebra datawedge connector plugin.
While doing so, I found the conflict happening between config file attributes overwriting in mobile apps log.
Apreciate if any pointers for this problem.

2021-07-21 10-26-16
Vani Mankad
Solution

Hi @Vincent Drent ,
Let me save your day ! ( Although it ate out my few days to figure out )
It is mentioned in github to import camera plugin first and then install zebra scanner.
Please update plugins extensibility configuration as below - 

{  "plugins": [    {      "identifier": "cordova-plugin-camera"    },    {      "identifier": "com-darryncampbell-cordova-plugin-intent",      "source": "npm",      "version": "2.2.0"    }  ]}


You will have to use 2.2.0 for AndroidX support.

https://www.npmjs.com/package/com-darryncampbell-cordova-plugin-intent


Hope this helps !
Vani

UserImage.jpg
Vincent Drent

Hi,
We are experiencing the same issue after updating the Camera Plugin. Were you able to find a solution?

2021-07-21 10-26-16
Vani Mankad
Solution

Hi @Vincent Drent ,
Let me save your day ! ( Although it ate out my few days to figure out )
It is mentioned in github to import camera plugin first and then install zebra scanner.
Please update plugins extensibility configuration as below - 

{  "plugins": [    {      "identifier": "cordova-plugin-camera"    },    {      "identifier": "com-darryncampbell-cordova-plugin-intent",      "source": "npm",      "version": "2.2.0"    }  ]}


You will have to use 2.2.0 for AndroidX support.

https://www.npmjs.com/package/com-darryncampbell-cordova-plugin-intent


Hope this helps !
Vani

UserImage.jpg
Vincent Drent

Hi,
We've also spent a couple days on this issue. Updating the Extensibility config of the plugin resolved the issue, thank you!

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.