
Thanks to bio1712, it now supports Interstitial ads.
For getting this to work you will need to add google-play-services_lib to your project, which I can show you how.
I added 6 functions to love.system:
Banners:
•love.system.createBanner("Banner ID", "orentation") where orentation can be "top" or "bottom".
•love.system.hideBanner() removes the banner from the screen.
•love.system.showBanner() makes the banner reappear.
Interstitials:
•love.system.createInterstitial("Interstitial ID") create the interstitial ad.
•love.system.isInterstitialLoaded() check whether there is an ad loaded and ready to be shown.
•love.system.showInterstitial() show the ad.
You can get a "Banner ID" or "Interstitial ID" on the Admob website, they look like this:
ca-app-pub-9796530573307706/1938301675.
Adding google-play-services_lib without an IDE
For adding google-play-services_lib to your project you will first need to download it from the android-sdk by going to the "Android Sdk Manager" on "extras" and checking on "Google Play Services" then you can find the library folder on android_sdk/extras/google/google_play_services/libproject/google-play-services_lib. Now you have to paste it next to the project folder and execute "android update project -p 'dir/to/google-play-services_lib' " and you're done!
Now you can have full control of admob on lua!
Here you can get the apk: Link
Here you can see all the changes to the original repository that I made here:
https://bitbucket.org/master_both/love- ... aster#diff
Thanks again to bio1712 for making this possible

If anyone finds a bug please let me know
