This question already has an answer here:
Attribute “titleTextStyle” has already been defined?
(1个答案)
4年前关闭。
我尝试编译我的项目,但出现这些类型的错误
这是我的 Gradle
我在这个问题上看到了很多问题和答案,但是没有一个对我有用:(
(1个答案)
4年前关闭。
我尝试编译我的项目,但出现这些类型的错误
"Error: (2) Attribute" titleTextStyle "has Already Been defined"
这是我的 Gradle
dependencies {
compile 'com.android.support:multidex:1.0.0'
compile project(':library')
compile project(':androidswitchbackport')
compile project(':urlImageViewHelper')
compile fileTree(include: ['*.jar'], dir: 'libs')
//compile 'com.android.support:appcompat-v7:21.+'
compile files('libs/FlurryAnalytics-4.2.0.jar')
compile('com.crashlytics.sdk.android:crashlytics:2.4.0@aar') {
transitive = true;
}
//compile 'uk.co.chrisjenx:calligraphy:2.2.0'
compile 'com.android.support:support-v4:22.1.1'
compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
compile 'com.google.android.gms:play-services:8.1.0'
compile 'org.apache.commons:commons-collections4:4.0'
compile 'org.apache.commons:commons-lang3:3.1'
compile 'org.apache.httpcomponents:httpmime:4.3.3'
compile 'org.apache.httpcomponents:httpcore:4.4.1'
compile 'com.facebook.android:facebook-android-sdk:4.1.0'
compile 'com.loopj.android:android-async-http:1.4.7'
compile 'com.melnykov:floatingactionbutton:1.3.0'
compile 'org.apache.sanselan:sanselan:0.97-incubator'
compile 'com.cocosw:bottomsheet:1.+@aar'
compile 'org.lucasr.twowayview:twowayview:0.1.4'
compile 'com.viewpagerindicator:library:2.4.1'
compile 'joda-time:joda-time:2.4'
compile 'com.google.android.gms:play-services-ads:8.1.0'
compile 'com.google.android.gms:play-services-identity:8.1.0'
compile 'com.google.android.gms:play-services-gcm:8.1.0'
}
我在这个问题上看到了很多问题和答案,但是没有一个对我有用:(
最佳答案
对于Gradle或您的Gradle文件,这不是问题。
检查您的XML布局文件,并查找“titleTextStyle
”(最有可能在TextView或其他小部件中)。您最有可能重复。
10-08 07:39