Android: adding external JAR file in android

We are creating an application that should convert one file format to another. I'm not sure if we can add a JAR file in which we develop code to convert the file format to our desired file format in our Android project.

+3
source share
1 answer

You should be able to create a folder named libs in your main project directory and add any jar you want to use in this folder. If during testing on the emulator you get a class exception that is not found, or something similar, you can add a jar on the "Order" and "Export" tabs of your build path configuration.

+3
source

Source: https://habr.com/ru/post/1764113/


All Articles