NativeAdExpress Failed to load

621 views
Skip to first unread message

Galal Basha

unread,
Aug 21, 2017, 4:02:53 PM8/21/17
to Google Mobile Ads SDK Developers
hi

i'm trying to integrate google admob in my android game i tried the interstitial ad and it works perfect.
but whe im trying to load nativeAd it failed to load with this in log:

Ads: Received error HTTP response code: 403
Ads: There was a problem getting an ad response. ErrorCode: 0
Ads: Failed to load ad: 0

and i added test device correctly and it logs:

Ads: This request is sent from a test device.


my code:

protected void onStart() {
super.onStart();
loadAds();
}

public void loadAds(){
adView = findViewById(R.id.adView);
adView.setVideoOptions(new VideoOptions.Builder()
.setStartMuted(true)
.build());
mVideoController = adView.getVideoController();
mVideoController.setVideoLifecycleCallbacks(new VideoController.VideoLifecycleCallbacks() {
@Override
public void onVideoEnd() {
Log.d("NativeVideo", "Video playback is finished.");
super.onVideoEnd();
}
});
AdRequest request = new AdRequest.Builder().addTestDevice(AdRequest.DEVICE_ID_EMULATOR).addTestDevice("my_device").build();
adView.setAdListener(new AdListener() {
@Override
public void onAdLoaded() {
nativeAdContainer.setVisibility(View.VISIBLE);
if (mVideoController.hasVideoContent()) {
Log.d("NativeAd", "Received an ad that contains a video asset.");
} else {
Log.d("NativeAd", "Received an ad that does not contain a video asset.");
}
}

@Override
public void onAdClosed() {
super.onAdClosed();
}

@Override
public void onAdFailedToLoad(int i) {
super.onAdFailedToLoad(i);
Log.v("NativeAd", "Failed to load " + String.valueOf(i));
}

@Override
public void onAdLeftApplication() {
super.onAdLeftApplication();
}

@Override
public void onAdOpened() {
super.onAdOpened();
}

@Override
public void onAdClicked() {
super.onAdClicked();
}

@Override
public void onAdImpression() {
super.onAdImpression();
}
});
adView.loadAd(request);
}


<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layoutDirection="ltr">



<FrameLayout
android:id="@+id/fragmentHolder"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toTopOf="@+id/native_ad_parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent">

</FrameLayout>

<LinearLayout
android:id="@+id/native_ad_parent"
android:layout_width="0dp"
android:gravity="center"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent">

<com.google.android.gms.ads.NativeExpressAdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="ca-app-pub-3875857125716420/7548265614"
ads:adSize="FULL_WIDTHx80">
</com.google.android.gms.ads.NativeExpressAdView>

</LinearLayout>

</android.support.constraint.ConstraintLayout>

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:26.0.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.google.firebase:firebase-ads:11.2.0'
}
apply plugin: 'com.google.gms.google-services'

in Manifest:
<meta-data android:name="com.google.android.gms.games.APP_ID"
android:value="@string/app_id" />

<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version"/>

and i added the latest json file and it's the second day from creating the ad Unit on my account the interstitial Ad works instantly when i create it but the native till now isn't loaded

please help
thanks for advanced reply


Message has been deleted

Galal Basha

unread,
Aug 21, 2017, 4:05:29 PM8/21/17
to Google Mobile Ads SDK Developers
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.google.gms:google-services:3.1.0'
}

Galal Basha

unread,
Aug 21, 2017, 4:10:33 PM8/21/17
to Google Mobile Ads SDK Developers
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

//..
MobileAds.initialize(this, "My_App_ID");
..//
}

Bharani Cherukuri (Mobile Ads SDK Team)

unread,
Aug 21, 2017, 8:31:28 PM8/21/17
to Google Mobile Ads SDK Developers
Hello, 

Thank you for contacting us. Based on the code snippets, your code implementation looks fine except for the AdSize. I was able to load ads with your Ad Unit ID using our sample apps by adjusting the AdSize. FULL_WIDTH indicates the entire width of the device screen. Can you make sure to adjust the AdSize on your Ad Unit ID? You can also refer to this documentation to chose the appropriate AdSize. Let me know if you continue to have an issue with this and I'll be happy to assist you.

Regards,
Bharani Cherukuri
Mobile Ads SDK Team.

Galal Basha

unread,
Aug 21, 2017, 9:32:20 PM8/21/17
to Google Mobile Ads SDK Developers
Hi,

Thank you for your reply.
I try to change the size as 280x80 but the same error Failed to load :0
but when i use the Test unit id 
Native Express(Small template): ca-app-pub-3940256099942544/2793859312
it load perfectly even with (FULL_WIDTHx80) *for my device size* 
and i try to load it on the emulator it failed to load with the same error and the testAd also loaded on it.

Bharani Cherukuri (Mobile Ads SDK Team)

unread,
Aug 22, 2017, 3:35:25 PM8/22/17
to Google Mobile Ads SDK Developers
Hi there,

Thank you for providing the details. It looks like a device specific issue because I was able to load ads on two different Android devices. I was able to load ads by setting the AdSize: 288x100 with your Ad Unit ID. Could you specify the device/environment used for testing, so I can assist you further?

Regards,
Bharani Cherukuri
Mobile Ads SDK Team.

On Monday, August 21, 2017 at 4:02:53 PM UTC-4, Galal Basha wrote:

Galal Basha

unread,
Aug 22, 2017, 3:44:01 PM8/22/17
to Google Mobile Ads SDK Developers
Htc one A9 with stock android 7 (sdk 24)
and emulator from android studio nexus 5x with android O (sdk 26)
Message has been deleted
Message has been deleted
Message has been deleted
Message has been deleted

Bharani Cherukuri (Mobile Ads SDK Team)

unread,
Aug 22, 2017, 5:15:05 PM8/22/17
to Google Mobile Ads SDK Developers
Hello, 

Thank you for the details. I was able to load ads for both the devices by using a small template AdSize (280x80) with your Ad Unit ID on an emulator. Can you make these changes and then try to load the ads again? If that doesn't work, could you provide us the complete device logs and a sample project of your implementation so we can take a look?

