Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

android: Adding external JAR file in to android

We are making an application that needs to convert one file format to another. I am not sure whether we can add a JAR file in which we develop the code to convert the file format to our required file format, to our android project.

like image 543
Rakesh Gondaliya Avatar asked Jun 29 '26 10:06

Rakesh Gondaliya


1 Answers

You should be able to create a folder called libs in your main project directory and add any jar that you want to use to this folder. If during testing on the emulator you get a class not found exception or something like that you may add the jar in the order and export tab of your build path configuration.

like image 171
Janusz Avatar answered Jun 30 '26 22:06

Janusz