When I added another plugin for Android which requires SDK 15 I’m unable to build app.
The conflicting line is regarded crosswalk : "uses-sdk:minSdkVersion 14 cannot be smaller than version 15 declared in…"
In my config I have preference name=“android-minSdkVersion” value="15"
Any help ?
It’s this issue: https://crosswalk-project.org/jira/browse/XWALK-4632. I haven’t been able to figure out a fix though.
Here’s a temporary workaround until Crosswalk 16 is released with the fix:
Create a build-extras.gradle file in your /platforms/android folder containing this line:
ext.cdvMinSdkVersion = 15
1 Like
Thank you very much for help. I will try this.
Best Regards,
Vedran
Thank You.
It’s solved.