Swapnil
Swapnil

Reputation: 2502

Openssl1.0.1j .so files for android

I want to build Openssl for android,I followed following link Openssl For Android.This link generates libcrypto.a and libssl.a. Android application requires shared .so(Shared) library to be used in the application.How can generate .so files from above .a library files.Or any link/post that will help me to generate .so files from latest Openssl code.

Upvotes: 0

Views: 132

Answers (1)

Vladimir Kunschikov
Vladimir Kunschikov

Reputation: 1763

You can't modify original device files and therefore should distribute your own copy of libraries.
The trick which allows to use your own library versions is described in manual which you have already read. Just look to the section "Using OpenSSL in an Application":

http://wiki.openssl.org/index.php/Android#Using_OpenSSL_in_an_Application

Example: error when trying to compile wrapper for openssl library libcrypto.a

Upvotes: 2

Related Questions