【发布时间】:2017-06-03 04:42:58
【问题描述】:
在将com.android.tools.build:gradle 从项目更新到 2.3.0-beta1 后,我遇到了这个问题。
如果我设置回 2.2.3,Theme.AppCompat 样式会识别。
我不想设置为 2.2.3,因为项目不能超时。
这是错误的打印:
我的项目build.gradle:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0-beta1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
我的应用程序的build.gradle:
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
android {
compileSdkVersion 25
buildToolsVersion '25.0.2'
defaultConfig {
applicationId "com.xxxxxxx.xxxxxxx"
minSdkVersion 19
targetSdkVersion 25
versionCode 76
versionName "1.18.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
useLibrary 'org.apache.http.legacy'
}
buildscript {
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
repositories {
maven {
url 'https://maven.fabric.io/public'
}
}
}
repositories {
maven {
url "https://raw.github.com/embarkmobile/zxing-android-minimal/mvn-repo/maven-repository/"
}
maven {
url 'https://maven.fabric.io/public'
}
flatDir {
dirs 'libs'
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile('de.keyboardsurfer.android.widget:crouton:1.8.5@aar') {
exclude group: 'com.google.android', module: 'support-v4'
}
compile('com.crashlytics.sdk.android:crashlytics:2.5.5@aar') {
transitive = true;
}
compile(name: 'libctfclient-sdk', ext: 'aar')
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support:support-v13:25.1.0'
compile 'com.android.support:support-v4:25.1.0'
compile 'com.android.support:design:25.1.0'
compile 'com.github.gabrielemariotti.cards:library:1.8.0'
compile 'com.github.gabrielemariotti.cards:library-extra:1.8.0'
compile 'com.github.castorflex.smoothprogressbar:library:1.1.0'
compile 'com.github.chrisbanes.actionbarpulltorefresh:library:0.9.9'
compile 'com.embarkmobile:zxing-android-minimal:2.0.0@aar'
compile 'com.embarkmobile:zxing-android-integration:2.0.0@aar'
compile 'com.google.zxing:core:3.0.1'
compile 'com.mcxiaoke.volley:library:1.0.19'
compile 'com.google.android.gms:play-services-analytics:9.8.0'
compile 'com.github.nkzawa:socket.io-client:0.3.0'
compile 'com.android.support.constraint:constraint-layout:1.0.0-beta4'
}
按照该错误的顺序,我遇到了这个问题:
我已经试过了:
Invalidate Caches\Restart;将android支持库更新到最新版本;
清理并重建项目;
有没有人知道如何在不将项目的build.gradle 设置为 2.2.3 的情况下解决此问题?
【问题讨论】:
标签: android build.gradle android-appcompat