I got a meteor Android App using Cordova plugins.
When updating from meteor 1.8.0.2 to 1.8.1, I don’t get the Android App compiled anymore
Error:
uses-sdk:minSdkVersion 16 cannot be smaller than version 19 declared in library [:CordovaLib]
../AndroidManifest.xml as the library might be using APIs not available in
16
Suggestion: use a compatible library with a minSdk of at most 16,
or increase this project's minSdk version to at least 19,
or use tools:overrideLibrary="org.apache.cordova" to force usage (may lead to runtime failures)
What I already tried:
- App.setPreference(‘android-minSdkVersion’, ‘19’); in mobile config
- Remove crosswalk
- Re-add plattforms and/or crosswalk plugins
- Direct cordova overrides
- Playing arround with gradle versions & files
However, nothing helped. According to the meteor changelog, there should be no incompatibilities. I am the only one experiencing such issues?
Btw, meteor is still not using the newest cordova versions available. Is there a way to override?