Regards,
Bharani Cherukuri
Mobile Ads SDK Team.

On Monday, August 21, 2017 at 4:02:53 PM UTC-4, Galal Basha wrote:
Message has been deleted

Galal Basha

unread,
Aug 22, 2017, 5:20:37 PM8/22/17
to Google Mobile Ads SDK Developers
this Google example project from github i change my unit id and package name and add the json file and the same error 

AndroidManifest.xml
activity_main.xml
strings.xml
MainActivity.java

Galal Basha

unread,
Aug 22, 2017, 7:03:54 PM8/22/17
to Google Mobile Ads SDK Developers
Here is a full log of the emulator 

08-23 01:01:44.250 1526-1536/? I/ActivityManager: Force stopping com.somago.brainoperator appid=10086 user=0: from pid 22403
                                                  
                                                  --------- beginning of main
08-23 01:01:44.254 1526-1539/? E/memtrack: Couldn't load memtrack module
08-23 01:01:44.254 1526-1539/? W/android.os.Debug: failed to get memory consumption info: -1
08-23 01:01:44.261 1739-1739/? D/CarrierSvcBindHelper: No carrier app for: 0
08-23 01:01:44.272 1526-1539/? E/memtrack: Couldn't load memtrack module
08-23 01:01:44.272 1526-1539/? W/android.os.Debug: failed to get memory consumption info: -1
08-23 01:01:44.337 1526-2577/? I/ActivityManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 cmp=com.somago.brainoperator/.StartActivity} from uid 2000
08-23 01:01:44.342 1526-2577/? V/WindowManager: setAppStartingWindow: token=Token{fa5a764 ActivityRecord{8bf7cf7 u0 com.somago.brainoperator/.StartActivity t53}} pkg=com.somago.brainoperator transferFrom=null newTask=true taskSwitch=true processRunning=false allowTaskSnapshot=true
08-23 01:01:44.342 1526-2577/? V/WindowManager: Checking theme of starting window: 0x7f090039
08-23 01:01:44.342 1526-2577/? V/WindowManager: Translucent=false Floating=false ShowWallpaper=false
08-23 01:01:44.342 1526-2577/? V/WindowManager: Creating SplashScreenStartingData
08-23 01:01:44.342 1526-2577/? V/WindowManager: Enqueueing ADD_STARTING
08-23 01:01:44.342 1526-1571/? V/WindowManager: Add starting AppWindowContainerController{ token=Token{fa5a764 ActivityRecord{8bf7cf7 u0 com.somago.brainoperator/.StartActivity t53}} mContainer=AppWindowToken{de0edcd token=Token{fa5a764 ActivityRecord{8bf7cf7 u0 com.somago.brainoperator/.StartActivity t53}}} mListener=ActivityRecord{8bf7cf7 u0 com.somago.brainoperator/.StartActivity t53}}: startingData=com.android.server.wm.SplashScreenStartingData@ac7e682
08-23 01:01:44.348 1526-1571/? V/WindowManager: addWindow: AppWindowToken{de0edcd token=Token{fa5a764 ActivityRecord{8bf7cf7 u0 com.somago.brainoperator/.StartActivity t53}}} startingWindow=Window{af7000b u0 Splash Screen com.somago.brainoperator}
08-23 01:01:44.349 1526-1571/? V/WindowManager: Added starting AppWindowToken{de0edcd token=Token{fa5a764 ActivityRecord{8bf7cf7 u0 com.somago.brainoperator/.StartActivity t53}}}: startingWindow=Window{af7000b u0 Splash Screen com.somago.brainoperator} startingView=com.android.server.policy.SplashScreenSurface@b08ee8
08-23 01:01:44.354 22411-22411/? I/zygote: Not late-enabling -Xcheck:jni (already on)
08-23 01:01:44.363 1526-2511/? I/ActivityManager: Start proc 22411:com.somago.brainoperator/u0a86 for activity com.somago.brainoperator/.StartActivity
08-23 01:01:44.365 22411-22411/? W/zygote: Unexpected CPU variant for X86 using defaults: x86
08-23 01:01:44.365 1352-1376/? D/hwcomposer: hw_composer sent 353 syncs in 63s
08-23 01:01:44.379 22411-22420/? E/zygote: Failed sending reply to debugger: Broken pipe
08-23 01:01:44.379 22411-22420/? I/zygote: Debugger is no longer active
08-23 01:01:44.387 1344-1344/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 8298496
08-23 01:01:44.420 22411-22411/? D/FirebaseApp: com.google.firebase.auth.FirebaseAuth is not linked. Skipping initialization.
08-23 01:01:44.456 22411-22432/? I/DynamiteModule: Considering local module com.google.android.gms.flags:2 and remote module com.google.android.gms.flags:0
08-23 01:01:44.456 22411-22432/? I/DynamiteModule: Selected local version of com.google.android.gms.flags
08-23 01:01:44.456 2238-17387/? E/ContentStoreEUAS: Failed to commit the deferred actions
08-23 01:01:44.458 22396-22396/? D/AndroidRuntime: >>>>>> START com.android.internal.os.RuntimeInit uid 2000 <<<<<<
08-23 01:01:44.460 22411-22411/? I/FA: App measurement is starting up, version: 11200
08-23 01:01:44.460 22411-22411/? I/FA: To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
08-23 01:01:44.461 22396-22396/? D/AndroidRuntime: CheckJNI is ON
08-23 01:01:44.472 1526-1571/? V/WindowManager: Finishing drawing window Window{af7000b u0 Splash Screen com.somago.brainoperator}: mDrawState=DRAW_PENDING
08-23 01:01:44.472 1526-1571/? V/WindowManager: Draw state now committed in Window{af7000b u0 Splash Screen com.somago.brainoperator}
08-23 01:01:44.473 22411-22411/? V/FA: Collection enabled
08-23 01:01:44.473 22411-22411/? V/FA: App package, google app id: com.somago.brainoperator, 1:1018593058521:android:0523935f79053573
08-23 01:01:44.475 22411-22411/? I/FA: To enable faster debug mode event logging run:
                                         adb shell setprop debug.firebase.analytics.app com.somago.brainoperator
