이전 Eclipse 프로젝트를 Android Studio로 가져 왔으며 SdkVersion 4를 지원하면서 컴파일 할 수 있도록 최선을 다하고 있습니다. .Android - 항목 검색 중 오류 발생 : 'android : WindowTitleBackground'와 일치하는 리소스가 없습니다.
build.gradle :
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion '21.0.0'
defaultConfig {
applicationId "com.name.name"
minSdkVersion 4
targetSdkVersion 21
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.android.support:support-v4:21.0.0'
}
오류 :
Information:Gradle tasks [:app:generateDebugSources, :app:generateDebugAndroidTestSources, :app:mockableAndroidJar, :app:prepareDebugUnitTestDependencies]
C:\Users\me\WORK\ORIGINAL\original_gradle_made\app\build\intermediates\res\merged\debug\values\values.xml
Error:(206) Error retrieving parent for item: No resource found that matches the given name 'android:WindowTitleBackground'.
Error:(206) Error retrieving parent for item: No resource found that matches the given name 'android:WindowTitleBackground'.
Error:Execution failed for task ':app:processDebugResources'.
> com.android.ide.common.process.ProcessException: Failed to execute aapt
누구나 내가 누락되었거나 변경해야 할 사항을 알고 있습니까?
** minSdkVersion 4 ** 해당 2017이 존재하는지 잘 모르겠습니까? 적어도 14 또는 15 분의 시청자를 너무 많이 타겟팅하고 있습니다. 왜 분을 4로 사용 하시겠습니까? @ 틀림없이 @@@ –