在使用百度地图SDK后生成apk的时候出现以下错误:
Error:warning: Ignoring InnerClasses attribute for an anonymous inner class
Error:(com.baidu.location.b) that doesn't come with an ...
这是由于百度地图已经混淆过再次混淆造成的。虽然有错误信息,但是不会影响编译过程及软件的使用,解决办法:在proguard-rules.pro文件中添加
-keepattributes EnclosingMethod
备注1:如果在build.gradle中不添加 minifyEnabled false 默认是开启混淆的(as 2.1.3),不开启混淆则不会出现该错误。
备注2:备注1有问题,与 productFlavors 有关,待观测。