그래서, 난 TRYING 일부 소프트웨어를 해제하지만 Proguard와 나에게 두통을주고있다.
proguard를 사용하여 내보내려고 할 때 경고가 많이 발생합니다. "참조 된 클래스를 찾을 수 없습니다"
예를 들면 다음과 같습니다.
[2011-08-07 17:44:37 - GAME] Warning: org.simpleframework.xml.stream.StreamReader: can't find referenced class javax.xml.stream.events.XMLEvent
[2011-08-07 17:44:37 - GAME] Warning: there were 52 unresolved references to classes or interfaces.
[2011-08-07 17:44:37 - GAME] You may need to specify additional library jars (using '-libraryjars'),
[2011-08-07 17:44:37 - GAME] or perhaps the '-dontskipnonpubliclibraryclasses' option.
[2011-08-07 17:44:37 - GAME] java.io.IOException: Please correct the above warnings first.
[
경고는 간단한 프레임 워크와 관련이있는 것으로 보이므로 proguard 구성 파일에서 다음을 추가했습니다.
-libraryjars pathtoprojecttolibs\simple-xml-2.4.jar
pathtoprojecttolibs
내 프로젝트에서 참조하는 jar의 경로는 어디에 있습니까 ?
이것은 아무런 차이가 없습니다.
간단한 프레임 워크가 javax를 참조하면 proguard에게 이것을 무시하도록 지시 할 수 있습니까 ??
어떤 아이디어?