混淆打包的Proguard returned with error code 1. See console错误

如果你使用Android的混淆打包时遇到以下类似错误:


Proguard returned with error code 1. See console
[2011-12-01 14:03:09 - ] proguard.ParseException: Expecting class path separator ';' before 'Analytics' in line 1 of file 'C:\Users\cninbexi\AppData\Local\Temp\android_841900648242013690.pro',
[2011-12-01 14:03:09 - xxx]   included from argument number 2
[2011-12-01 14:03:09 - xxx]     at proguard.ConfigurationParser.parseClassPathArgument(ConfigurationParser.java:295)
[2011-12-01 14:03:09 - xxx]     at proguard.ConfigurationParser.parse(ConfigurationParser.java:109)
[2011-12-01 14:03:09 - xxx]     at proguard.ProGuard.main(ProGuard.java:491)


打开对应的文件C:\Users\cninbexi\AppData\Local\Temp\android_841900648242013690.pro可以看到是因为第三方库的路径包含空白字符,把路径的空白字符去掉即可解决此问题。

你可能感兴趣的:(Android,应用开发,android,class,path,file,c)