我正在将Android库从Eclipse迁移到Android Studio。在Eclipse中,我可以通过Project>设置NDK_MODULE_PATH。属性>资源>链接资源>路径变量。但是如何使用gradle分别在Android Studio中实现相同的功能?
我的库构建,直到它试图在NDK_MODULE_PATH下找到模块的头。
以下是错误消息:
Executing tasks: [:libAndroid:compileDebugSources, :physicaloidLibrary:compileDebugSources] Configuration on demand is an incubating feature. :libAndroid:preBuild UP-TO-DATE :libAndroid:preDebugBuild UP-TO-DATE :libAndroid:checkDebugManifest :libAndroid:preDebugAndroidTestBuild UP-TO-DATE :libAndroid:preReleaseBuild UP-TO-DATE :physicaloidLibrary:compileLint :physicaloidLibrary:copyReleaseLint UP-TO-DATE :physicaloidLibrary:mergeReleaseProguardFiles UP-TO-DATE :physicaloidLibrary:preBuild UP-TO-DATE :physicaloidLibrary:preReleaseBuild UP-TO-DATE :physicaloidLibrary:checkReleaseManifest :physicaloidLibrary:prepareReleaseDependencies :physicaloidLibrary:compileReleaseAidl UP-TO-DATE :physicaloidLibrary:compileReleaseRenderscript UP-TO-DATE :physicaloidLibrary:generateReleaseBuildConfig UP-TO-DATE :physicaloidLibrary:generateReleaseAssets UP-TO-DATE :physicaloidLibrary:mergeReleaseAssets UP-TO-DATE :physicaloidLibrary:generateReleaseResValues UP-TO-DATE :physicaloidLibrary:generateReleaseResources UP-TO-DATE :physicaloidLibrary:packageReleaseResources UP-TO-DATE :physicaloidLibrary:processReleaseManifest UP-TO-DATE :physicaloidLibrary:processReleaseResources UP-TO-DATE :physicaloidLibrary:generateReleaseSources UP-TO-DATE :physicaloidLibrary:compileReleaseJava UP-TO-DATE :physicaloidLibrary:processReleaseJavaRes UP-TO-DATE :physicaloidLibrary:packageReleaseJar UP-TO-DATE :physicaloidLibrary:compileReleaseNdk UP-TO-DATE :physicaloidLibrary:packageReleaseJniLibs UP-TO-DATE :physicaloidLibrary:packageReleaseLocalJar UP-TO-DATE :physicaloidLibrary:packageReleaseRenderscript UP-TO-DATE :physicaloidLibrary:bundleRelease UP-TO-DATE :libAndroid:prepareLibAndroidGradlePhysicaloidLibraryUnspecifiedLibrary UP-TO-DATE :libAndroid:prepareDebugDependencies :libAndroid:compileDebugAidl UP-TO-DATE :libAndroid:compileDebugRenderscript UP-TO-DATE :libAndroid:generateDebugBuildConfig UP-TO-DATE :libAndroid:generateDebugAssets UP-TO-DATE :libAndroid:mergeDebugAssets UP-TO-DATE :libAndroid:generateDebugResValues UP-TO-DATE :libAndroid:generateDebugResources UP-TO-DATE :libAndroid:mergeDebugResources UP-TO-DATE :libAndroid:processDebugManifest UP-TO-DATE :libAndroid:processDebugResources UP-TO-DATE :libAndroid:generateDebugSources UP-TO-DATE :libAndroid:compileDebugJava UP-TO-DATE :libAndroid:compileDebugNdk AGPBI: {"kind":"SIMPLE","text":"/home/rhodo/dev/android/studio/LibAndroidGradle/libAndroid/src/main/jni/imageprocessing/dmtxutil.c:30:18: fatal error: dmtx.h: No such file or directory","position":{},"original":"/home/rhodo/dev/android/studio/LibAndroidGradle/libAndroid/src/main/jni/imageprocessing/dmtxutil.c:30:18: fatal error: dmtx.h: No such file or directory"} AGPBI: {"kind":"SIMPLE","text":" #include \u003cdmtx.h\u003e","position":{},"original":" #include \u003cdmtx.h\u003e"} AGPBI: {"kind":"SIMPLE","text":" ^","position":{},"original":" ^"} AGPBI: {"kind":"SIMPLE","text":"compilation terminated.","position":{},"original":"compilation terminated."} AGPBI: {"kind":"SIMPLE","text":"make: *** [/home/rhodo/dev/android/studio/LibAndroidGradle/libAndroid/build/intermediates/ndk/debug/obj/local/arm64-v8a/objs/Rhodo//home/rhodo/dev/android/studio/LibAndroidGradle/libAndroid/src/main/jni/imageprocessing/dmtxutil.o] Error 1","position":{},"original":"make: *** [/home/rhodo/dev/android/studio/LibAndroidGradle/libAndroid/build/intermediates/ndk/debug/obj/local/arm64-v8a/objs/Rhodo//home/rhodo/dev/android/studio/LibAndroidGradle/libAndroid/src/main/jni/imageprocessing/dmtxutil.o] Error 1"} FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':libAndroid:compileDebugNdk'. > com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/opt/android-ndk/ndk-build'' finished with non-zero exit value 2 * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. BUILD FAILED Total time: 2.763 secs
有关于此的任何想法吗?
答案 0 :(得分:1)
使用:
这对我有用:
def checkMyValues(args):
if isinstance(args, str):
print("is string")
这样我就不需要将NDK_MODULE_PATH添加到我的PATH中来构建项目。但是,干净的任务失败,因为这不会从这里获取参数,所以我需要添加另一个hack来解决这个问题:
android {
...
defaultConfig {
...
ndk {
abiFilters 'armeabi', 'armeabi-v7a'
}
externalNativeBuild {
ndkBuild {
// TODO replace jniDependencies folder with the path to your modules
arguments "NDK_MODULE_PATH:=${rootProject.projectDir}/jniDependencies"
}
}
}
externalNativeBuild {
ndkBuild {
path 'src/main/jni/Android.mk'
}
}
}
答案 1 :(得分:-1)
在Android Studio项目的根目录下,有一个名为“local.properties”的文件。添加名为“ndk.dir”的属性并将值设置为指向ndk的位置。如下所示:
ndk.dir=/Users/username/sdk
我可能不理解你的问题。如果您已经设置了ndk的位置并且只想确保构建模块,那么将模块添加到“settings.gradle”文件中。
include ":<your module name>"
然后确保将C代码放在模块中的“src / main / jni”中。 Gradle将根据文件夹名称自动找到它。不再需要设置NDK_MODULE_PATH。