我正在android studio中构建一个项目,尽管我做了所有的工作,但我无法解决错误信息:
安装构建工具23.0.2并同步项目。
这是我的gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.noxel.apppaneladmintry2"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'no.nordicsemi.android.beacon.common:nrf-beacon-lib-v2.0@aar'
compile 'com.android.support:appcompat-v7:23.0.0'
compile 'com.android.support:design:23.0.0'
compile 'no.nordicsemi.android.support.v18:scanner:0.1.1'
compile project(':dfu')}
我真的不知道如何解决这个问题。