在Android Studio中创建新项目时无法解析符号appCompatActivity?

时间:2016-11-15 05:05:01

标签: android android-studio

项目级Gradle文件:顶级构建文件,您可以在其中添加所有子项目/模块共有的配置选项。

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

        // 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
}

模块级gradle:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.0"
    defaultConfig {
        applicationId "in.co.persistent.gamedisappear"
        minSdkVersion 16
        targetSdkVersion 25
        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.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.0.1'
    testCompile 'junit:junit:4.12'
}

` The error I get我知道很多次都会问这个问题。但是我尝试了各种各样的事情,比如invalidate / restart cache.Also尝试重新启动android并构建新项目.Plus添加了所需的依赖项(编译'com.android.support:appcompat -v7:25.0.1')没有任何作用!

2 个答案:

答案 0 :(得分:1)

从gradle构建错误屏幕截图中可以看出问题是无法解决junit:junit:4.12
解决方案 - 如果您不需要运行单元测试用例,那么请在第testCompile 'junit:junit:4.12'行后进行评论并检查
但如果您需要,请在模块级build.gradle文件中添加以下代码

repositories {
      jcenter()
      maven { url 'http://repo1.maven.org/maven2' }
    }

编辑 - 根据评论中提出的问题提出的原因 为什么我们会收到错误?有时可能会发生在存储库中可能不存在所需的依赖/已使用版本/路径更改的情况。有关更多信息,您需要了解gradle如何工作

答案 1 :(得分:0)

我在build.gradle中将我的依赖项更改为以下版本并且它有效...虽然不知道这背后的原因。

  dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:25.0.1'
}