З сьогоднішнього дня Android Studio не може знайти теми AppCompat у styles.xml, але, наприклад, AppCompatActivity у коді все-таки розпізнається. Моя версія Android Studio 2.2.2, збірка № AI-145.3360264
Я вже спробував оновити до найновіших інструментів збирання, компілювати sdk (25) версію тощо, але це не вирішило проблему.
На даний момент я встановив наступне (від sdk manager):
- android api: 19 і 23
- інструменти платформи sdk: 25.0.1
- sdk інструменти: 25.2.3
- build-інструменти: 23.0.2 та 25.0.1
- сховище підтримки: 40
- репозиторій google: 39
та декілька інших, які тут не слід перераховувати.
build.gradle програми:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '25.0.1'
defaultConfig {
applicationId "xxx.xxxxxxxx.xxxxxxxxx" //not the real applicationId
minSdkVersion 14
targetSdkVersion 19
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile files('libs/RootTools.jar')
compile 'com.android.support:support-v4:23.+'
compile 'com.android.support:support-v13:23.+'
compile 'com.android.support:appcompat-v7:23.+'
compile 'com.android.support:design:23.+'
compile 'com.android.support:cardview-v7:23.+'
compile 'com.android.support.constraint:constraint-layout:1.0.0-beta4'
compile 'de.hdodenhof:circleimageview:2.1.0'
}
appcompat-v7
та синхронізація перед тим, як знову додати її, допомогло. Давайте всі будемо підтримувати і сподіваємось на оновлення тут issueetracker.google.com/isissue/67790757