모든 안드로이드 태그에서 알 수없는 속성 오류가 발생합니다.
레이아웃 XML에서 자동 제안이 모든 속성 (예 : layout_width, layout_height, orientation, orientation 및 기타 모든 Android 속성)을 표시하지 않습니다.
여기 스냅 샷이 있습니다
- 클린 빌드 및 재 구축
- .idea 파일 삭제
- 무효화 된 캐시 / 다시 시작 .. 옵션
- 절전 모드를 켭니다.
SDk가 최신 상태입니다.
앱 수준 Gridle에서
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.example.abhishek.ondemandservice"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
응용 프로그램 수준 Gride.
buildscript {
repositories {
maven { url "http://dl.bintray.com/populov/maven" }
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
maven { url "http://dl.bintray.com/populov/maven" }
jcenter()
mavenCentral()
}
}
classpath 'com.android.tools.build:gradle:2.0.0-beta2'