wymsee / cordova-imagePicker

Cordova Plugin For Multiple Image Selection
MIT License
407 stars 853 forks source link

Installation fails with Android@11, Build fails if installed using --force #286

Open pixellet14 opened 1 year ago

pixellet14 commented 1 year ago

The plugin tries to create a file themes.xml in platforms\android\app\src\main\res\values\

where as, android@11 platform add, already creates one before hand, hence the installation fails.

If you try to install the plugin with --force, the default themes.xml changes and there after the build keeps failing.

Solution : I took a back up of the platforms\android\app\src\main\res\values android default themes.xml file and then installed the plugin using --force. After installation, I appended the initial lines from themes.xml (back up file) into the newly created themes.xml file by the plugin. And it worked.

BARNZ commented 10 months ago

Thanks for the advice - I had the same problem as well when trying to update an old cordova app:

image