有我的编译时依赖
compile 'com.android.support:design:23.2.1'
compile 'com.android.support:cardview-v7:23.2.1'
compile 'com.android.support:recyclerview-v7:23.2.1'
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.journeyapps:zxing-android-embedded:3.0.3@aar'
compile 'com.google.zxing:core:3.2.0'
compile 'uk.co.chrisjenx:calligraphy:2.1.0'
compile 'com.android.support:support-v4:23.2.1'
compile 'com.github.paolorotolo:appintro:3.4.0'
compile "com.google.android.gms:play-services:8.4.0"
compile "com.quantumgraph.sdk:QG:1.1.11"
compile 'com.android.support:multidex:1.0.1'
答案 0 :(得分:1)
使用multidex项目这不是一个非常长的时间。一种可以加快速度的方法是只包括你需要的谷歌播放服务中的库,因为“com.google.android.gms:play-services:8.4.0”是一个庞大的库。此页面显示了如何执行此操作:
https://developers.google.com/android/guides/setup#add_google_play_services_to_your_project
请参阅“有选择地将API编译到您的可执行文件中”。
事实上,根据其他库的大小,您可能会发现只需使用您需要的google play services apis,您就不再需要启用multidex。