由于版本冲突,无法解析“ R”

时间:2018-10-04 21:11:25

标签: android android-studio

在我的学习中,我的版本存在冲突,导致出现错误Cannot resolve symbol 'R',但我不知道错误的版本是什么。

在我的学习中,我的版本存在冲突,导致出现错误Cannot resolve symbol 'R',但我不知道错误的版本是什么。

已经尝试了所有其他解决方案:

  • 清理并重建项目
  • 同步项目
  • 清理缓存

    应用插件:“ com.android.application”

    android {
        compileSdkVersion 26
        defaultConfig {
            applicationId "com.example.ves.gennaio3"
            minSdkVersion 14
            targetSdkVersion 26
            versionCode 1
            versionName "1.0"
            testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
    }
    
    dependencies {
        implementation fileTree(dir: 'libs', include: ['*.jar'])
        implementation 'com.android.support:appcompat-v7:26.1.0'
        implementation 'com.android.support:cardview-v7:26.1.0'
        implementation 'com.android.support:design:26.1.0'
        implementation 'com.android.support.constraint:constraint-layout:1.1.3'
        implementation 'com.android.support:support-v4:26.1.0'
        implementation 'com.android.support:recyclerview-v7:26.1.0'
        implementation 'com.google.firebase:firebase-auth:16.0.4'
        implementation 'com.google.firebase:firebase-database:16.0.3'
        implementation 'com.google.firebase:firebase-ml-vision:17.0.1'
        implementation 'com.google.firebase:firebase-firestore:17.1.1'
        compile 'com.github.satyan:sugar:1.5'
        compile 'com.rmtheis:tess-two:6.0.0'
        testImplementation 'junit:junit:4.12'
        androidTestImplementation 'com.android.support.test:runner:1.0.2'
        androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    }
    
    apply plugin: 'com.google.gms.google-services'
    

1 个答案:

答案 0 :(得分:0)

您可以尝试以下方法: 文件->使缓存无效/重新启动Android Studio->使无效并重新启动

Android Studio维护有关哪些文件依赖于其他文件的信息。这意味着您不仅需要Gradle同步文件,而且还需要使Studio缓存无效。