Error:(1) Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light.DarkActionBar'.
build.gradle (Module: app) 에서 dependencies 값에
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.0.0'
값 추가하면 정상 동작합니다.
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.0.0'
}
'개발 > Android' 카테고리의 다른 글
안드로이드 dpi hdpi Idpi 의 해상도별 Idpi , mdpi , hdpi , xhdpi 크기 및 비율 (0) | 2015.04.09 |
---|---|
안드로이드 해상도 이미지 자동 리시이징하기 (0) | 2015.04.09 |
안드로이드 스튜디오(Android Studio) Error:(46, 0) Gradle DSL method not found: 'runProguard()' (0) | 2015.04.07 |
안드로이드 국가별 언어코드 (0) | 2014.09.14 |
안드로이드 해상도별 아이콘 사이즈 변환 하기 (0) | 2014.09.12 |