Android Question Problem with Admob 2.0

astarte

Member
Licensed User
Longtime User
My B4A version is 3.82, I have in Tools->Configure paths the Android SDK level 16
My directory SDK : C:\Android\androidSdk\platforms\android-16\android.jar

In Project Attributes

#AdditionalRes: C:\Users\JOSE LUIS\AppData\Local\Android\android-sdk\extras\google\google_play_services\libproject\google-play-services_lib\res, com.google.android.gms

And i have in the AndroidManifest.xml from B4A:

AddManifestText(
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="16"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>

)

'AdMob
AddApplicationText(
<meta-data android:name="com.google.android.gms.version"
android:value="@@Integer/google_play_services_version"/>
<activity android:name="com.google.android.gms.version"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
)

SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")

And my problem is there are not ads ... show me the message this:

upload_2015-6-15_18-34-45-png.34919
 
Top