我的Android NDK项目存在问题。
我的项目包括两个项目:一个库和一个应用程序。
我想使用gnustl_shared并在生成的.apk文件中使用gnustl_shared.so。
所以我的两个Application.mk文件中都有APP_STL:= gnustl_shared。
问题是,如果我这样做,它会给我以下错误:
Error generating final archive: Found duplicate file for APK: lib/armeabi/libgnustl_shared.so
Origin 1: /Volumes/STUFF/repos/trunk/android/MainActivity/libs/armeabi/libgnustl_shared.so
Origin 2: /Volumes/STUFF/repos/trunk/android/MyLib/libs/armeabi/libgnustl_shared.so
如果我只为一个项目使用APP_STL:= gnustl_shared,那么它会构建,但会链接到静态库(实际应该如此)。
有谁知道如何在库和应用程序中再次链接gnustl_shared并避免此错误?任何帮助甚至是线索都非常感激。
答案 0 :(得分:1)
问题解决了。
无论如何,它们将通过应用程序配置添加到最终的.apk中。