Error:warning: Ignoring InnerCla

2017-11-16  本文已影响0人  Ready_I

不多说,先贴图


image.png

之前好多项目就是运行的时候报这种错误,但是能正常运行,也没去解决过,今天,运行一个项目,一直打不上包,就顺手查了查这个问题,
解决方式2步

1.build文件

defaultConfig {
multiDexEnabled true
}
dependencies { compile 'com.android.support:multidex:1.0.1' }

2.Application文件

@Override   
protected void attachBaseContext(Context base) {  
    super.attachBaseContext(base); MultiDex.install(this);  
} 

问题出现的原因: 工程中的方法数量超过安卓规定65536个方法数了

上一篇下一篇

猜你喜欢

热点阅读