Cordova.plugin.zoom

,

After Installing the Cordova plugin not able to build the apk .getting the below error

   uses-sdk:minSdkVersion 19 cannot be smaller than version 21 declared in library [:commonlib:] C:\Users\asury\.gradle\caches\transforms-1\files-1.1\commonlib.aar\41c9a1c218670ce16a05d8d0533c30cc\AndroidManifest.xml as the library might be using APIs not available in 19
    Suggestion: use a compatible library with a minSdk of at most 19,
            or increase this project's minSdk version to at least 21,
            or use tools:overrideLibrary="us.zoom.androidlib" to force usage (may lead to runtime failures

Hi smatcha,

Thanks for the post. Our Android SDK requires minSdkVersion to be 21(https://github.com/zoom/zoom-sdk-android#prerequisites) so setting it to be lower than 21 will not work. Based on the path shown in the error, it seems like gradle is trying to use the commonlib.aar in the cache, which might not be compatible with the latest Android SDK. Please try to clean the cache and set the minSdkVersion to 21+.

Hope this helps. Thanks!