One of the libs in my Android project (jMonkey 3 based) uses javax.imageio which does not exist in Android SDK.
Is there anything to do about it?
One of the libs in my Android project (jMonkey 3 based) uses javax.imageio which does not exist in Android SDK.
Is there anything to do about it?
There is a download available for javax.imageio
at https://jar-download.com/download-handling.php
See if adding this jar as dependency work for you.
Here are its documentation https://docs.oracle.com/javase/7/docs/api/javax/imageio/package-summary.html
NOTE: If you can change the library then you should try to use remove imageio
and use Bitmap
instead; if possible.