Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to specify admob library in build.gradle?

Can I specify the AdMob library in the build.gradle in Android Studio to avoid having the AdMob jar locally?

I've tried

dependencies {
    compile 'com.google.ads:6.2.1+'
}

but it doesn't work. Am I missing something?

like image 210
Alexander Kulyakhtin Avatar asked Nov 28 '22 08:11

Alexander Kulyakhtin


1 Answers

Better if you use following:

compile 'com.google.android.gms:play-services-ads:7.5.0'

Because, it will reduce your apk file size.

like image 131
farhad rubel Avatar answered Dec 04 '22 15:12

farhad rubel