com.android.tools.build:gradle
을 프로젝트에서 2.3.0-beta1로 업데이트 한 후이 문제가 발생했습니다. 2.2.3으로 다시 설정하면 Theme.AppCompat
스타일이 인식됩니다.com.android.tools.build:gradle을 2.3.0-beta1로 업데이트 한 후 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:[email protected]') {
exclude group: 'com.google.android', module: 'support-v4'
}
compile('com.crashlytics.sdk.android:crashlytics:[email protected]') {
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:[email protected]'
compile 'com.embarkmobile:zxing-android-integration:[email protected]'
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
;최신 버전으로 안드로이드 지원 라이브러리 업데이트;
프로젝트를 지우고 다시 빌드하십시오.
아무도 프로젝트의 build.gradle
을 2.2.3으로 설정하지 않고이 문제를 해결하는 방법을 알고 있습니까?
나는 그것을 이미했지만 성공하지 못했습니다. 질문에 추가 하겠지만, 잊어 버렸습니다 –
프로젝트 디렉토리에서 .gradle을 삭제하려고 시도 했습니까? 2 일 내 프로젝트처럼 : getResources() 메서드를 해결할 수 없습니다. .gradle을 제거한 후에 모든 것이 작동했습니다. – kristyna
나는 아직하지 않았다. 시도해 볼게. 감사!! –