Implement google admob video reward in aide ide

Tutorial on how to implement google admob video rewards to your android project using aid ide in android. Rewarded video ads are full-screen video ads that users have the option of watching in full in exchange for in-app rewards. Now let start, first in your "build.gradle" add this code: 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|uiMode|screenSize|smallestScreenSize" android:theme="@android:style/The...