Android Studio Cordova Push Plugin
Can someone help me? I'm new to Android studio. After I installed the plugin push in my project, I received the following error message: Error:Execution failed for task ':dexDebug
Solution 1:
That plugin is deprecated, try using the new one that replaces that one.
Solution 2:
The error is the result of conflicting plugin jar libraries.
Look for libs like com.android.support.v4.jar and similar...
To get around this you need to search for (forked) plugins that already resolved the conflict.
Sadly enough simply deinstalling the "Problem-Plugin" often does not remove the error because there are dependencies left overs somewhere in the files used by cordove build
In that case search manually for these left overs (for example in ../your_project/package.json) and remove all occurences of the deinstalled plugin.
Post a Comment for "Android Studio Cordova Push Plugin"