Hello I am new to android dev and admob. I am trying to make a simple test app with a button, a couple pages and admob at the bottom. Everything works fine until I try imple
In Android Studio: 1. Paste the Google AdMob SDK into the libs folder for your project 2. Add an entry to dependencies section of your build.gradle for the project pointing at the jar. 3. Rebuild your project
dependencies {
...
compile files('libs/GoogleAdMobAdsSdk-6.4.1.jar', '... other entries...')
}
Note that compile files takes multiple jar entries. If you already have a compile files entry you can just add to it by separating entries with a comma.