Call requires API level 3 (current min is 1)
2013. 12. 27. 11:41ㆍPrograming/Debugging
말이 안되는 곳에서 Error이 계속 발생이 된다.
왜?? 머가 문제냐;;;;;; 봤더니;;;; 에러 메세지로 "Call requires API level 3 (current min is 1): new android.text.format.Time"을 표시해 주고 있었다.
문제는 바로 Manifest에 SDK Version이 기록되어 있지 않기 때문이다.
Menifest에 가서 아래와 같이 적어주면, 문제는 바로 수정이 된다.
<uses-sdk
android:maxSdkVersion="19"
android:minSdkVersion="10" />
'Programing > Debugging' 카테고리의 다른 글
Can't create handler inside thread that has not called Looper.prepare() (0) | 2014.05.04 |
---|---|
Replace "-" with an "en dash" character (–, &;#8211;) (0) | 2014.01.26 |
How to fix "[Accessibility] Missing content Description attribute on image" (0) | 2014.01.26 |
java.lang.RuntimeException - Attempted to access a cursor after it has been closed (0) | 2014.01.13 |
android.view.windowleaked (0) | 2014.01.10 |