Attempted to fix androids “ill-advised or mistaken usage of a core class” went bad

前端 未结 5 1686
我寻月下人不归
我寻月下人不归 2020-12-16 17:50

After trying to fix this on my own from what I have seen around the net I cannot still figure out what this means:

[2013-08-15 23:58:27 - StudioTab] Dx 
trou         


        
5条回答
  •  不知归路
    2020-12-16 18:39

    I fixed a similar problem by choosing an alternative set of the dependencies while migrating a project from Eclipse to Android Studio. Initially I used springframework.web and javax.xml.transform to make my code pass the build. But the app aborted immediately at runtime with "Ill-advised" error. Then I replaced those two dependencies with 'org.springframework.android:spring-android-rest-template:1.0.1.RELEASE', 'org.codehaus.jackson:jackson-mapper-asl:1.9.13' and 'org.codehaus.jackson:jackson-core-asl:1.9.13'. The problem solved.

提交回复
热议问题