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

Android Studio 컴파일 에러 질문드립니다

0 추천
현재 소스는 정상 동작하는데

컴파일 중에

Error:warning: Ignoring InnerClasses attribute for an anonymous inner class
Error:(it.sauronsoftware.ftp4j.FTPClient$1) that doesn't come with an
Error:associated EnclosingMethod attribute. This class was probably produced by a
Error:compiler that did not target the modern .class file format. The recommended
Error:solution is to recompile the class from source, using an up-to-date compiler
Error:and without specifying any "-target" type options. The consequence of ignoring
Error:this warning is that reflective operations on this class will incorrectly
Error:indicate that it is *not* an inner class.
Error:warning: Ignoring InnerClasses attribute for an anonymous inner class
Error:(it.sauronsoftware.ftp4j.FTPClient$2) that doesn't come with an
Error:associated EnclosingMethod attribute. This class was probably produced by a
Error:compiler that did not target the modern .class file format. The recommended
Error:solution is to recompile the class from source, using an up-to-date compiler
Error:and without specifying any "-target" type options. The consequence of ignoring
Error:this warning is that reflective operations on this class will incorrectly
Error:indicate that it is *not* an inner class.

해당 에러가 발생하고 있습니다.

ftp4j-1.7.2.jar는 현재 추가해놓은 상태입니다.

어떤게 문제일까요?
qweqweq (4,220 포인트) 님이 2017년 1월 4일 질문

1개의 답변

+1 추천
 
채택된 답변
흠.. FTP 클라이언트 개발하시는 군요..

com.github.asbachb:ftp4j:1.7.3 이 라이브러리 사용하세요..

그리고, 아시겠지만 세션을 열었으면 operation이 끝나면 바로 세션을 종료해야 합니다.
mcsong (44,040 포인트) 님이 2017년 1월 4일 답변
qweqweq님이 2017년 1월 5일 채택됨
정말로 감사합니다 해결했습니다
...