Android 导入对象无法找到属性分隔符

Android 导入对象无法找到属性分隔符,android,git,android-holo-everywhere,holoeverywhere,Android,Git,Android Holo Everywhere,Holoeverywhere,我使用git导入HoloEverywhere,得到了很多错误,但我设法修复了其中的一些错误。但是,我无法找到此错误的解决方案: Error:Execution failed for task ':app:libs:HoloEverywhere:processReleaseResources'. > com.android.ide.common.internal.LoggedErrorException: Failed to run command: D:\Program Files

我使用git导入HoloEverywhere,得到了很多错误,但我设法修复了其中的一些错误。但是,我无法找到此错误的解决方案:

Error:Execution failed for task ':app:libs:HoloEverywhere:processReleaseResources'.
> com.android.ide.common.internal.LoggedErrorException: Failed to run command:
    D:\Program Files (x86)\Android\android-sdk\build-tools\19.0.0\aapt.exe package -f --no-crunch -I D:\Program Files (x86)\Android\android-sdk\platforms\android-19\android.jar -M D:\Users\Kelvz\AndroidStudioProjects\AUFMobileSchoolBliz\app\libs\HoloEverywhere\build\bundles\release\AndroidManifest.xml -S D:\Users\Kelvz\AndroidStudioProjects\AUFMobileSchoolBliz\app\libs\HoloEverywhere\build\res\all\release -A D:\Users\Kelvz\AndroidStudioProjects\AUFMobileSchoolBliz\app\libs\HoloEverywhere\build\bundles\release\assets -m -J D:\Users\Kelvz\AndroidStudioProjects\AUFMobileSchoolBliz\app\libs\HoloEverywhere\build\source\r\release --non-constant-id --output-text-symbols D:\Users\Kelvz\AndroidStudioProjects\AUFMobileSchoolBliz\app\libs\HoloEverywhere\build\bundles\release
Error Code:
    1
Output:
    ERROR: In <declare-styleable> LinearLayoutICS, unable to find attribute divider
这是我的主要应用程序的build.gradle:

apply plugin: 'android-library'

android {
    compileSdkVersion 19
    buildToolsVersion '19.0.0'

    defaultConfig {
        minSdkVersion 7
    }

    sourceSets {

        main {
            manifest.srcFile 'AndroidManifest.xml'
            java.srcDirs = ['src']
            res.srcDirs = ['res']
        }

    }
}


dependencies {
    compile 'com.android.support:appcompat-v7:+'
    compile files('libs/support-v4-19.1.0.jar')
    compile files('libs/nineoldandroids-2.4.0.jar')
}
apply plugin: 'android'

android {
    compileSdkVersion 19
    buildToolsVersion "19.0.0"

    defaultConfig {
        minSdkVersion 10
        targetSdkVersion 19
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            runProguard false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
}

dependencies {
    compile project(':app:libs:HoloEverywhere')
    compile fileTree(dir: 'libs', include: ['*.jar'])
}

您是否尝试了上一个构建工具<代码>19.1或至少
19.0.3
。我记得有一个问题与旧的构建工具版本有关。可能与“compile'com.android.support:appcompat-v7:+”中的问题有关。你确定它是导入的吗?你解决了吗?我刚刚也遇到了同样的问题。