1. 程式人生 > >android打包時報錯Proguard returned with error code 1. See console

android打包時報錯Proguard returned with error code 1. See console

今天打包的時候遇到下面的異常:

Proguard returned with error code 1. See console
proguard.ParseException: Unknown option 'the' in line 4 of file 'C:\Documents and Settings\Administrator\Local Settings\Temp\android_866451946778512779.pro',
included from argument number 2
at proguard.ConfigurationParser.parse(ConfigurationParser.java:170)
at proguard.ProGuard.main(ProGuard.java:491)

之前打包一直是正常的,怎麼今天會出問題呢?網上說APK包存放的路徑不對,但自己一直是將打好的包放到桌面,怎麼現在會有問題?帶著疑問按照上面的提示開啟檔案,找到了問題所在。出錯的原因是新的SDK在打包時會自動混淆程式碼,然後再混淆的過程中出現問題。不是像網上說路徑之間有空格,而是在建立新的project的時候,project的名字中有空格,所以導致問題。project命名中間不能有空格,切記!切記!