Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created April 19, 2018 14:28
Show Gist options
  • Save juucustodio/ba1855b428e525e7a36759046b583476 to your computer and use it in GitHub Desktop.
Save juucustodio/ba1855b428e525e7a36759046b583476 to your computer and use it in GitHub Desktop.
Example how to monetize yours Xamarin.Forms applications with AdMob by Google - http://julianocustodio.com/admob-xamarin-forms
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.companyname.DemoAdMob" android:installLocation="auto">
<uses-sdk android:minSdkVersion="15" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<application android:label="DemoAdMob.Android"></application>
<activity android:name="com.google.android.gms.ads.AdActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" android:theme="@android:style/Theme.Translucent" />
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment