我无法将AppCompat-v7编译到我的Android Studio项目中

时间:2017-06-21 23:05:28

标签: android gradle build compilation

我有一个奇怪的问题阻止我进一步开发我的应用程序。 我需要使用Viewpager和一些选项卡(TabLayout)创建一个UI,为了实现这一点,我需要编译android设计和appcompat库。 但问题出在这里,它一直告诉我" ColorAccent"已经使用不兼容的格式定义。

我已经尝试了所有可以修复的东西,但似乎它不会起作用。有没有人解决这个问题?请帮忙!

这是我的错误日志:

~ my path at MyApp's directory app\build\intermediates\res\merged\debug\values\values.xml
Error:(148) Attribute "colorAccent" already defined with incompatible 
format.
Error:(3) Original attribute defined here.
Error:(148) Attribute "colorAccent" already defined with incompatible 
format.
Error:(3) Original attribute defined here.
Error:Execution failed for task ':app:processDebugResources'.
> com.android.ide.common.process.ProcessException: Failed to execute aapt

编辑:这是我的构建代码:

 apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion '25.0.0'
defaultConfig {
    applicationId "tap.myapp"
    minSdkVersion 19
    targetSdkVersion 24
    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 'com.android.support:support-v4:24.2.1'
compile 'com.journeyapps:zxing-android-embedded:3.0.2@aar'
compile 'com.google.firebase:firebase-core:9.4.0'
compile 'com.google.firebase:firebase-messaging:9.4.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.android.volley:volley:1.0.0'
compile "com.android.support:support-v4:24.2.1"
compile "com.android.support:appcompat-v7:24.2.1"
compile "com.android.support:support-annotations:24.2.1"
compile 'com.google.zxing:core:3.2.0'
compile 'com.android.support:recyclerview-v7:24.2.1'
testCompile 'junit:junit:4.12'
}

1 个答案:

答案 0 :(得分:0)

FIXED :我错误的是我在属性xml(attrs.xml)中声明了一个colorAccent变量,因此gradle无法编译库,因为它可能重复特定值(颜色重音)。删除该值可以解决我几个小时内出错的问题。