无法让Gradle构建Android L"错误:找到项目Style / AppTheme不止一次"

时间:2014-10-29 20:04:05

标签: android xml android-studio android-gradle android-5.0-lollipop

我目前正在尝试使用Android L SDK版本创建Android应用。 但是,在尝试使用Gradle构建项目时,我遇到以下错误:

“错误:找到项目样式/ AppTheme多次”

哪个指向我的res / values-v21 / styles.xml

我知道在res / values / styles.xml中已经定义了一个样式“AppTheme”,但据我所知,我正在关注使用Android L的Android开发人员指南。也许有人可以帮助我:

这是我的:

的build.gradle

apply plugin: 'com.android.application'

android {
   compileSdkVersion 'android-L'
   buildToolsVersion '20.0.0'

defaultConfig {
    applicationId "com.mayuonline.ribbit"
    minSdkVersion 'L'
    targetSdkVersion 'L'
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        runProguard false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
   compile fileTree(dir: 'libs', include: ['*.jar'])
   compile 'com.android.support:support-v4:20.+'
}

的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="resume.kelseyhrubes" >

    <uses-sdk android:minSdkVersion="L" android:targetSdkVersion="L"/>
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

值/ styles.xml

<resources>
    <!-- inherit from the material theme -->
        <style name="AppTheme" parent="android:Theme.Material">
    <!-- Main theme colors -->
    <!--   your app branding color for the app bar -->
            <item name="android:colorPrimary">@color/primary</item>
    <!--   darker variant for the status bar and contextual app bars -->
            <item name="android:colorPrimaryDark">@color/primary_dark</item>
    <!--   theme UI controls like checkboxes and text fields -->
            <item name="android:colorAccent">@color/primary_light</item>
    </style>
</resources>

值-V21 / styles.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="AppTheme" parent="android:Theme.Material.Light">
    </style>

    <style name="AppTheme">@color/primary

        @color/primary_dark

        @color/primary_light
    </style>
</resources>

我为糟糕的格式道歉,我希望一切都是可读的。 如果有人知道我做错了什么,请告诉我。我只是想用这种甜美的材料设计制作应用程序。

1 个答案:

答案 0 :(得分:0)

您不应再使用L,这是您需要使用21使用官方SDK的预览SDK