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.imageioat https://jar-download.com/download-handling.phpSee 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
imageioand useBitmapinstead; if possible.