Android - javax.imageio does not exists

1.4k views Asked by At

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?

1

There are 1 answers

1
Rohit5k2 On

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.