我正在使用android studio.I完成了这些步骤https://developers.google.com/admob/android/quick-start
添加了adobs后,我的应用程序大小增加了近5mb.it成为18mb后达到了13mb。
答案 0 :(得分:1)
使用
compile 'com.google.android.gms:play-services:7.5.0'
意味着您正在使用Google Play服务的所有功能,包括位置服务。如果您只需要特定的API,则应使用selective APIs。
如果是广告,您可以单独使用:
compile 'com.google.android.gms:play-services-ads:7.5.0'
答案 1 :(得分:0)
我建议您查看how to reduce app size increased after admob ads?
简单地说:图书馆有很多额外的东西。您需要使用ProGuard去除它。