无法使用哈希字符串找到目标' android-24'在macOS中

时间:2016-12-29 07:18:38

标签: android macos android-ndk

macOS Sierra

Android Studio版本2.2.3

机器人-NDK-R13B

enter image description here

我已点击"安装缺少的平台并同步项目",现在,在我的目录android-ndk-r13b / platforms /中,我确实有android-24。

但错误仍然发生!有人说应该编辑文件build.gradle,现在我的build.gradle内容如下:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 24
    buildToolsVersion "24.0.0"
    defaultConfig {
        applicationId "com.mimo520.arderbud.myfirstandroidapplication"
        minSdkVersion 22
        targetSdkVersion 'N'
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner  "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        } 
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.0', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:24.+'
    testCompile 'junit:junit:4.12'
}

那么如何修复这个文件?谢谢!

1 个答案:

答案 0 :(得分:0)

请发布您应用的build.gradle(您已经发布了您的项目&build; build.gradle)。

通常这个问题是你没有当前的buildtools版本,或者你的编译版本与你的buildtools版本不匹配等等。