이전포스트

[Android] Android Project를 새로운 Workspace에 Import했을 때 발생하는 문제점 해결책.

freemmer 2011. 5. 24. 17:16
Desktop에서 Programming한 Android App Source를 압축해서 Notebook으로 옮기는 도중에 문제가 발생하였다.
별도의 Ext.Lib 들의 Path도 모두 맞춰준 상태였는데...



Android requires compiler compliance level 5.0. Please fix project properties. 

이런 메세지가...
단지 workspace만 새로 만들어서 넣었을 뿐인데 말이다. ㅡㅡa

해결책은 다음과 같다.
원문 URL ( http://kyleclegg.com/android-requires-compiler-compliance-level-5-0/ )

Problem #1:
Android requires .class compatibility set to 5.0. Please fix project properties.

Solution:
1. Fix project:
Package Explorer ->
Right click the project ->
“Android Tools” -> “Fix Project Properties”
2. Restart Eclipse:
“File” -> “Restart”

Fix Project Properties



Problem #2: The following error appears many times <= 위의 에러 메세지(내 경우)가 이 방법을 통해서 해결 되었다.
The method xyz() of type ABC must override a superclass method

Solution:
Package Explorer ->
Right click the project ->
“Properties” -> “Java Compiler” -> “Compiler Compliance Level” = 1.6

Fix Java Compiler Properties

Problem #3: The import android.net.http.AndroidHttpClient cannot be resolved

Solution:
Package Explorer ->
Right click the project ->
“Properties” -> “Android” -> “Project Build Target” = 2.3.3

Fix Build Target

 
보면 크게 3가지의 경우로 분류되는데..
이런게 포스팅 될 정도면 빈번하게 일어난다는 얘기겠지??


좀 더 쉽게 만들란 말이닷!!! 

반응형