Kể từ hôm nay, Android Studio không thể tìm thấy các chủ đề AppCompat trong tệp style.xml, nhưng ví dụ AppCompatActivity trong mã được công nhận. Phiên bản Android Studio của tôi là 2.2.2, Build # AI-145.3360264
Tôi đã thử nâng cấp lên các công cụ xây dựng mới nhất, biên dịch phiên bản sdk (25), v.v. nhưng nó không khắc phục được vấn đề.
Hiện tại tôi đã cài đặt như sau (từ trình quản lý sdk):
- api android: 19 và 23
- công cụ nền tảng sdk: 25.0.1
- công cụ sdk: 25.2.3
- công cụ xây dựng: 23.0.2 và 25.0.1
- kho hỗ trợ: 40
- kho lưu trữ google: 39
và một vài thứ khác, không cần thiết phải liệt kê ở đây.
build.gradle của ứng dụng:
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
và đồng bộ hóa trước khi thêm nó một lần nữa giúp. Tất cả chúng ta hãy nâng cấp và hy vọng các bản cập nhật tại đâysuetracker.google.com/issues/67790757