마스터Q&A 안드로이드는 안드로이드 개발자들의 질문과 답변을 위한 지식 커뮤니티 사이트입니다. 안드로이드펍에서 운영하고 있습니다. [사용법, 운영진]

eclipse 프로젝트 import시 에러 질문드릴게요

0 추천

13년 9월 23일 

약 2주전에는 새 안드로이드프로젝트가 생성되지 않는 버그가있더니 이번에는 다른문젠데요  

sdk 홈피에서 adt_bundle을 다운받아 

이전에 썼던 프로젝트를 import 시키면 

프로젝트에 들어있는 모든코딩 내용이 사라집니다 (png파일, 메니피스트,xml등등) [백업안해두고 import했으면 몽땅 날릴뻔]

임포트전에 30mb였던 프로젝트폴더가 임포트후 7mb로 줄어있더군요 

내포된 eclipse로 새 프로젝트를 만들고 삭제한후 방금만든 프로젝트를 다시 import시켜도 내용이 사라지네요

 

내용이 사라짐에따라 이와같은 에러도 뜨구요 

[2013-09-23 00:57:39 - HelloWord] Project has no target set. Edit the project properties to set one.
[2013-09-23 00:57:40 - HelloWord] Project has no target set. Edit the project properties to set one.
[2013-09-23 00:57:47 - HelloWord] Parser exception for /HelloWord/AndroidManifest.xml: 예기치 않은 파일의 끝입니다.
[2013-09-23 00:57:48 - HelloWord] Parser exception for /HelloWord/AndroidManifest.xml: 예기치 않은 파일의 끝입니다.
[2013-09-23 00:59:13 - hello] Project has no target set. Edit the project properties to set one.
[2013-09-23 00:59:13 - hello] Project has no target set. Edit the project properties to set one.
[2013-09-23 00:59:13 - hello] Parser exception for /hello/AndroidManifest.xml: 예기치 않은 파일의 끝입니다.
[2013-09-23 00:59:14 - hello] Parser exception for /hello/AndroidManifest.xml: 예기치 않은 파일의 끝입니다.
 

이전에 사용했던 프로젝트들을 불러와서 작업을해야하는데 곤란합니다 

무슨문제이며 해결방법이 있나요? 

 

호시하 (230 포인트) 님이 2013년 9월 23일 질문

1개의 답변

0 추천

Project has no target set. Edit the project properties to set one.

 

project.properties 파일에서 target 설정이 있는지 확인해 보시기 바랍니다.

 

-----------------------------------------------------------

# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To customize properties used by the Ant build system edit
# "ant.properties", and override values to adapt the script to your
# project structure.
#
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
 
# Project target.
target=android-18
-----------------------------------------------------------
아나콘다v (4,670 포인트) 님이 2013년 9월 23일 답변
...