有句话说的好 “不管黑猫白猫,能捉老鼠的就是好猫”
解决65535 问题 ,其实在Google官方已经给出解决方案,[Building Apps with Over 65K Methods]
(https://developer.android.com/tools/building/multidex.html)
以下给出我自己的实现:
解决方案多种我只提出我自己的实现方式,能力有限不足之处还请大家多多谅解,给出意见和建议.
1. 在Module 的 build.gradle 中引用 compile 'com.android.support:multidex:1.0.3'
同时在 defaultConfig 中添加 multiDexEnabled true
2.新建自己的Application 类, 继承 MultiDexApplication
例如: DAPP extends MultiDexApplication
3.同步代码 查看自己的成果.
推荐个不错的插件: insight.io 谷歌浏览器 安装 查看 GitHub 上代码 会是这么的方便.
插件查看
网友评论