“Java.exe” exited with code 1 (Proguard issue)

后端 未结 4 1303
深忆病人
深忆病人 2020-12-06 21:21

I get the following error when I build my Xamarin.Android app in Release.

\"Java.exe\" exited with code 1

Here is the output...

<         


        
4条回答
  •  孤城傲影
    2020-12-06 21:54

    You can see the problem here:

    Caused by: java.io.IOException: Can't process class [java/nio/charset/CharsetDecoder.class] (Unsupported class version number [52.0] (maximum 51.0, Java 1.7))
    

    Solution: Change your Java target to 7 (1.7).

提交回复
热议问题