I'm trying to make an app which creates a DICOM file. There is a java library called PixelMed. I tried to use it in my Android project but when accessing methods from the library I get
Failed resolution of: Ljavax/imageio/stream/FileImageInputStream
From what I found I get this because javax is not a part of Android SDK. My question is: Is there a way to somehow import this library or make the PixelMed work on Android?
Thanks in advance.