Reputation: 17554
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.
System.loadLibrary
?)<uses-library />
directive into the manifest file?Upvotes: 0
Views: 116
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