Error about sun/misc/BASE64Encoder on Eclipse

前端 未结 4 771
执笔经年
执笔经年 2020-12-19 13:30

when i run my app in mac, and show up this message Errors occurred during the build. Errors running builder \'Android Package Builder\' on project \'IMPEXP\'. sun/misc/BASE

4条回答
  •  萌比男神i
    2020-12-19 13:59

    The Android code you are using is trying to use the sun.misc.BASE64Encoder class.

    This deprecated class has been removed from Java 9 so this is not going to work.

    You will need to switch back to Java 8 or find an update to the Android code (if there is one).

提交回复
热议问题