I think my AdMobPlugin.java is ready but I don't know how to compile it and I can't find its project because I don't know where the android examples repository is. Can you help me? thanks
Il giorno martedì 18 febbraio 2014 19:02:37 UTC+1, Eric Leichtenschlag ha scritto:
Thanks!But I have a problem, I ave both two google play services plugins: the GPG one for the game services and yours for admob. I already have a res folder under /Plugins/Android/ with a google-play-services.jar at the same levesl.If I delete the double references it doesn't compile.Error building Player: CommandInvokationFailure: Failed to re-package resources. See the Console for details.C:\adt-bundle\sdk\build-tools\android-4.4\aapt.exe package --auto-add-overlay -v -f -m -J gen -M AndroidManifest.xml -S "res" -I "C:/adt-bundle/sdk/platforms/android-19\android.jar" -F bin/resources.ap_ --extra-packages com.google.android.gms -S "C:\Users\Giulio\Unity Projects\game\Temp\StagingArea\android-libraries\google-play-services_lib\res"stderr[res\values\maps_attrs.xml:5: error: Attribute "mapType" has already been definedres\values\maps_attrs.xml:12: error: Attribute "cameraBearing" has already been definedres\values\maps_attrs.xml:13: error: Attribute "cameraTargetLat" has already been definedres\values\maps_attrs.xml:14: error: Attribute "cameraTargetLng" has already been definedres\values\maps_attrs.xml:15: error: Attribute "cameraTilt" has already been definedres\values\maps_attrs.xml:16: error: Attribute "cameraZoom" has already been definedres\values\maps_attrs.xml:17: error: Attribute "uiCompass" has already been definedres\values\maps_attrs.xml:18: error: Attribute "uiRotateGestures" has already been definedres\values\maps_attrs.xml:19: error: Attribute "uiScrollGestures" has already been definedres\values\maps_attrs.xml:20: error: Attribute "uiTiltGestures" has already been definedres\values\maps_attrs.xml:21: error: Attribute "uiZoomControls" has already been definedres\values\maps_attrs.xml:22: error: Attribute "uiZoomGestures" has already been definedres\values\maps_attrs.xml:23: error: Attribute "useViewLifecycle" has already been definedres\values\maps_attrs.xml:24: error: Attribute "zOrderOnTop" has already been defined]
Il giorno giovedì 20 febbraio 2014 19:22:57 UTC+1, Kai Gorschlüter ha scritto:Great man! Works like a charm! Thx a ton!
--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/0t-5rHrHqlw/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
oogleMobileAdsPlugin.CreateBannerView("ca-app-pub-9380760713574559/3453176828",
GoogleMobileAdsPlugin.AdSize.SmartBanner,
true);
you have to pass the ad unit id you can create one for your app from the admob dashboard
I use also the google play game services plugin and it.work fine together
by the way your plugin now works using only thethe manifest, the plugin .jar and the google play services .jar in Assets/Android but I can't use the other plugin together, it either causes problems when packing the resources or doesn't work at all.
I use also the google play game services plugin and it.work fine together
Il 21/feb/2014 00:39 "Giulio Muntoni" <gmud...@gmail.com> ha scritto:
by the way your plugin now works using only thethe manifest, the plugin .jar and the google play services .jar in Assets/Android but I can't use the other plugin together, it either causes problems when packing the resources or doesn't work at all.--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/0t-5rHrHqlw/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
You received this message because you are subscribed to the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-admob-ads...@googlegroups.com.
which one? are you targeting api19? thanks
Il giorno venerdì 21 febbraio 2014 00:58:43 UTC+1, Dario Lipari ha scritto:
I use also the google play game services plugin and it.work fine together
Il 21/feb/2014 00:39 "Giulio Muntoni" <gmud...@gmail.com> ha scritto:
by the way your plugin now works using only thethe manifest, the plugin .jar and the google play services .jar in Assets/Android but I can't use the other plugin together, it either causes problems when packing the resources or doesn't work at all.--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/0t-5rHrHqlw/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
On iOS in my case it shows only a banner on the top left whether I create a smart banner on the bottom or not
To unsubscribe from this group and stop receiving emails from it, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.unity3d.player"
android:installLocation="preferExternal"
android:theme="@android:style/Theme.NoTitleBar"
android:versionCode="1"
android:versionName="1.0">
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true"/>
<application
android:icon="@drawable/app_icon"
android:label="@string/app_name"
android:debuggable="true">
<!-- FB Plugin -->
<activity android:name="com.facebook.unity.FBUnityPlayerActivity"
android:launchMode="singleTask"
android:label="@string/app_name"
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<!-- Admob Plugin value="true" -->
<meta-data android:name="unityplayer.ForwardNativeEventsToDalvik" android:value="true" />
</activity>
<!-- Common Plugin -->
<activity android:name="com.unity3d.player.UnityPlayerNativeActivity"
android:launchMode="singleTask"
android:label="@string/app_name"
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen">
</activity>
<activity android:name="com.unity3d.player.VideoPlayer"
android:label="@string/app_name"
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen" >
</activity>
<!-- Google Mobile Ads Activity -->
<activity android:name="com.google.android.gms.ads.AdActivity"
android:label="@string/app_name"
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen">
</activity>
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version"/>
<activity android:name="com.unity3d.player.UnityPlayerProxyActivity"
android:label="@string/app_name"
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen" >
</activity>
<!-- FB Plugin -->
<activity android:name="com.unity3d.player.UnityPlayerActivity"
android:launchMode="singleTask"
android:label="@string/app_name"
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen">
</activity>
<!-- FB Plugin -->
<activity android:name="com.facebook.LoginActivity"
android:configChanges="keyboardHidden|orientation">
</activity>
<!-- FB Plugin -->
<meta-data android:name="com.facebook.sdk.ApplicationId" android:value="\ 1399302573663486" />
</application>
<!-- permission -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</manifest>
03-14 19:01:38.560 25375-25393/com.murner I/Unity﹕ Registering for AdMob Events
UnityEngine.Debug:Internal_Log(Int32, String, Object)
UnityEngine.Debug:Log(Object)
UnityEngine.MonoBehaviour:print(Object)
GoogleMobileAdsDemoScript:OnEnable() (at C:\Users\Mark\GitHub\Monkey-Game\Assets\Plugins\GoogleMobileAdsPlugin\GoogleMobileAdsDemoScript.cs:20)
(Filename: C Line: 0)
03-14 19:01:38.650 25375-25393/com.murner D/Unity﹕ Sensor : Accelerometer ( 1) ; 0.000599 / 0.01s ; K330 3-axis Accelerometer / STMicroelectronics
03-14 19:01:38.650 25375-25393/com.murner I/Unity﹕ Started
UnityEngine.Debug:Internal_Log(Int32, String, Object)
UnityEngine.Debug:Log(Object)
UnityEngine.MonoBehaviour:print(Object)
GoogleMobileAdsDemoScript:Start() (at C:\Users\Mark\GitHub\Monkey-Game\Assets\Plugins\GoogleMobileAdsPlugin\GoogleMobileAdsDemoScript.cs:8)
(Filename: C Line: 0)
03-14 19:01:38.700 25375-25393/com.murner I/Unity﹕ Created Banner View
UnityEngine.Debug:Internal_Log(Int32, String, Object)
UnityEngine.Debug:Log(Object)
UnityEngine.MonoBehaviour:print(Object)
GoogleMobileAdsDemoScript:Start() (at C:\Users\Mark\GitHub\Monkey-Game\Assets\Plugins\GoogleMobileAdsPlugin\GoogleMobileAdsDemoScript.cs:12)
(Filename: C Line: 0)
03-14 19:01:38.700 25375-25393/com.murner I/Unity﹕ Requested Banner Ad
UnityEngine.Debug:Internal_Log(Int32, String, Object)
UnityEngine.Debug:Log(Object)
UnityEngine.MonoBehaviour:print(Object)
GoogleMobileAdsDemoScript:Start() (at C:\Users\Mark\GitHub\Monkey-Game\Assets\Plugins\GoogleMobileAdsPlugin\GoogleMobileAdsDemoScript.cs:14)
(Filename: C Line: 0)
03-14 19:01:39.110 25375-25375/com.murner D/dalvikvm﹕ DexOpt: --- BEGIN 'ads-1749486023.jar' (bootstrap=0) ---
03-14 19:01:39.220 25375-25375/com.murner D/dalvikvm﹕ DexOpt: --- END 'ads-1749486023.jar' (success) ---
03-14 19:01:39.220 25375-25375/com.murner D/dalvikvm﹕ DEX prep '/data/data/com.murner/cache/ads-1749486023.jar': unzip in 0ms, rewrite 118ms
03-14 19:01:39.250 25375-25375/com.murner I/Ads﹕ Use AdRequest.Builder.addTestDevice("C574F37D995C4828CF10F92378CC62C8") to get test ads on this device.
03-14 19:01:39.270 25375-25375/com.murner I/Ads﹕ Starting ad request.
03-14 19:01:39.310 25375-25375/com.murner I/webclipboard﹕ clipservice: android.sec.clipboard.ClipboardExManager@42da0838
03-14 19:01:39.360 25375-25375/com.murner E/webview﹕ registerForStylusPenEvent onAttachedToWindow
03-14 19:01:39.360 25375-25375/com.murner E/webview﹕ registerForStylusPenEvent START
03-14 19:01:39.360 25375-25375/com.murner E/webview﹕ registerForStylusPenEvent END
03-14 19:01:39.390 25375-25375/com.murner D/WebView﹕ onSizeChanged - w:1080 h:150
03-14 19:01:39.400 25375-25483/com.murner E/GooglePlayServicesUtil﹕ The Google Play services resources were not found. Check your project configuration to ensure that the resources are included.
03-14 19:01:39.410 25375-25477/com.murner V/webkit﹕ BrowserFrame constructor: this=Handler (android.webkit.BrowserFrame) {42d9fac8}
03-14 19:01:39.471 25375-25483/com.murner E/GooglePlayServicesUtil﹕ The Google Play services resources were not found. Check your project configuration to ensure that the resources are included.
03-14 19:01:39.471 25375-25382/com.murner I/dalvikvm﹕ Total arena pages for JIT: 11
03-14 19:01:39.471 25375-25382/com.murner I/dalvikvm﹕ Total arena pages for JIT: 12
03-14 19:01:39.471 25375-25382/com.murner I/dalvikvm﹕ Total arena pages for JIT: 13
03-14 19:01:39.471 25375-25483/com.murner E/GooglePlayServicesUtil﹕ The Google Play services resources were not found. Check your project configuration to ensure that the resources are included.
03-14 19:01:56.847 25375-25375/com.murner I/Unity﹕ onPause
03-14 19:01:56.867 25375-25393/com.murner D/Unity﹕ Sensor : Accelerometer ( 1) ; 0.000599 / 0.01s ; K330 3-axis Accelerometer / STMicroelectronics
03-14 19:02:39.479 25375-25483/com.murner W/Ads﹕ Timed out waiting for ad response.03-14 19:02:39.479 25375-25477/com.murner E/SQLiteLog﹕ (14) cannot open file at line 32512 of [00bb9c9ce4]03-14 19:02:39.479 25375-25477/com.murner E/SQLiteLog﹕ (14) os_unix.c:32512: (2) open(/NotificationPermissions.db) -03-14 19:02:39.479 25375-25477/com.murner D/WebKit﹕ ERROR:03-14 19:02:39.479 25375-25477/com.murner D/WebKit﹕ SQLite database failed to load from /NotificationPermissions.dbCause - unable to open database file03-14 19:02:39.479 25375-25477/com.murner D/WebKit﹕ [ 03-14 19:02:39.479 25375:25477 D/WebKit ]external/webkit/Source/WebCore/platform/sql/SQLiteDatabase.cpp(71) : bool WebCore::SQLiteDatabase::open(const WTF::String&, bool)03-14 19:02:39.479 25375-25375/com.murner I/Ads﹕ Scheduling ad refresh 60000 milliseconds from now.03-14 19:02:39.479 25375-25375/com.murner W/Ads﹕ Failed to load ad: 203-14 19:03:39.498 25375-25375/com.murner I/Ads﹕ Starting ad request.03-14 19:03:39.508 25375-25375/com.murner I/webclipboard﹕ clipservice: android.sec.clipboard.ClipboardExManager@42da083803-14 19:03:39.518 25375-25477/com.murner V/webkit﹕ BrowserFrame constructor: this=Handler (android.webkit.BrowserFrame) {42e90da8}03-14 19:03:39.568 25375-25375/com.murner E/webview﹕ registerForStylusPenEvent onAttachedToWindow03-14 19:03:39.568 25375-25375/com.murner E/webview﹕ registerForStylusPenEvent START03-14 19:03:39.568 25375-25375/com.murner E/webview﹕ registerForStylusPenEvent END03-14 19:03:39.598 25375-25483/com.murner E/GooglePlayServicesUtil﹕ The Google Play services resources were not found. Check your project configuration to ensure that the resources are included.03-14 19:03:39.688 25375-25483/com.murner E/GooglePlayServicesUtil﹕ The Google Play services resources were not found. Check your project configuration to ensure that the resources are included.03-14 19:03:39.708 25375-25483/com.murner E/GooglePlayServicesUtil﹕ The Google Play services resources were not found. Check your project configuration to ensure that the resources are included.03-14 19:04:39.696 25375-25483/com.murner W/Ads﹕ Timed out waiting for ad response.03-14 19:04:39.706 25375-25477/com.murner E/SQLiteLog﹕ (14) cannot open file at line 32512 of [00bb9c9ce4]03-14 19:04:39.706 25375-25477/com.murner E/SQLiteLog﹕ (14) os_unix.c:32512: (2) open(/NotificationPermissions.db) -03-14 19:04:39.706 25375-25477/com.murner D/WebKit﹕ ERROR:03-14 19:04:39.706 25375-25477/com.murner D/WebKit﹕ SQLite database failed to load from /NotificationPermissions.dbCause - unable to open database file03-14 19:04:39.706 25375-25477/com.murner D/WebKit﹕ [ 03-14 19:04:39.706 25375:25477 D/WebKit ]external/webkit/Source/WebCore/platform/sql/SQLiteDatabase.cpp(71) : bool WebCore::SQLiteDatabase::open(const WTF::String&, bool)03-14 19:04:39.716 25375-25375/com.murner I/Ads﹕ Scheduling ad refresh 60000 milliseconds from now.03-14 19:04:39.716 25375-25375/com.murner W/Ads﹕ Failed to load ad: 203-14 19:05:39.775 25375-25375/com.murner I/Ads﹕ Starting ad request.03-14 19:05:39.805 25375-25375/com.murner D/WebView﹕ loadUrlImpl: called03-14 19:05:39.805 25375-25477/com.murner D/webcore﹕ CORE loadUrl: called03-14 19:05:39.805 25375-25477/com.murner D/webkit﹕ Firewall not null03-14 19:05:39.805 25375-25477/com.murner D/webkit﹕ euler: isUrlBlocked = false03-14 19:05:39.885 25375-25477/com.murner I/GATE﹕ <GATE-M>DEV_ACTION_COMPLETED</GATE-M>03-14 19:05:39.895 25375-25483/com.murner E/GooglePlayServicesUtil﹕ The Google Play services resources were not found. Check your project configuration to ensure that the resources are included.03-14 19:05:39.985 25375-25483/com.murner E/GooglePlayServicesUtil﹕ The Google Play services resources were not found. Check your project configuration to ensure that the resources are included.03-14 19:05:40.005 25375-25483/com.murner E/GooglePlayServicesUtil﹕ The Google Play services resources were not found. Check your project configuration to ensure that the resources are included.
...03-14 19:01:39.400 25375-25483<span style="color: #660
package="com.example.admobtest"The Google Play services resources were not found. Check your project configuration to ensure that the resources are included.
Use AdRequest.Builder.addTestDevice(...) to get test ads on this device.Actually one more thing. For the iOS ads, I set the position to false so that the ads will go to the bottom, but they stay at the top. How can I fix this?
--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/0t-5rHrHqlw/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/0t-5rHrHqlw/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Mohsin,I do plan on adding interstitial support, but I haven't had time to do it yet. In the meantime, one of your fellow AdMob developers created his own version of an AdMob Unity plugin that he says supports interstitials. I haven't tried it myself, but you could check it out if you want this feature now.
Thanks,
Eric
On Friday, March 28, 2014 11:20:05 AM UTC-7, mohsin khan wrote:Forgot to say that, i'm looking for Admob Interstitial & Banner Ads Unity plugin for Android.
On Friday, March 28, 2014 11:15:42 PM UTC+5, mohsin khan wrote:Hey Eric,I'm using Unity 4.3f and want to integrate Admob Interstitial Ads. I seen your updated new Unity Plugin, but it don't show Interstitial ads (looks like it is made just for banner ads).How i can show Interstitial Ads in my Unity game?Also, if i use any other Admob Unity plugin for showing Interstitial Ads, then ads displayed after a long time and mostly never displayed. Also, consumes much resources.So, it will be better if Google provide an Interstitial & Banner Ad plugin of Admob itself, means you...!!! :)ThanksMohsin
On Thursday, February 20, 2014 11:04:18 PM UTC+5, Eric Leichtenschlag wrote:I just pushed out a Google Play services plugin that you can find at https://github.com/googleads/googleads-mobile-plugins/tree/master/unity/android. Let me know if this solves your problems.@Giullo, we moved our samples from code.google.com to GitHub. The project that you're probably referring to with AdMobPlugin.java was the library project the library project at https://github.com/googleads/googleads-mobile-plugins/tree/master/unity/android-legacy/plugin-library. Now that the Google Play services version is pushed out, you may want to compare to the java file from the project in the first link above and see how yours compares.Cheers,
Eric
--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/0t-5rHrHqlw/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Enter code here...<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="preferExternal" package="com.example.admobtest" android:versionName="1.0" android:versionCode="1">
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" android:anyDensity="true" />
<!-- Google Mobile Ads Permissions -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application android:icon="@drawable/app_icon" android:label="@string/app_name" android:debuggable="false">
<!-- meta-data tag for Google Play services -->
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version"/>
<activity android:name="com.unity3d.player.UnityPlayerProxyActivity" android:label="@string/app_name" android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen" >
<meta-data android:name="unityplayer.ForwardNativeEventsToDalvik" android:value="true" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.unity3d.player.UnityPlayerActivity" android:label="@string/app_name" android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen" >
</activity>
<activity android:name="com.unity3d.player.UnityPlayerNativeActivity" android:label="@string/app_name" android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen" >
<meta-data android:name="unityplayer.ForwardNativeEventsToDalvik" android:value="true" />
<meta-data android:name="android.app.lib_name" android:value="unity" />
</activity>
<activity android:name="com.unity3d.player.VideoPlayer" android:label="@string/app_name" android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen" >
</activity>
<!-- Google Mobile Ads Activity -->
<activity android:name="com.google.android.gms.ads.AdActivity"
android:label="@string/app_name"
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen">
</activity>
</application>
<uses-feature android:glEsVersion="0x00020000" />
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="19" />
</manifest>Enter code here...<?xml version="1.0" encoding="utf-8"?>
<!-- This file was automatically generated by the Google Play Games plugin for Unity
Do not edit. -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.example.games.mainlibproj"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="19" />
<application>
<meta-data android:name="com.google.android.gms.games.APP_ID"
android:value="\ 565680008778" />
<meta-data android:name="com.google.android.gms.appstate.APP_ID"
android:value="\ 565680008778" />
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity android:name="com.google.example.games.pluginsupport.SignInHelperActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" />
<activity android:name="com.google.example.games.pluginsupport.SelectOpponentsHelperActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" />
<activity android:name="com.google.example.games.pluginsupport.InvitationInboxHelperActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" />
</application>
</manifest>
C:\Android SDK\sdk\platform-tools>adb logcat -s Unity Ads
--------- beginning of /dev/log/main
--------- beginning of /dev/log/system
I/Ads ( 1425): Starting ad request.
E/Ads ( 1425): JS: Uncaught SyntaxError: Unexpected string (http://googleads
.g.doubleclick.net/mads/static/formats/templates.js:14)
E/Ads ( 1425): JS: Uncaught ReferenceError: renderAd is not defined (http://
googleads.g.doubleclick.net/mads/gma:1)
E/Ads ( 1425): JS: Uncaught ReferenceError: onLoad is not defined (http://go
ogleads.g.doubleclick.net/mads/gma:1)
W/Ads ( 1425): An ad refresh is already scheduled.
I/Ads ( 1425): Ad finished loading.
I/Unity ( 1425): HandleAdLoaded event received.
I/Unity ( 1425):
I/Unity ( 1425): (Filename: ./artifacts/AndroidManagedGenerated/UnityEngineDeb
ug.cpp Line: 53)
I/Unity ( 1425):
Awesome Eric! Updating and Integrating it into my current project was easy. I've verified it works on Android, will do ios tomorrow.
Thanks!