我正在Beaglebone Black上做一个项目,我已经在其上移植了Android KitKat。现在我需要一个Android应用程序,可以帮助我访问beaglebone上的那些gpios项目。
所以我使用android studio 1.3.1为我的项目创建我的应用程序,因此通过android访问硬件引脚我必须使用NDK。现在,当我尝试将gradle 2.2.1与我的NDK文件同步时,它会输出一个错误,我应该设置android.useDeprecatedNdk = true。现在,当我这样做时,它再次显示DeprecatedNdk()未定义的错误。 虽然我已从Android开发者网站下载了最新版本的NDK即android-ndk-r10e,但错误仍然存在。 以下是模块中的build.gradle文件。
apply plugin: 'com.android.application'
android {
compileSdkVersion 19
buildToolsVersion "19.1.0"
defaultConfig {
applicationId "com.packt.gpio"
minSdkVersion 19
targetSdkVersion 19
ndk {
moduleName "packtHAL"
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.android.support:support-v4:19.+'
}
它显示的错误是:
Error:(14, 0) Error: NDK integration is deprecated in the current plugin.
Consider trying the new experimental plugin. For details, see http://tools.android.com/tech-docs/new-build-system/gradle-experimental.
Set "android.useDeprecatedNdk=true" in gradle.properties to continue using the current NDK integration.
如果我将该属性添加到文件中,则会显示以下错误:
Error:(6, 0) Gradle DSL method not found: 'useDeprecatedNdk()'
Possible causes:The project 'gpio' may be using a version of Gradle that does not contain the method.
The build file may be missing a Gradle plugin.
如果有人知道应该怎么做。请分享您的想法。
谢谢
答案 0 :(得分:3)