Nhu Van
Nhu Van

Reputation: 111

Android ndk file .so. How run file .so

I have file libFFmpeg.so. but it is into "\src\main\jniLibs\armeabi" When run device with cpu x86. it is crash app. i have to copy libFFmpeg.so to x86,but it is still crash. Can you help me? I can build to x86, min, armeabi...

Upvotes: 0

Views: 105

Answers (2)

Nhu Van
Nhu Van

Reputation: 111

https://axdxy.wodemo.com/browse/378008/lib/x86/libffmpeg.so I have to found libs. can you download from web before.

Upvotes: 0

BrentM
BrentM

Reputation: 5757

You need to build a version of the libFFmpeg.so that supports x86. When using the NDK a different .so file is required for each ABI.

Here are some instructions on building FFMPEG for x86 https://software.intel.com/en-us/android/blogs/2013/12/06/building-ffmpeg-for-android-on-x86

Upvotes: 1

Related Questions