आज के बाद से, Android Studio style.xml में AppCompat विषयों को नहीं ढूँढ सकता है, लेकिन उदाहरण के लिए कोड में AppCompatActivity को मान्यता नहीं मिलती है। मेरा Android स्टूडियो संस्करण 2.2.2 है, # AI-145.3360264 का निर्माण करें
मैंने पहले से ही नवीनतम बिल्ड टूल्स, संकलन एसडीके (25) संस्करण आदि में अपग्रेड करने की कोशिश की, लेकिन यह समस्या को ठीक नहीं करता था।
फिलहाल मैंने निम्नलिखित (sdk प्रबंधक से) स्थापित किया है:
- Android api: 19 और 23
- sdk प्लेटफ़ॉर्म टूल: 25.0.1
- एसडीके उपकरण: 25.2.3
- बिल्ड-टूल्स: 23.0.2 और 25.0.1
- समर्थन भंडार: 40
- गूगल रिपॉजिटरी: 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
जोड़ने से पहले हटाने और सिंक में फिर से मदद मिली। चलो यहाँ upetracker.google.com/issues/67790757