Reputation: 361
I've built OpenSSL into an Android Library that I would like to reference from another Android project.
Unfortunately,
The project is selected as a library in Preferences > Android
This library is referenced from a second Android project
My Questions are these
Surely, it is something simple.
Thanks in advance.
Upvotes: 1
Views: 2495
Reputation: 42016
once you generate (.so) library file, then make a folder in your applitcation's project folder named "libs/armeabi/" put (.so) file in this folder
and in your application write
System.loadLibrary("library_name");
Upvotes: 2