I am getting this error in logs and the app crashes:
15:53:22.518: A/libc(25934): Fatal signal 11 (SIGSEGV) at 0x00000008 (code=1), thread 25934 (s.testapp)The error fired when:
I am using SDK GoogleAdMobAdsSdk-6.4.1 with Phonegap 3.0 on Android 4.1.2, I know is admob because when I disable it, the problem is gone.
Here is the code:
adView = new AdView(this, AdSize.BANNER, "xxxxxx");
LinearLayout layout = super.root;
layout.addView(adView);
layout.setHorizontalGravity(android.view.Gravity.CENTER_HORIZONTAL);
AdRequest request = new AdRequest();
//request.addTestDevice(AdRequest.TEST_EMULATOR);
adView.loadAd(request);Found exact problem with actual 4.1.2 devices and also in Emulator with 4.1.1.
Most of the time happen when admob showing rotating text banners.
Anyone has a clue yet?