What is the main difference between .so file and .jar file in android? Is it possible to change using of .so with using of .jar file?
Asked
Active
Viewed 2,225 times
3
-
http://stackoverflow.com/questions/9809213/what-are-a-and-so-files http://stackoverflow.com/questions/12079230/what-exactly-does-a-jar-file-contain – sUndeep Feb 06 '15 at 08:28
2 Answers
1
.so files are typically C or C++ libraries, while .jar files are a zip-format archive used for Java.
Also, could you explain the second part more? What do you want to do?

juunas
- 54,244
- 13
- 113
- 149
-
i need to import so file in my xamarin project. honestly I try to use C4000 china device's barcode reader in xamarin. In documentation second step is : Put libDeviceAPI.so file to the directory \libs\armeabi\. (operation system is android, demo code is written in android studio) – Nininea Feb 06 '15 at 09:13