自SDK更新后无法编译

时间:2014-11-05 16:27:44

标签: android sdk

我最近通过tools/android.bat进行了SDK更新。现在我安装了以下内容:

enter image description here

然后我调整了我的build.gradle一段时间,试图让一切正常工作

android {
    compileSdkVersion 21
    buildToolsVersion "21.0.1"

    defaultConfig {
        minSdkVersion 18
        targetSdkVersion 21
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:21+'
    compile 'com.google.android.gms:play-services:6.1.11'

}

但是现在,每次我尝试编译时,都会出现以下错误:

Error:(10, 42) error: cannot find symbol class AsyncTask
Error:(11, 42) error: cannot find symbol class Bundle
Error:(79, 28) error: cannot find symbol method execute()

等...(总共24个类似的错误)似乎我的项目不再想要导入:

import com.google.android.gms.internal.os.AsyncTask;
import com.google.android.gms.internal.os.Bundle;

你知道问题可能来自哪里吗?

谢谢

0 个答案:

没有答案