Using an Existing ".so" File (Created on Linux) on Android

I have a file .sothat was created on Linux (Ubuntu). I do not have its source.

I want to use the same file .soon Android. Is it possible?

+3
source share
3 answers

You need to compile your lib for arm processor to work on Andriod phone.

+3
source

.so 32bit 64bit processors. Android, arm processor, . Android NDK Android. CFLAGS, CPPFLAGS LDFLAGS arm.

0

The answer is no. If you do not have the source code, you cannot use it in Android. If you have the source code, create one for ARM and you can use ..

0
source

All Articles