Etan
Etan

Reputation: 17554

Listing all available shared libraries on a Galaxy S III

I have an unrooted Galaxy S III and would like to know what additional libraries are available on this device when compared to a stock Google Nexus. I'm especially interested in .so libraries regarding Bluetooth Low Energy, as Samsung claims to be "Bluetooth Smart Ready" with the GS3.

Upvotes: 0

Views: 116

Answers (1)

Ricardo Cristian Ramirez
Ricardo Cristian Ramirez

Reputation: 1234

Use adb to connect your device and try to find *.so files then create an emulator device for Nexus and try to find .so files in it. Finally, you can comapre results and find out which libraries are different.

Actually you cannot load library. ld does it for you. Write your native code and link it to the related library.

AFAIK, <uses-library /> is not for that purpose.

Upvotes: 1

Related Questions