08-23 01:01:44.475 22411-22432/? W/DynamiteModule: Local module descriptor class for com.google.android.gms.crash not found.
08-23 01:01:44.475 22411-22411/? D/FA: Debug-level message logging enabled
08-23 01:01:44.481 22411-22411/? V/FA: Cancelling job. JobID: -1473547763
08-23 01:01:44.482 22411-22411/? V/FA: Registered activity lifecycle callback
08-23 01:01:44.483 22411-22432/? W/zygote: Skipping duplicate class check due to unrecognized classloader
08-23 01:01:44.485 22411-22432/? I/DynamiteModule: Considering local module com.google.android.gms.crash:0 and remote module com.google.android.gms.crash:7
08-23 01:01:44.485 22411-22432/? I/DynamiteModule: Selected remote version of com.google.android.gms.crash, version >= 7
08-23 01:01:44.486 2238-2646/? D/EGL_emulation: eglMakeCurrent: 0xa9286320: ver 2 0 (tinfo 0xa9283b30)
08-23 01:01:44.486 2277-2411/? D/EGL_emulation: eglMakeCurrent: 0x96d39840: ver 2 0 (tinfo 0xa687e920)
08-23 01:01:44.488 22411-22411/? I/FirebaseInitProvider: FirebaseApp initialization successful
08-23 01:01:44.499 22411-22437/? V/FA: Using measurement service
08-23 01:01:44.500 22411-22437/? V/FA: Connecting to remote service
08-23 01:01:44.511 22411-22437/? V/FA: Using measurement service
08-23 01:01:44.511 22411-22437/? V/FA: Connection attempt already in progress
08-23 01:01:44.514 22411-22432/? W/zygote: Skipping duplicate class check due to unrecognized classloader
08-23 01:01:44.526 22396-22396/? W/app_process: Unexpected CPU variant for X86 using defaults: x86
08-23 01:01:44.529 22411-22432/? I/FirebaseCrashApiImpl: FirebaseCrashApiImpl created by ClassLoader t[DexPathList[[zip file "/data/user_de/0/com.google.android.gms/app_chimera/m/0000000a/DynamiteModulesC_GmsCore_prodmnc_alldpi_release.apk"],nativeLibraryDirectories=[/data/user_de/0/com.google.android.gms/app_chimera/m/0000000a/n/x86, /system/lib, /system/vendor/lib]]]
08-23 01:01:44.529 22411-22432/? I/FirebaseCrash: FirebaseCrash reporting loaded - com.google.android.gms.internal.zzdmk@a6c4e04
08-23 01:01:44.536 22411-22411/? V/FA: onActivityCreated
08-23 01:01:44.536 22411-22411/? W/ResourceType: Too many attribute references, stopped at: 0x7f0100b8
08-23 01:01:44.544 22411-22433/? I/DynamiteModule: Considering local module com.google.android.gms.flags:2 and remote module com.google.android.gms.flags:0
08-23 01:01:44.544 22411-22433/? I/DynamiteModule: Selected local version of com.google.android.gms.flags
08-23 01:01:44.550 22396-22396/? I/Radio-JNI: register_android_hardware_Radio DONE
08-23 01:01:44.554 22411-22433/? W/DynamiteModule: Local module descriptor class for com.google.android.gms.crash not found.
08-23 01:01:44.555 22396-22396/? D/AndroidRuntime: Calling main entry com.android.commands.wm.Wm
08-23 01:01:44.558 1526-1837/? W/WindowManager: Permission Denial: dismissKeyguard from pid=22396, uid=2000 requires android.permission.CONTROL_KEYGUARD
08-23 01:01:44.558 22396-22396/? D/AndroidRuntime: Shutting down VM
08-23 01:01:44.565 22411-22411/? W/ResourceType: Too many attribute references, stopped at: 0x7f0100b8
08-23 01:01:44.586 22411-22437/? V/FA: Using measurement service
08-23 01:01:44.586 22411-22437/? V/FA: Connection attempt already in progress
08-23 01:01:44.587 22411-22437/? V/FA: Activity resumed, time: 3325321
08-23 01:01:44.589 22411-22437/? I/FA: Tag Manager is not found and thus will not be used
08-23 01:01:44.590 22411-22437/? D/FA: Logging event (FE): screen_view(_vs), Bundle[{firebase_event_origin(_o)=auto, firebase_screen_class(_sc)=StartActivity, firebase_screen_id(_si)=3251559560414727390}]
08-23 01:01:44.596 22411-22433/? I/FirebaseCrashApiImpl: FirebaseCrash reporting API initialized
08-23 01:01:44.601 22411-22433/? I/FirebaseCrash: FirebaseCrash reporting initialized com.google.android.gms.internal.zzdmk@a6c4e04
08-23 01:01:44.601 22411-22433/? D/FirebaseCrash: Firebase Analytics Listener for Firebase Crash is initialized
08-23 01:01:44.603 1352-1371/? E/SurfaceFlinger: ro.sf.lcd_density must be defined as a build property
08-23 01:01:44.604 22411-22446/? D/OpenGLRenderer: HWUI GL Pipeline
08-23 01:01:44.607 22411-22437/? V/FA: Using measurement service
08-23 01:01:44.607 22411-22437/? V/FA: Connection attempt already in progress
08-23 01:01:44.621 1344-1344/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 4096
                                                 
                                                 
                                                 [ 08-23 01:01:44.622 22411:22446 D/         ]
                                                 HostConnection::get() New Host Connection established 0xb26f7d40, tid 22446
                                                 
                                                 
                                                 [ 08-23 01:01:44.622 22411:22446 W/         ]
                                                 Unrecognized GLES max version string in extensions: ANDROID_EMU_CHECKSUM_HELPER_v1 ANDROID_EMU_dma_v1 
