9

我尝试使用以下 build.gradle 文件编译一个 android 项目:

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.6.+'
    }
}
apply plugin: 'android'

repositories {
    maven {
        url 'https://github.com/Goddchen/mvn-repo/raw/master/'
    }
    mavenCentral()
}

android {
    compileSdkVersion 18
    buildToolsVersion "18.1.1"

    defaultConfig {
        minSdkVersion 8
        targetSdkVersion 18
    }
}

dependencies {
        compile 'com.android.support:appcompat-v7:18.0.+'
        compile 'com.android.support:support-v4:18.0.+'

        compile 'com.google.android.gms:play-services:3.2.+'

        compile 'com.facebook.android:facebook:3.5.+'
        compile 'com.android:volley:1.0'
        compile 'org.jraf:android-switch-backport:1.0'

}

但这失败并出现以下错误:

:TestProject:processDebugResources
/home/lukas/apps/Splots_test/apps/TestProject/build/res/all/debug/values/values.xml:1622: error: Error: No resource found that matches the given name: attr 'switchStyle'.
:TestProject:processDebugResources FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':TestProject:processDebugResources'.
> Could not call IncrementalTask.taskAction() on task ':TestProject:processDebugResources'

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

查看生成的 values.xml 后,我发现它缺少 android-switch-backport 的可声明样式的“主题”部分。

这部分在 Appcompat 和 AndroidSwitchBackport 中都有定义,但最终文件中只包含其中一个:

lukas@lukas-Workstation:~/apps/Splots_test/apps$ grep -r 'declare-styleable name="Theme"' .
./TestProject/build/exploded-bundles/ComAndroidSupportAppcompatV71800.aar/res/values/values.xml:    <declare-styleable name="Theme">
./TestProject/build/exploded-bundles/OrgJrafAndroidSwitchBackport10.aar/res/values/values.xml:    <declare-styleable name="Theme">

有没有办法告诉 gradle 它应该合并两个库的属性?

4

2 回答 2

5

我也遇到了这个问题。我认为您需要更改 android-switch-backport 库中的 attrs.xml 文件。

尝试改变这个

<declare-styleable name="Theme">
        <attr name="switchStyle" format="reference" />
        <attr name="switchPreferenceStyle" format="reference" />
</declare-styleable>

对此:

<declare-styleable name="AppTheme">
        <attr name="switchStyle" format="reference" />
        <attr name="switchPreferenceStyle" format="reference" />
</declare-styleable>
于 2013-11-21T06:08:40.597 回答
1

顺便说一下,我是 Switch Backport 库的开发者,这个问题从 1.3.1 版本开始就不再存在了。

(确保在升级时包含正确的 repo,因为它不再是 maven Central)。

于 2014-02-22T01:04:13.183 回答