Android Studio Java编译器错误和AAPT2错误

时间:2018-08-20 13:48:27

标签: android gradle

我正在构建一个应用程序,并且一切正常,然后我不得不重新启动计算机,当我再次尝试构建该应用程序时,它显示错误提示

resource style/Theme.AppCompat.Light.DarkActionBar (aka com.solutions.frontier.inventorymanager:style/Theme.AppCompat.Light.DarkActionBar) not found.   
failed linking references.  

C:/Users/Surafel/.gradle/caches/transforms-1/files-1.1/support-compat-27.0.2.aar/ff928148892ded877e4d915a2e50e2e1/res/values/values.xml 
error: style attribute 'attr/colorPrimary (aka com.solutions.frontier.inventorymanager:attr/colorPrimary)' not found.   
error: style attribute 'attr/colorPrimaryDark (aka com.solutions.frontier.inventorymanager:attr/colorPrimaryDark)' not found.   
error: style attribute 'attr/colorAccent (aka com.solutions.frontier.inventorymanager:attr/colorAccent)' not found. 

R.id.something的每个引用都出现红色错误:cannot resolve symbol R

它也说AAPT2 error

将我的build.gradle文件放在这里,以防万一需要

apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.solutions.frontier.inventorymanager"
        minSdkVersion 16
        targetSdkVersion 27
        versionCode 1
        versionName "rand1.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:support-v4:27.0.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

我试图清理项目并重建它,但是它不起作用

1 个答案:

答案 0 :(得分:0)

我已经多次遇到此错误,我仍然不知道确切的解决方案,请尝试这些 1-更改项目的构建工具版本。最好升级而不是降级。 2-逐步返回您的代码,似乎您正在使用espers运行测试,请删除它并重试 3-更改您的应用程序build.gradle文件中的库版本