Implement google admob banner ads in aide ide

Tutorial on how to implement google admob banners ads into your android apps using aide ide. Banner ads occupy a spot within an app's layout, either at the top or bottom of the device screen. They stay on screen while users are interacting with the app, and can refresh automatically after a certain period of time. First in your "build.gradle" add this lib. compile 'com.google.android.gms:play-services-ads:+' Next goto your "AndroidManifest.xml" and add this following codes: <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /> <activity android:name="com.google.android.gms.ads.AdActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenLayout...