when building my plugin with
cordova build
Cordova reports that my plugin is using deprecation API and for more info I should
Recompile with -Xlint:deprecation for details.
But how can I pass -Xlint:deprecation as parameter to cordova build?
when building my plugin with
cordova build
Cordova reports that my plugin is using deprecation API and for more info I should
Recompile with -Xlint:deprecation for details.
But how can I pass -Xlint:deprecation as parameter to cordova build?
I think this is an Android build related problem, you could try to disable Xlint:deprecation flag, as is said in this post
<compilerarg value="-Xlint:deprecation"/>
<compilerarg value="-Xlint:unchecked"/>