08-23 01:01:44.623 22411-22446/? I/OpenGLRenderer: Initialized EGL, version 1.4
08-23 01:01:44.623 22411-22446/? D/OpenGLRenderer: Swap behavior 1
08-23 01:01:44.623 22411-22446/? W/OpenGLRenderer: Failed to choose config with EGL_SWAP_BEHAVIOR_PRESERVED, retrying without...
08-23 01:01:44.623 22411-22446/? D/OpenGLRenderer: Swap behavior 0
08-23 01:01:44.631 22411-22446/? D/EGL_emulation: eglCreateContext: 0xa92853c0: maj 2 min 0 rcv 2
08-23 01:01:44.631 1344-1344/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 4096
08-23 01:01:44.652 1344-1344/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 4096
08-23 01:01:44.652 22411-22446/? D/EGL_emulation: eglMakeCurrent: 0xa92853c0: ver 2 0 (tinfo 0xa9283a40)
08-23 01:01:44.662 1344-1344/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 4096
08-23 01:01:44.693 1297-1297/? W//system/bin/hwservicemanager: getTransportFromManifest: Cannot find entry android.hardware.graphics.mapper@2.0::IMapper in either framework or device manifest, using default transport.
08-23 01:01:44.693 22411-22446/? W/android.hardware.graphics.mapper@2.0::Mapper: getService: found null hwbinder interface
08-23 01:01:44.694 22411-22446/? I/vndksupport: sphal namespace is not configured for this process. Loading /system/lib/hw/gralloc.ranchu.so from the current namespace instead.
08-23 01:01:44.709 22411-22446/? D/EGL_emulation: eglMakeCurrent: 0xa92853c0: ver 2 0 (tinfo 0xa9283a40)
08-23 01:01:44.785 22411-22437/? D/FA: Connected to remote service
08-23 01:01:44.786 22411-22437/? V/FA: Processing queued up service tasks: 4
08-23 01:01:44.819 5680-22249/? V/FA-SVC: Logging event: origin=auto,name=screen_view(_vs),params=Bundle[{firebase_event_origin(_o)=auto, firebase_screen_class(_sc)=StartActivity, firebase_screen_id(_si)=3251559560414727390}]
08-23 01:01:44.822 5680-22249/? V/FA-SVC: Saving event, name, data size: screen_view(_vs), 58
08-23 01:01:44.822 5680-22249/? V/FA-SVC: Event recorded: Event{appId='com.somago.brainoperator', name='screen_view(_vs)', params=Bundle[{firebase_event_origin(_o)=auto, firebase_screen_class(_sc)=StartActivity, firebase_screen_id(_si)=3251559560414727390}]}
08-23 01:01:44.825 1526-1571/? V/WindowManager: Finish starting AppWindowToken{de0edcd token=Token{fa5a764 ActivityRecord{8bf7cf7 u0 com.somago.brainoperator/.StartActivity t53}}}: first real window is shown, no animation
08-23 01:01:44.825 1526-1571/? V/WindowManager: Schedule remove starting AppWindowToken{de0edcd token=Token{fa5a764 ActivityRecord{8bf7cf7 u0 com.somago.brainoperator/.StartActivity t53}}} startingWindow=Window{af7000b u0 Splash Screen com.somago.brainoperator}
08-23 01:01:44.827 5680-22249/? V/FA-SVC: Upload scheduled in approximately ms: 1286840
08-23 01:01:44.829 5680-22249/? V/FA-SVC: Cancelling job. JobID: 812057698
08-23 01:01:44.829 5680-22249/? V/FA-SVC: Scheduling upload with AlarmManager
08-23 01:01:44.830 5680-22249/? V/FA-SVC: Background event processing time, ms: 11
08-23 01:01:44.851 1526-1547/? V/WindowManager: Remove starting AppWindowToken{de0edcd token=Token{fa5a764 ActivityRecord{8bf7cf7 u0 com.somago.brainoperator/.StartActivity t53}}}: startingWindow=Window{af7000b u0 Splash Screen com.somago.brainoperator} startingView=com.android.server.policy.SplashScreenSurface@b08ee8
08-23 01:01:44.851 1526-1547/? I/ActivityManager: Displayed com.somago.brainoperator/.StartActivity: +504ms
08-23 01:01:44.889 1526-1571/? D/WindowManager: Starting window removed Window{af7000b u0 Splash Screen com.somago.brainoperator}
08-23 01:01:45.105 1352-1371/? E/SurfaceFlinger: Failed to find layer (Splash Screen com.somago.brainoperator#0) in layer parent (no-parent).
08-23 01:01:45.233 1352-1352/? W/SurfaceFlinger: couldn't log to binary event log: overflow.
08-23 01:01:45.305 2238-17387/? I/PBSessionCacheImpl: Deleted sessionId[152473382430] from persistence.
08-23 01:01:45.313 2238-2238/? W/SearchService: Abort, client detached.
08-23 01:01:45.665 5663-22333/? I/PlaceInferenceEngine: [anon] Changed inference mode: 105
08-23 01:01:45.668 5663-5714/? W/GCoreFlp: No location to return for getLastLocation()
08-23 01:01:46.198 22411-22418/com.somago.brainoperator I/zygote: Do partial code cache collection, code=14KB, data=18KB
08-23 01:01:46.198 22411-22418/com.somago.brainoperator I/zygote: After code cache collection, code=14KB, data=18KB
08-23 01:01:46.198 22411-22418/com.somago.brainoperator I/zygote: Increasing code cache capacity to 128KB
08-23 01:01:47.084 1526-2183/? I/ActivityManager: START u0 {cmp=com.somago.brainoperator/.MainActivity} from uid 10086
08-23 01:01:47.085 1526-2183/? V/WindowManager: setAppStartingWindow: token=Token{affec78 ActivityRecord{43a19db u0 com.somago.brainoperator/.MainActivity t53}} pkg=com.somago.brainoperator transferFrom=null newTask=false taskSwitch=false processRunning=true allowTaskSnapshot=true
08-23 01:01:47.085 1526-2183/? V/WindowManager: Checking theme of starting window: 0x7f090039
08-23 01:01:47.086 1526-2183/? V/WindowManager: Translucent=false Floating=false ShowWallpaper=false
08-23 01:01:47.098 22411-22437/com.somago.brainoperator V/FA: Recording user engagement, ms: 2511
08-23 01:01:47.099 22411-22437/com.somago.brainoperator V/FA: Activity paused, time: 3327832
08-23 01:01:47.102 22411-22437/com.somago.brainoperator D/FA: Logging event (FE): user_engagement(_e), Bundle[{firebase_event_origin(_o)=auto, engagement_time_msec(_et)=2511, firebase_screen_class(_sc)=StartActivity, firebase_screen_id(_si)=3251559560414727390}]
08-23 01:01:47.104 22411-22411/com.somago.brainoperator V/FA: onActivityCreated
08-23 01:01:47.104 22411-22411/com.somago.brainoperator W/ResourceType: Too many attribute references, stopped at: 0x7f0100b8
08-23 01:01:47.111 22411-22411/com.somago.brainoperator W/ResourceType: Too many attribute references, stopped at: 0x7f0100b8
08-23 01:01:47.133 5680-22249/? V/FA-SVC: Logging event: origin=auto,name=user_engagement(_e),params=Bundle[{firebase_event_origin(_o)=auto, engagement_time_msec(_et)=2511, firebase_screen_class(_sc)=StartActivity, firebase_screen_id(_si)=3251559560414727390}]
08-23 01:01:47.136 5680-22249/? V/FA-SVC: Saving event, name, data size: user_engagement(_e), 68
08-23 01:01:47.136 5680-22249/? V/FA-SVC: Event recorded: Event{appId='com.somago.brainoperator', name='user_engagement(_e)', params=Bundle[{firebase_event_origin(_o)=auto, engagement_time_msec(_et)=2511, firebase_screen_class(_sc)=StartActivity, firebase_screen_id(_si)=3251559560414727390}]}
08-23 01:01:47.137 5680-22249/? V/FA-SVC: Upload scheduled in approximately ms: 1284530
08-23 01:01:47.139 5680-22249/? V/FA-SVC: Cancelling job. JobID: 812057698
08-23 01:01:47.139 5680-22249/? V/FA-SVC: Scheduling upload with AlarmManager
08-23 01:01:47.140 5680-22249/? V/FA-SVC: Background event processing time, ms: 7
08-23 01:01:47.174 22411-22418/com.somago.brainoperator I/zygote: Do partial code cache collection, code=51KB, data=47KB
08-23 01:01:47.175 22411-22418/com.somago.brainoperator I/zygote: After code cache collection, code=51KB, data=47KB
08-23 01:01:47.175 22411-22418/com.somago.brainoperator I/zygote: Increasing code cache capacity to 256KB
08-23 01:01:47.188 22411-22411/com.somago.brainoperator W/zygote: Skipping duplicate class check due to unrecognized classloader
08-23 01:01:47.234 22411-22411/com.somago.brainoperator W/PopupManager: You have not specified a View to use as content view for popups. Falling back to the Activity content view. Note that this may not work as expected in multi-screen environments
08-23 01:01:47.264 22411-22411/com.somago.brainoperator D/DynamitePackage: Instantiated singleton DynamitePackage.
08-23 01:01:47.265 22411-22411/com.somago.brainoperator D/DynamitePackage: Instantiating com.google.android.gms.ads.ChimeraMobileAdsSettingManagerCreatorImpl
08-23 01:01:47.300 22411-22411/com.somago.brainoperator D/NetworkSecurityConfig: No Network Security Config specified, using platform default
08-23 01:01:47.318 5663-7521/? E/InstantApps: HashPrefixFilterImpl: Not in sync with domain filter, getDomainsForPrefixes skipped
08-23 01:01:47.335 22411-22411/com.somago.brainoperator D/DynamitePackage: Instantiating com.google.android.gms.ads.ChimeraAdManagerCreatorImpl
08-23 01:01:47.357 22411-22505/com.somago.brainoperator W/zygote: Skipping duplicate class check due to unrecognized classloader
08-23 01:01:47.369 22411-22411/com.somago.brainoperator I/Ads: Starting ad request.
08-23 01:01:47.370 22411-22411/com.somago.brainoperator I/Ads: This request is sent from a test device.
08-23 01:01:47.395 22411-22437/com.somago.brainoperator V/FA: Activity resumed, time: 3328128
08-23 01:01:47.401 22411-22420/com.somago.brainoperator I/zygote: Waiting for a blocking GC ObjectsAllocated
08-23 01:01:47.406 22411-22437/com.somago.brainoperator D/FA: Logging event (FE): screen_view(_vs), Bundle[{firebase_event_origin(_o)=auto, firebase_previous_class(_pc)=StartActivity, firebase_previous_id(_pi)=3251559560414727390, firebase_screen_class(_sc)=MainActivity, firebase_screen_id(_si)=3251559560414727391}]
08-23 01:01:47.457 1344-1344/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 4096
08-23 01:01:47.458 22411-22521/com.somago.brainoperator I/WebViewFactory: Loading com.android.chrome version 58.0.3029.121 (code 303012112)
08-23 01:01:47.477 1344-1344/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 4096
08-23 01:01:47.484 5680-22249/? V/FA-SVC: Logging event: origin=auto,name=screen_view(_vs),params=Bundle[{firebase_event_origin(_o)=auto, firebase_previous_class(_pc)=StartActivity, firebase_previous_id(_pi)=3251559560414727390, firebase_screen_class(_sc)=MainActivity, firebase_screen_id(_si)=3251559560414727391}]
08-23 01:01:47.487 1344-1344/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 4096
08-23 01:01:47.488 5680-22249/? V/FA-SVC: Saving event, name, data size: screen_view(_vs), 96
08-23 01:01:47.489 5680-22249/? V/FA-SVC: Event recorded: Event{appId='com.somago.brainoperator', name='screen_view(_vs)', params=Bundle[{firebase_event_origin(_o)=auto, firebase_previous_class(_pc)=StartActivity, firebase_previous_id(_pi)=3251559560414727390, firebase_screen_class(_sc)=MainActivity, firebase_screen_id(_si)=3251559560414727391}]}
08-23 01:01:47.490 5680-22249/? V/FA-SVC: Upload scheduled in approximately ms: 1284177
08-23 01:01:47.492 22411-22437/com.somago.brainoperator D/FA: Logging event (FE): ad_query(_aq), Bundle[{firebase_event_origin(_o)=am, firebase_screen_class(_sc)=MainActivity, firebase_screen_id(_si)=3251559560414727391, ad_event_id(_aeid)=3251559560414727392}]
08-23 01:01:47.497 1344-1344/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 4096
08-23 01:01:47.504 5680-22249/? V/FA-SVC: Cancelling job. JobID: 812057698
08-23 01:01:47.506 5680-22249/? V/FA-SVC: Scheduling upload with AlarmManager
08-23 01:01:47.508 22411-22424/com.somago.brainoperator I/zygote: Background concurrent copying GC freed 7755(1168KB) AllocSpace objects, 6(120KB) LOS objects, 49% free, 2MB/4MB, paused 1.029ms total 129.359ms
08-23 01:01:47.508 22411-22420/com.somago.brainoperator I/zygote: Waiting for a blocking GC ObjectsAllocated
08-23 01:01:47.509 22411-22420/com.somago.brainoperator I/zygote: WaitForGcToComplete blocked for 107.508ms for cause ObjectsAllocated
08-23 01:01:47.512 5680-22249/? V/FA-SVC: Background event processing time, ms: 28
08-23 01:01:47.564 22411-22446/com.somago.brainoperator D/EGL_emulation: eglMakeCurrent: 0xa92853c0: ver 2 0 (tinfo 0xa9283a40)
08-23 01:01:47.567 5680-22249/? V/FA-SVC: Logging event: origin=am,name=ad_query(_aq),params=Bundle[{firebase_event_origin(_o)=am, firebase_screen_class(_sc)=MainActivity, firebase_screen_id(_si)=3251559560414727391, ad_event_id(_aeid)=3251559560414727392}]
08-23 01:01:47.573 5680-22249/? V/FA-SVC: Saving event, name, data size: ad_query(_aq), 74
08-23 01:01:47.573 5680-22249/? V/FA-SVC: Event recorded: Event{appId='com.somago.brainoperator', name='ad_query(_aq)', params=Bundle[{firebase_event_origin(_o)=am, firebase_screen_class(_sc)=MainActivity, firebase_screen_id(_si)=3251559560414727391, ad_event_id(_aeid)=3251559560414727392}]}
08-23 01:01:47.575 5680-22249/? V/FA-SVC: Upload scheduled in approximately ms: 1284092
08-23 01:01:47.578 5680-22249/? V/FA-SVC: Cancelling job. JobID: 812057698
08-23 01:01:47.579 5680-22249/? V/FA-SVC: Scheduling upload with AlarmManager
08-23 01:01:47.580 5680-22249/? V/FA-SVC: Background event processing time, ms: 13
08-23 01:01:47.593 22411-22521/com.somago.brainoperator I/cr_LibraryLoader: Time to load native libraries: 3 ms (timestamps 8325-8328)
08-23 01:01:47.598 22411-22521/com.somago.brainoperator I/chromium: [INFO:library_loader_hooks.cc(140)] Chromium logging enabled: level = 0, default verbosity = 0
08-23 01:01:47.598 22411-22521/com.somago.brainoperator I/cr_LibraryLoader: Expected native library version number "58.0.3029.121", actual native library version number "58.0.3029.121"
08-23 01:01:47.620 22411-22446/com.somago.brainoperator D/EGL_emulation: eglMakeCurrent: 0xa92853c0: ver 2 0 (tinfo 0xa9283a40)
08-23 01:01:47.624 1526-1547/? I/ActivityManager: Displayed com.somago.brainoperator/.MainActivity: +527ms
08-23 01:01:47.630 22411-22446/com.somago.brainoperator D/EGL_emulation: eglMakeCurrent: 0xa92853c0: ver 2 0 (tinfo 0xa9283a40)
08-23 01:01:47.658 5663-7521/? E/InstantApps: HashPrefixFilterImpl: Not in sync with domain filter, getDomainsForPrefixes skipped
08-23 01:01:47.661 5663-7521/? E/InstantApps: HashPrefixFilterImpl: Not in sync with domain filter, getDomainsForPrefixes skipped
08-23 01:01:47.671 5680-5804/? W/Herrevad: [282] tgq.b: Looking up Wifi info on a non-wifi device
08-23 01:01:47.676 22411-22446/com.somago.brainoperator D/EGL_emulation: eglMakeCurrent: 0xa92853c0: ver 2 0 (tinfo 0xa9283a40)
08-23 01:01:47.685 5927-5939/? W/SystemServiceRegistry: No service published for: persistent_data_block
08-23 01:01:47.695 22411-22446/com.somago.brainoperator D/EGL_emulation: eglMakeCurrent: 0xa92853c0: ver 2 0 (tinfo 0xa9283a40)
08-23 01:01:47.726 5927-5939/? D/EGL_emulation: eglCreateContext: 0xa8fe7340: maj 2 min 0 rcv 2
08-23 01:01:47.731 5927-5939/? D/EGL_emulation: eglMakeCurrent: 0xa8fe7340: ver 2 0 (tinfo 0x93ad7140)
08-23 01:01:47.778 5927-5939/? D/EGL_emulation: eglCreateContext: 0xa8fe7820: maj 2 min 0 rcv 2
08-23 01:01:47.797 5927-5939/? D/EGL_emulation: eglMakeCurrent: 0xa8fe7820: ver 2 0 (tinfo 0x93ad7140)
08-23 01:01:47.988 1526-1837/? V/WindowManager: Nulling last startingData
08-23 01:01:48.032 5680-22542/? W/Ads: Received error HTTP response code: 403
08-23 01:01:48.033 22411-22426/com.somago.brainoperator W/Ads: There was a problem getting an ad response. ErrorCode: 0
08-23 01:01:48.034 22411-22411/com.somago.brainoperator W/Ads: Failed to load ad: 0
08-23 01:01:48.034 22411-22411/com.somago.brainoperator V/NativeAd: Failed to load    0
08-23 01:01:48.039 5663-17400/? W/Conscrypt: Could not set socket write timeout:
08-23 01:01:48.040 5663-17400/? W/Conscrypt:    java.lang.reflect.Method.invoke(Native Method)
08-23 01:01:48.040 5663-17400/? W/Conscrypt:    yid.a(:com.google.android.gms:58)
08-23 01:01:48.333 5663-17400/? W/Conscrypt: Could not set socket write timeout:
08-23 01:01:48.333 5663-17400/? W/Conscrypt:    java.lang.reflect.Method.invoke(Native Method)
08-23 01:01:48.334 5663-17400/? W/Conscrypt:    yid.a(:com.google.android.gms:58)
08-23 01:01:48.643 5663-17400/? W/GLSUser: [AppCertManager] IOException while requesting key: 
                                           java.io.IOException: Invalid device key response.
                                               at etz.a(:com.google.android.gms:10)
                                               at etz.a(:com.google.android.gms:61)
                                               at etz.a(:com.google.android.gms:19)
                                               at etx.a(:com.google.android.gms:3)
                                               at etu.a(:com.google.android.gms:1)
                                               at ets.a(:com.google.android.gms:9)
                                               at ets.a(:com.google.android.gms:23)
                                               at lzv.d(:com.google.android.gms:2)
                                               at mah.b(:com.google.android.gms:0)
                                               at mah.a(:com.google.android.gms:6)
                                               at mah.a(:com.google.android.gms:5)
                                               at amsw.a(:com.google.android.gms:146)
                                               at amtd.a(:com.google.android.gms:102)
                                               at amuj.b(:com.google.android.gms:87)
                                               at amuj.a(:com.google.android.gms:21)
                                               at amto.a(:com.google.android.gms:26)
                                               at amtm.handleMessage(:com.google.android.gms:17)
                                               at mfu.run(:com.google.android.gms:5)
                                               at mge.run(:com.google.android.gms:24)
                                               at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
                                               at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
                                               at mlf.run(:com.google.android.gms:0)
                                               at java.lang.Thread.run(Thread.java:764)
08-23 01:01:48.643 5663-17400/? W/GLSUser: [DeviceKeyStore] Cannot load key: Device key file not found.
08-23 01:01:49.662 5663-17400/? I/GCoreUlrLong: sendSettings(syncDirty): sent GetSettingsResults{mModMillis=1503431074899, mReportingEnabled=true, mReportingSource=com.google.android.gms+not-dirty, mHistoryEnabled=true, mHistorySource=com.google.android.gms+not-dirty, mUserRestriction=0, mSource=0, mConcurrencyType=0, mDeletions=[], mPrimaryDevice=null, mAcccountType=0}, got back GetSettingsResults{mModMillis=1503431074899, mReportingEnabled=true, mReportingSource=null, mHistoryEnabled=true, mHistorySource=null, mUserRestriction=0, mSource=0, mConcurrencyType=0, mDeletions=[], mPrimaryDevice=false, mAcccountType=0}; success: true
08-23 01:01:49.664 5663-17400/? I/GCoreUlr: UserPreferences.updateEditor(ConfigUpdate{mAccount=account#12#, mReferenceUpdateNumber=8, mUnconditional=false, mUiUpdate=false, mUlrRelatedSettingUpdate=false, mShouldNotSync=true, mReportingEnabled=true, mHistoryEnabled=true, mCausePackage=null, mClearCausePackage=true, mServerMillis=1503431074899, mRestriction=0, mDirty=false, mPrimaryDevice=false, mAccountType=0}): aborting to preserve local change at 10
08-23 01:01:49.669 5663-17400/? I/GCoreUlr: AutoEnableManager setIneligible for account#12#
08-23 01:01:49.687 5663-17400/? W/GLSUser: [DeviceKeyStore] Cannot load key: Device key file not found.
08-23 01:01:49.687 5663-17400/? W/GLSUser: [DeviceKeyStore] Cannot load key: Device key file not found.
08-23 01:01:50.300 5663-17400/? I/GCoreUlrLong: sendSettings(syncDirty): sent GetSettingsResults{mModMillis=1503431074899, mReportingEnabled=true, mReportingSource=com.google.android.gms+not-dirty, mHistoryEnabled=true, mHistorySource=com.google.android.gms+not-dirty, mUserRestriction=0, mSource=0, mConcurrencyType=0, mDeletions=[], mPrimaryDevice=null, mAcccountType=0}, got back GetSettingsResults{mModMillis=1503431074899, mReportingEnabled=true, mReportingSource=null, mHistoryEnabled=true, mHistorySource=null, mUserRestriction=0, mSource=0, mConcurrencyType=0, mDeletions=[], mPrimaryDevice=false, mAcccountType=0}; success: true
08-23 01:01:50.302 5663-17400/? I/GCoreUlr: Starting service, intent=Intent { act=com.google.android.location.reporting.ACTION_UPDATE_ACTIVE_STATE cmp=com.google.android.gms/com.google.android.location.reporting.service.DispatchingService (has extras) }, extras=Bundle[{source=sync_local_wins}]
08-23 01:01:50.313 5663-22101/? I/GCoreUlr: DispatchingService.updateActiveState+sync_local_wins: Ensuring that reporting is active for [account#12#]
08-23 01:01:50.314 5663-22101/? E/BluetoothAdapter: Bluetooth binder is null
08-23 01:01:50.314 5663-22101/? I/GCoreUlr: Place inference reporting - stop
08-23 01:01:50.314 5663-22085/? I/GCoreUlr: Unregistering for aliased place alerts.
08-23 01:01:50.328 5663-17400/? W/GLSUser: [DeviceKeyStore] Cannot load key: Device key file not found.
08-23 01:01:50.328 5663-17400/? W/GLSUser: [DeviceKeyStore] Cannot load key: Device key file not found.
08-23 01:01:50.950 5663-17400/? I/GCoreUlr: Starting service, intent=Intent { act=com.google.android.location.reporting.ACTION_UPDATE_ACTIVE_STATE cmp=com.google.android.gms/com.google.android.location.reporting.service.DispatchingService (has extras) }, extras=Bundle[{source=sync_server_wins}]
08-23 01:01:50.951 5663-17400/? I/GCoreUlr: AutoEnableManager setIneligible for account#12#
08-23 01:01:50.961 5663-22085/? I/GCoreUlr: DispatchingService.updateActiveState+sync_server_wins: Ensuring that reporting is active for [account#12#]
08-23 01:01:50.963 5663-22085/? E/BluetoothAdapter: Bluetooth binder is null
08-23 01:01:50.963 5663-22085/? I/GCoreUlr: Place inference reporting - stop
08-23 01:01:50.964 5663-22101/? I/GCoreUlr: Unregistering for aliased place alerts.
08-23 01:01:50.973 5663-17400/? W/GLSUser: [DeviceKeyStore] Cannot load key: Device key file not found.
08-23 01:01:50.973 5663-17400/? W/GLSUser: [DeviceKeyStore] Cannot load key: Device key file not found.
08-23 01:01:51.589 5663-17400/? I/GCoreUlr: Starting service, intent=Intent { act=com.google.android.location.reporting.ACTION_UPDATE_ACTIVE_STATE cmp=com.google.android.gms/com.google.android.location.reporting.service.DispatchingService (has extras) }, extras=Bundle[{source=sync_server_wins}]
08-23 01:01:51.591 5663-17400/? I/GCoreUlr: AutoEnableManager setIneligible for account#12#
08-23 01:01:51.599 5663-22101/? I/GCoreUlr: DispatchingService.updateActiveState+sync_server_wins: Ensuring that reporting is active for [account#12#]
08-23 01:01:51.600 5663-22101/? E/BluetoothAdapter: Bluetooth binder is null
08-23 01:01:51.600 5663-22101/? I/GCoreUlr: Place inference reporting - stop
08-23 01:01:51.601 5663-17400/? I/GCoreUlr: Unregistering for aliased place alerts.
08-23 01:01:52.568 22411-22437/com.somago.brainoperator V/FA: Inactivity, disconnecting from the service
08-23 01:01:54.688 1526-1539/? E/memtrack: Couldn't load memtrack module
08-23 01:01:54.688 1526-1539/? W/android.os.Debug: failed to get memory consumption info: -1
08-23 01:01:55.889 22411-22677/com.somago.brainoperator I/FirebaseCrash: Sending crashes
08-23 01:01:57.693 1526-1539/? E/memtrack: Couldn't load memtrack module
08-23 01:01:57.693 1526-1539/? W/android.os.Debug: failed to get memory consumption info: -1
08-23 01:02:00.019 1631-1838/? D/EGL_emulation: eglMakeCurrent: 0x9580fcc0: ver 2 0 (tinfo 0xa78ebc20)
08-23 01:02:00.530 2238-22746/? I/EventLogSendingHelper: Sending log events.
08-23 01:02:00.596 5663-22749/? I/zygote: Deoptimizing void lno.<init>(android.content.Context, java.lang.String, lns, int) due to JIT same target
08-23 01:02:00.596 5663-22749/? I/zygote: Deoptimizing void mdl.<init>(android.content.Context) due to JIT same target
08-23 01:02:00.628 5663-22749/? E/BluetoothAdapter: Bluetooth binder is null
08-23 01:02:05.570 1526-1539/? E/memtrack: Couldn't load memtrack module
08-23 01:02:05.570 1526-1539/? W/android.os.Debug: failed to get memory consumption info: -1
08-23 01:02:05.578 1526-1539/? E/memtrack: Couldn't load memtrack module
08-23 01:02:05.578 1526-1539/? W/android.os.Debug: failed to get memory consumption info: -1
08-23 01:02:05.590 1526-1539/? E/memtrack: Couldn't load memtrack module
08-23 01:02:05.590 1526-1539/? W/android.os.Debug: failed to get memory consumption info: -1
08-23 01:02:15.649 2238-17393/? W/GmsLocationProvider: Error removing location updates: 16
 

Bharani Cherukuri (Mobile Ads SDK Team)

unread,
Aug 23, 2017, 10:08:12 AM8/23/17
to Google Mobile Ads SDK Developers
Hello, 

Thank you for the additional information. Your code sample looks fine and I was able to load ads on my end. Can you try changing your package name and then load the ads again? Also, can you verify if you have any ad blockers on your device or any installed apps that block your advertising? Let me know if this works for you.

Regards,
Bharani Cherukuri
Mobile Ads SDK Team.

On Monday, August 21, 2017 at 4:02:53 PM UTC-4, Galal Basha wrote:
test ad 1.png
test ad 2.png

Galal Basha

unread,
Aug 23, 2017, 11:43:03 AM8/23/17
to Google Mobile Ads SDK Developers
there's no ad blocker on the devices and i tried to change the emulator with pixel sdk 25 and the same error as in the screenshot
i can't change the package name because it's an old app on the store with many downloads .. i have to run ads with the same package  
screenshot.png

Bharani Cherukuri (Mobile Ads SDK Team)

unread,
Aug 23, 2017, 4:47:33 PM8/23/17
to Google Mobile Ads SDK Developers
Hello, 

Thank you for getting back to the support. I believe there might be an issue with your old package name. Can you try loading the ads after changing your package name? If that works, then you will have to reach out to the AdMob Product Support Team to get the issue resolved with your old package name.

Regards,
Bharani Cherukuri
Mobile Ads SDK Team.

On Monday, August 21, 2017 at 4:02:53 PM UTC-4, Galal Basha wrote:

Galal Basha

unread,
Aug 23, 2017, 5:57:01 PM8/23/17
to Google Mobile Ads SDK Developers
but i can't find contact us button or email to reach them and i read that i have to be earning 25$ weekly to contact with an assistance.
please provide a way to contact them.

Bharani Cherukuri (Mobile Ads SDK Team)

unread,
Aug 24, 2017, 10:15:38 AM8/24/17
to Google Mobile Ads SDK Developers
Hello, 

Thank you for getting back to the support. You can contact the AdMob Product Support Team via the Contact Us button on the upper right corner of this page. If you are not able to access the link which I have provided, I'd suggest that you use the AdMob Help Center or you can use this troubleshooter for further assistance.

Regards,
Bharani Cherukuri
Mobile Ads SDK Team.

On Monday, August 21, 2017 at 4:02:53 PM UTC-4, Galal Basha wrote:
Reply all
Reply to author
Forward
0 new messages