Я использую Android Studio 2.2 cmake
для создания собственного кода, в собственном коде я вызывал ffmpeg api, поэтому библиотека ffmpeg должна быть упакована. Мой CMakelists.txt
выглядит следующим образом:
cmake_minimum_required(VERSION 3.4.1)
include_directories(libs/arm/include)
link_directories(libs/arm/lib/)
add_library( # Sets the name of the library.
native-lib
# Sets the library as a shared library.
SHARED
# Provides a relative path to your source file(s).
# Associated headers in the same location as their source
# file are automatically included.
src/main/cpp/native-lib.cpp )
find_library( # Sets the name of the path variable.
log-lib
# Specifies the name of the NDK library that
# you want CMake to locate.
log )
target_link_libraries( # Specifies the target library.
native-lib
# Links the target library to the log library
# included in the NDK.
${log-lib} )
add_library(avcodec-57 SHARED IMPORTED)
set_target_properties(avcodec-57 PROPERTIES IMPORTED_LOCATION C:/Users/tony/Desktop/MyApplication/app/libs/arm/lib/libavcodec-57.so)
target_link_libraries(native-lib avcodec-57)
target_link_libraries(native-lib avformat-57)
target_link_libraries(native-lib avutil-55)
target_link_libraries(native-lib avfilter-6)
В таком случае я могу сделать проект успешно, но когда я устанавливаю apk в эмулятор и запускаю, он не работает и показывает, что "libavcodec-57.so" не найден. Затем я использую инструмент (анализ apk), чтобы проверить apk, обнаружил, что библиотека ffmpeg не упакована.