Language:
Java
Owner:
Contributors:
License:
Apache License 2.0
Description:
# Easy Ads

Easy way to show AdMob ads in Android.
##Usage
Add below line in app build.gradle
dependencies { compile 'com.iamhabib:easy-ads:1.0.1' }
##Code snippets
Show Banner, Native, Interstitial Ad by using those minimal code:
Banner
EasyAds.forBanner(this) .with((AdView)findViewById(R.id.adView)) .testDevice("FBDDE95B4A3E5E14648320330112B091") .show();
Native
EasyAds.forNative(this) .with((NativeExpressAdView)findViewById(R.id.nativeAds)) .show();
Interstitial
EasyAds.forInterstitial(this) .delay(30000) .listener(new EasyAds.Interstitial.AdsListener(){ @Override public void onAdLoaded() { super.onAdLoaded(); Toast.makeText(getApplicationContext(), "OK", Toast.LENGTH_SHORT).show(); } }) .adUnitId(getString(R.string.interstitial_ad_unit_id)) .testDevice("FBDDE95B4A3E5E14648320330112B091") .show();
License
Copyright 2016 Habibur Rahman
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0