原因:无法使用哈希字符串'android-N'找到目标

时间:2016-12-17 11:13:18

标签: android android-studio

今天,我是android studio中的新手。

我更新了最新版本的andriod studio

当我打开一个旧的项目并开始编译项目时,我检索了一个 错误消息是“原因:无法找到具有哈希字符串的目标'android-N'”

What should I do in order to use this old project in the updated android studio?

谢谢!

enter image description here

enter image description here

enter image description here

enter image description here

build.gradle文件中的源代码

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.1.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

2 个答案:

答案 0 :(得分:1)

你的sdk中没有安装android N. 只需点击错误中写的链接:

打开Android SDK Manager 它将显示对话框,帮助您为项目安装所需的sdk。

答案 1 :(得分:0)

你必须改变 在打开项目之前在app / build.gradle中     compileSdkVersion'N'     buildToolsVersion '24 .0.0 rc1'         targetSdkVersion'N'

到     compileSdkVersion'24'     buildToolsVersion '24 .0.0'         targetSdkVersion'24'