Google Analytics v4 not working in Android App - android

So I followed this ( http://java.dzone.com/articles/working-google-analytics-api ) tutorial because I need Google Analytics in my application but I can't see anything in my GA Account. I put my log below.
09-13 21:15:05.906 31278-31278/com.rivert.unlockscope D/dalvikvm﹕ Late-enabling CheckJNI
09-13 21:15:06.006 31278-31278/com.rivert.unlockscope V/WebViewChromiumFactoryProvider﹕ Binding Chromium to main looper Looper (main, tid 1) {426e9320}
09-13 21:15:06.006 31278-31278/com.rivert.unlockscope I/LibraryLoader﹕ Expected native library version number "",actual native library version number ""
09-13 21:15:06.006 31278-31278/com.rivert.unlockscope I/chromium﹕ [INFO:library_loader_hooks.cc(116)] Chromium logging enabled: level = 0, default verbosity = 0
09-13 21:15:06.016 31278-31278/com.rivert.unlockscope I/BrowserStartupController﹕ Initializing chromium process, renderers=0
09-13 21:15:06.016 31278-31278/com.rivert.unlockscope E/AudioManagerAndroid﹕ BLUETOOTH permission is missing!
09-13 21:15:06.037 31278-31278/com.rivert.unlockscope I/Adreno-EGL﹕ <qeglDrvAPI_eglInitialize:320>: EGL 1.4 QUALCOMM Build: I0404c4692afb8623f95c43aeb6d5e13ed4b30ddbDate: 11/06/13
09-13 21:15:06.147 31278-31298/com.rivert.unlockscope W/chromium﹕ [WARNING:proxy_service.cc(890)] PAC support disabled because there is no system implementation
09-13 21:15:06.257 31278-31278/com.rivert.unlockscope V/GAV4﹕ Thread[main,5,main]: Loading Tracker config values.
09-13 21:15:06.257 31278-31278/com.rivert.unlockscope V/GAV4﹕ Thread[main,5,main]: [Tracker] trackingId loaded: UA-XXXXXXXX-2
09-13 21:15:06.257 31278-31278/com.rivert.unlockscope V/GAV4﹕ Thread[main,5,main]: [Tracker] sample frequency loaded: 100.0
09-13 21:15:06.257 31278-31278/com.rivert.unlockscope V/GAV4﹕ Thread[main,5,main]: [Tracker] auto activity tracking loaded: true
09-13 21:15:06.257 31278-31278/com.rivert.unlockscope V/GAV4﹕ Thread[main,5,main]: ExceptionReporter created, original handler is com.android.internal.os.RuntimeInit$UncaughtHandler
09-13 21:15:06.257 31278-31278/com.rivert.unlockscope V/GAV4﹕ Thread[main,5,main]: Uncaught exceptions will be reported to Google Analytics.
09-13 21:15:06.267 31278-31312/com.rivert.unlockscope V/GAV4﹕ Thread[client_id_fetcher,5,main]: Storing clientId.
09-13 21:15:06.297 31278-31278/com.rivert.unlockscope D/AudioManagerAndroid﹕ ==> onReceive: s=0, m=1, n=h2w, sb=true
09-13 21:15:06.297 31278-31278/com.rivert.unlockscope D/AudioManagerAndroid﹕ reportUpdate: state=0, devices=[Speakerphone, Headset earpiece]
09-13 21:15:06.327 31278-31278/com.rivert.unlockscope D/OpenGLRenderer﹕ Enabling debug mode 0
09-13 21:15:06.337 31278-31278/com.rivert.unlockscope W/AwContents﹕ nativeOnDraw failed; clearing to background color.
09-13 21:15:06.387 31278-31278/com.rivert.unlockscope I/Timeline﹕ Timeline: Activity_idle id: android.os.BinderProxy#426ea908 time:157709721
09-13 21:15:06.667 31278-31278/com.rivert.unlockscope E/qdutils﹕ FBIOGET_FSCREENINFO failed
09-13 21:15:07.738 31278-31278/com.rivert.unlockscope I/chromium﹕ [INFO:CONSOLE(5)] "The key "target-densitydpi" is not supported.", source: http://test.unlockscope.com/ (5)
09-13 21:15:11.242 31278-31311/com.rivert.unlockscope V/GAV4﹕ Thread[GAThread,5,main]: connecting to Analytics service
09-13 21:15:11.252 31278-31311/com.rivert.unlockscope V/GAV4﹕ Thread[GAThread,5,main]: connect: bindService returned true for Intent { act=com.google.android.gms.analytics.service.START cmp=com.google.android.gms/.analytics.service.AnalyticsService (has extras) }
09-13 21:15:11.252 31278-31311/com.rivert.unlockscope I/GAV4﹕ Thread[GAThread,5,main]: No campaign data found.
09-13 21:15:11.252 31278-31311/com.rivert.unlockscope V/GAV4﹕ Thread[GAThread,5,main]: Initialized GA Thread
09-13 21:15:11.262 31278-31278/com.rivert.unlockscope V/GAV4﹕ Thread[main,5,main]: service connected, binder: android.os.BinderProxy#42779be0
09-13 21:15:11.262 31278-31278/com.rivert.unlockscope V/GAV4﹕ Thread[main,5,main]: bound to service
09-13 21:15:11.262 31278-31278/com.rivert.unlockscope V/GAV4﹕ Thread[main,5,main]: Connected to service
Thanks.

Related

Activity set in AndroidManifest is not getting called

I am new to android and have just made a simple login app using Firebase. The problem is that, I first developed the registration page and then the login page.
Now when i am specifying my LoginActivity in the AndroidManifest it is still calling the RegisterActivity.
I tried invalidating the caches, restarted but nothing is working it is still calling the RegisterActivity rather than LoginActivity
AndroidManifiest file:
<application
android:allowBackup="true"
android:icon="#mipmap/ic_launcher"
android:label="#string/app_name"
android:roundIcon="#mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="#style/AppTheme">
<activity android:name=".LoginActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".RegisterStudent"></activity>
<activity android:name=".ResetPassword"></activity>
</application>
LoginActivity file:
public class LoginActivity extends AppCompatActivity {
private EditText inputEmail, inputPassword;
private FirebaseAuth auth;
private ProgressBar progressBar;
private Button btnReset;
private TextView btnLogin;
#Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_login);
auth = FirebaseAuth.getInstance();
.....
RegisterActivity file:
public class RegisterStudent extends AppCompatActivity {
private TextInputLayout etStudentName, etStudentEmail, etPassword, etStudentPhone, etFeesPaid, etTotalfees;
private AppCompatSpinner batchesSpinner;
private Button registerStudentBtn;
private FirebaseAuth mAuth;
#Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_register_student);
.....
Log Cat:
01-07 01:47:49.582 16643-16643/? I/m.hitech.hitec: Late-enabling -Xcheck:jni
01-07 01:47:49.629 16643-16657/com.hitech.hitech I/m.hitech.hitec: The ClassLoaderContext is a special shared library.
01-07 01:47:49.771 16643-16643/com.hitech.hitech W/m.hitech.hitec: JIT profile information will not be recorded: profile file does not exits.
01-07 01:47:49.773 16643-16643/com.hitech.hitech I/chatty: uid=10187(com.hitech.hitech) identical 10 lines
01-07 01:47:49.773 16643-16643/com.hitech.hitech W/m.hitech.hitec: JIT profile information will not be recorded: profile file does not exits.
01-07 01:47:49.780 16643-16643/com.hitech.hitech I/Perf: Connecting to perf service.
01-07 01:47:49.803 16643-16643/com.hitech.hitech W/m.hitech.hitec: Unsupported class loader
01-07 01:47:49.804 16643-16643/com.hitech.hitech W/m.hitech.hitec: Skipping duplicate class check due to unsupported classloader
01-07 01:47:49.807 16643-16643/com.hitech.hitech W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
01-07 01:47:49.810 16643-16643/com.hitech.hitech W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
01-07 01:47:49.817 16643-16643/com.hitech.hitech I/BiChannelGoogleApi: [FirebaseAuth: ] No Fallback module; NOT setting up for lazy initialization
01-07 01:47:49.823 16643-16660/com.hitech.hitech W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
01-07 01:47:49.827 16643-16660/com.hitech.hitech I/FirebaseAuth: [FirebaseAuth:] Loading module via FirebaseOptions.
01-07 01:47:49.828 16643-16660/com.hitech.hitech I/FirebaseAuth: [FirebaseAuth:] Preparing to create service connection to gms implementation
01-07 01:47:49.841 16643-16643/com.hitech.hitech D/FirebaseAuth: Notifying id token listeners about user ( mfjhDZacBWgG3rjpPB7ZKkTPJQd2 ).
01-07 01:47:49.846 16643-16643/com.hitech.hitech D/FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization.
01-07 01:47:49.880 16643-16643/com.hitech.hitech V/FA: Cancelling job. JobID: 915335141
01-07 01:47:49.883 16643-16643/com.hitech.hitech V/FA: Registered activity lifecycle callback
01-07 01:47:49.884 16643-16643/com.hitech.hitech I/FirebaseInitProvider: FirebaseApp initialization successful
01-07 01:47:49.885 16643-16643/com.hitech.hitech I/InstantRun: starting instant run server: is main process
01-07 01:47:49.890 16643-16643/com.hitech.hitech V/Font: Change font:2
01-07 01:47:49.897 16643-16663/com.hitech.hitech V/FA: Collection enabled
01-07 01:47:49.897 16643-16663/com.hitech.hitech V/FA: App package, google app id: com.hitech.hitech, 1:432442387783:android:03d10637e6d05449
01-07 01:47:49.898 16643-16663/com.hitech.hitech I/FA: App measurement is starting up, version: 11717
To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
To enable faster debug mode event logging run:
adb shell setprop debug.firebase.analytics.app com.hitech.hitech
01-07 01:47:49.898 16643-16663/com.hitech.hitech D/FA: Debug-level message logging enabled
01-07 01:47:49.902 16643-16666/com.hitech.hitech E/libc: Access denied finding property "vendor.debug.egl.profiler"
01-07 01:47:49.903 16643-16666/com.hitech.hitech E/libc: Access denied finding property "vendor.debug.prerotation.disable"
01-07 01:47:49.909 16643-16663/com.hitech.hitech V/FA: Connecting to remote service
01-07 01:47:49.914 16643-16663/com.hitech.hitech V/FA: Connection attempt already in progress
01-07 01:47:49.941 16643-16643/com.hitech.hitech V/FA: onActivityCreated
01-07 01:47:49.968 16643-16643/com.hitech.hitech W/m.hitech.hitec: Accessing hidden method Landroid/view/View;->computeFitSystemWindows(Landroid/graphics/Rect;Landroid/graphics/Rect;)Z (light greylist, reflection)
01-07 01:47:49.969 16643-16643/com.hitech.hitech W/m.hitech.hitec: Accessing hidden method Landroid/view/ViewGroup;->makeOptionalFitsSystemWindows()V (light greylist, reflection)
01-07 01:47:50.063 16643-16643/com.hitech.hitech D/FirebaseApp: Notifying auth state listeners.
Notified 0 auth state listeners.
01-07 01:47:50.074 16643-16643/com.hitech.hitech W/ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy#ca54cf0
01-07 01:47:50.084 16643-16643/com.hitech.hitech V/FA: onActivityCreated
01-07 01:47:50.200 16643-16663/com.hitech.hitech V/FA: Connection attempt already in progress
01-07 01:47:50.201 16643-16663/com.hitech.hitech V/FA: Activity resumed, time: 730786762
01-07 01:47:50.201 16643-16643/com.hitech.hitech D/OpenGLRenderer: Skia GL Pipeline
01-07 01:47:50.202 16643-16663/com.hitech.hitech I/FA: Tag Manager is not found and thus will not be used
01-07 01:47:50.203 16643-16663/com.hitech.hitech D/FA: Logging event (FE): screen_view(_vs), Bundle[{firebase_event_origin(_o)=auto, firebase_screen_class(_sc)=RegisterStudent, firebase_screen_id(_si)=9094250577024489675}]
01-07 01:47:50.219 16643-16663/com.hitech.hitech V/FA: Connection attempt already in progress
01-07 01:47:50.219 16643-16663/com.hitech.hitech D/FA: Connected to remote service
01-07 01:47:50.219 16643-16663/com.hitech.hitech V/FA: Processing queued up service tasks: 4
01-07 01:47:50.273 16643-16657/com.hitech.hitech D/DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView#182005e[RegisterStudent]
01-07 01:47:50.274 16643-16670/com.hitech.hitech I/Adreno: QUALCOMM build : 0bf40b0, I486bafd568
Build Date : 08/22/18
OpenGL ES Shader Compiler Version: EV031.25.03.00
Local Branch :
Remote Branch : refs/tags/AU_LINUX_ANDROID_LA.UM.7.3.R1.08.00.00.423.039
Remote Branch : NONE
Reconstruct Branch : NOTHING
Build Config : S P 6.0.3 AArch64
01-07 01:47:50.276 16643-16670/com.hitech.hitech E/libc: Access denied finding property "vendor.debug.prerotation.disable"
01-07 01:47:50.277 16643-16670/com.hitech.hitech E/libc: Access denied finding property "ro.vendor.graphics.memory"
Access denied finding property "vendor.debug.prerotation.disable"
Access denied finding property "vendor.debug.prerotation.disable"
01-07 01:47:50.278 16643-16670/com.hitech.hitech I/Adreno: PFP: 0x016ee170, ME: 0x00000000
01-07 01:47:50.278 16643-16670/com.hitech.hitech E/libc: Access denied finding property "vendor.debug.prerotation.disable"
01-07 01:47:50.280 16643-16670/com.hitech.hitech I/ConfigStore: android::hardware::configstore::V1_0::ISurfaceFlingerConfigs::hasWideColorDisplay retrieved: 1
android::hardware::configstore::V1_0::ISurfaceFlingerConfigs::hasHDRDisplay retrieved: 0
01-07 01:47:50.281 16643-16670/com.hitech.hitech I/OpenGLRenderer: Initialized EGL, version 1.4
01-07 01:47:50.281 16643-16670/com.hitech.hitech D/OpenGLRenderer: Swap behavior 2
01-07 01:47:50.285 16643-16670/com.hitech.hitech E/libc: Access denied finding property "vendor.debug.egl.changepixelformat"
01-07 01:47:50.334 16643-16670/com.hitech.hitech E/libc: Access denied finding property "vendor.debug.egl.swapinterval"
01-07 01:47:50.355 16643-16670/com.hitech.hitech E/libc: Access denied finding property "vendor.debug.egl.swapinterval"
01-07 01:47:51.845 16643-16670/com.hitech.hitech E/libc: Access denied finding property "vendor.debug.egl.swapinterval"
01-07 01:47:51.830 16643-16643/com.hitech.hitech W/RenderThread: type=1400 audit(0.0:6573004): avc: denied { read } for name="u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=16956 scontext=u:r:untrusted_app:s0:c187,c256,c512,c768 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=0
01-07 01:47:51.850 16643-16643/com.hitech.hitech W/RenderThread: type=1400 audit(0.0:6573005): avc: denied { read } for name="u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=16956 scontext=u:r:untrusted_app:s0:c187,c256,c512,c768 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=0
01-07 01:47:51.858 16643-16670/com.hitech.hitech E/libc: Access denied finding property "vendor.debug.egl.swapinterval"
01-07 01:47:51.860 16643-16643/com.hitech.hitech W/RenderThread: type=1400 audit(0.0:6573006): avc: denied { read } for name="u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=16956 scontext=u:r:untrusted_app:s0:c187,c256,c512,c768 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=0
01-07 01:47:51.874 16643-16670/com.hitech.hitech E/libc: Access denied finding property "vendor.debug.egl.swapinterval"
01-07 01:47:51.880 16643-16643/com.hitech.hitech W/RenderThread: type=1400 audit(0.0:6573007): avc: denied { read } for name="u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=16956 scontext=u:r:untrusted_app:s0:c187,c256,c512,c768 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=0
01-07 01:47:51.891 16643-16670/com.hitech.hitech E/libc: Access denied finding property "vendor.debug.egl.swapinterval"
01-07 01:47:51.900 16643-16643/com.hitech.hitech W/RenderThread: type=1400 audit(0.0:6573008): avc: denied { read } for name="u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=16956 scontext=u:r:untrusted_app:s0:c187,c256,c512,c768 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=0
01-07 01:47:51.907 16643-16670/com.hitech.hitech E/libc: Access denied finding property "vendor.debug.egl.swapinterval"
01-07 01:47:51.992 16643-16670/com.hitech.hitech I/chatty: uid=10187(com.hitech.hitech) RenderThread identical 5 lines
01-07 01:47:52.007 16643-16670/com.hitech.hitech E/libc: Access denied finding property "vendor.debug.egl.swapinterval"
01-07 01:47:52.024 16643-16670/com.hitech.hitech E/libc: Access denied finding property "vendor.debug.egl.swapinterval"
01-07 01:47:52.090 16643-16670/com.hitech.hitech I/chatty: uid=10187(com.hitech.hitech) RenderThread identical 4 lines
01-07 01:47:52.107 16643-16670/com.hitech.hitech E/libc: Access denied finding property "vendor.debug.egl.swapinterval"
01-07 01:47:55.252 16643-16663/com.hitech.hitech V/FA: Inactivity, disconnecting from the service
01-07 01:48:19.541 16643-16663/com.hitech.hitech V/FA: Recording user engagement, ms: 29340
01-07 01:48:19.542 16643-16663/com.hitech.hitech V/FA: Connecting to remote service
01-07 01:48:19.545 16643-16663/com.hitech.hitech V/FA: Activity paused, time: 730816101
01-07 01:48:19.547 16643-16663/com.hitech.hitech D/FA: Logging event (FE): user_engagement(_e), Bundle[{firebase_event_origin(_o)=auto, engagement_time_msec(_et)=29340, firebase_screen_class(_sc)=RegisterStudent, firebase_screen_id(_si)=9094250577024489675}]
01-07 01:48:19.582 16643-16663/com.hitech.hitech V/FA: Connection attempt already in progress
01-07 01:48:19.582 16643-16663/com.hitech.hitech D/FA: Connected to remote service
01-07 01:48:19.582 16643-16663/com.hitech.hitech V/FA: Processing queued up service tasks: 2
01-07 01:48:24.607 16643-16663/com.hitech.hitech V/FA: Inactivity, disconnecting from the service
01-07 01:48:29.633 16643-16660/com.hitech.hitech I/FirebaseAuth: [FirebaseAuth:] Loading module via FirebaseOptions.
[FirebaseAuth:] Preparing to create service connection to gms implementation

'Unfortunately, app has stopped' is shown twice on the device and 'Application terminated' in android studio with no error being shown

I am developing an app using Android Studio.
The problem is that app gets crashed twice within few minutes of running it and besides Application terminated. and normal logs no error is shown in the logcat.
Here's complete logcat:
02/12 22:31:34: Launching app
Cold swapped changes.
$ adb shell am start -n "com.abc.xxx/com.abc.xxx.MainActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
Connected to process 13399 on device micromax-micromax_aq4502-2864004C04884I2
I/art: Late-enabling -Xcheck:jni
W/System: ClassLoader referenced unknown path: /data/app/com.abc.xxx-2/lib/arm
I/InstantRun: Instant Run Runtime started. Android package is com.abc.xxx, real application class is null.
W/System: ClassLoader referenced unknown path: /data/app/com.abc.xxx-2/lib/arm
W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
I/art: Background sticky concurrent mark sweep GC freed 11281(1218KB) AllocSpace objects, 22(696KB) LOS objects, 15% free, 5MB/6MB, paused 13.077ms total 70.659ms
I/DynamiteModule: Considering local module com.google.android.gms.flags:2 and remote module com.google.android.gms.flags:0
I/DynamiteModule: Selected local version of com.google.android.gms.flags
W/DynamiteModule: Local module descriptor class for com.google.android.gms.crash not found.
I/DynamiteModule: Considering local module com.google.android.gms.crash:0 and remote module com.google.android.gms.crash:4
I/DynamiteModule: Selected remote version of com.google.android.gms.crash, version >= 4
W/System: ClassLoader referenced unknown path: /data/user/0/com.google.android.gms/app_chimera/m/00000012/n/armeabi-v7a
W/System: ClassLoader referenced unknown path: /data/user/0/com.google.android.gms/app_chimera/m/00000012/n/armeabi
I/FirebaseCrashApiImpl: FirebaseCrashApiImpl created by ClassLoader p[DexPathList[[zip file "/data/data/com.google.android.gms/app_chimera/m/00000012/DynamiteModulesC_GmsCore_prodmnc_hdpi_release.apk"],nativeLibraryDirectories=[/data/user/0/com.google.android.gms/app_chimera/m/00000012/n/armeabi-v7a, /data/user/0/com.google.android.gms/app_chimera/m/00000012/n/armeabi, /vendor/lib, /system/lib]]]
I/DynamiteModule: Considering local module com.google.android.gms.flags:2 and remote module com.google.android.gms.flags:0
I/DynamiteModule: Selected local version of com.google.android.gms.flags
W/DynamiteModule: Local module descriptor class for com.google.android.gms.crash not found.
I/FA: App measurement is starting up, version: 10084
I/FA: To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
D/FA: Debug-level message logging enabled
D/FA: AppMeasurement singleton hash: 198168520
V/FA: Collection enabled
V/FA: App package, google app id: com.abc.xxx, 1:987905869088:android:e7f50263e7b8aa58
I/FA: To enable faster debug mode event logging run:
adb shell setprop debug.firebase.analytics.app com.getsportalapp.sportal
V/FA: Registered activity lifecycle callback
I/FirebaseCrash: FirebaseCrash reporting initialized com.google.android.gms.internal.zzbks#e551d72
I/FirebaseInitProvider: FirebaseApp initialization successful
V/FA: Using measurement service
V/FA: Connecting to remote service
W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
W/com.facebook.appevents.AppEventsLogger: activateApp events are being logged automatically. There's no need to call activateApp explicitly, this is safe to remove.
I/GAC: Building GoogleApiClient
I/CrashlyticsCore: Initializing Crashlytics 2.3.15.167
V/FA: Connection attempt already in progress
V/FA: Activity resumed, time: 824779068
D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: false
D/signedIn: onAuthStateChanged:signed_in:ShXMXdc5kHUQZWG3lGudJtt2
I/DynamiteModule: Considering local module com.google.android.gms.firebase_database:4 and remote module com.google.android.gms.firebase_database:5
I/DynamiteModule: Selected remote version of com.google.android.gms.firebase_database, version >= 5
I/OpenGLRenderer: Initialized EGL, version 1.4
I/MaliEGL: [Mali]window_type=1, is_framebuffer=0, errnum = 0
I/MaliEGL: [Mali]surface->num_buffers=4, surface->num_frames=3, win_min_undequeued=1
I/MaliEGL: [Mali]max_allowed_dequeued_buffers=3
E/RecyclerView: No adapter attached; skipping layout
D/FA: Connected to remote service
V/FA: Processing queued up service tasks: 2
E/RecyclerView: No adapter attached; skipping layout
D/getInvitation: getInvitation: no deep link found.
D/called: again
D/cLat: 2.8418744
D/cLng: 8.7791019
I/MaliEGL: [Mali]window_type=1, is_framebuffer=0, errnum = 0
I/MaliEGL: [Mali]surface->num_buffers=4, surface->num_frames=3, win_min_undequeued=1
I/MaliEGL: [Mali]max_allowed_dequeued_buffers=3
W/PersistentConnection: pc_0 - Using an unspecified index. Consider adding '".indexOn": "g"' at geofire to your security and Firebase Database rules for better performance
W/PersistentConnection: pc_0 - Using an unspecified index. Consider adding '".indexOn": "g"' at geofire to your security and Firebase Database rules for better performance
W/PersistentConnection: pc_0 - Using an unspecified index. Consider adding '".indexOn": "g"' at geofire to your security and Firebase Database rules for better performance
W/PersistentConnection: pc_0 - Using an unspecified index. Consider adding '".indexOn": "g"' at geofire to your security and Firebase Database rules for better performance
W/Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
W/System: ClassLoader referenced unknown path: /data/user/0/com.google.android.gms/app_chimera/m/00000010/n/armeabi
D/DynamitePackage: Instantiated singleton DynamitePackage.
D/DynamitePackage: Instantiating com.google.android.gms.ads.ChimeraAdManagerCreatorImpl
I/DynamiteModule: Considering local module com.google.android.gms.piccard.dynamite:0 and remote module com.google.android.gms.piccard.dynamite:12
I/DynamiteModule: Selected remote version of com.google.android.gms.piccard.dynamite, version >= 12
W/System: ClassLoader referenced unknown path: /data/user/0/com.google.android.gms/app_chimera/m/00000010/n/armeabi
W/VideoCapabilities: Unrecognized profile/level 32768/2 for video/mp4v-es
I/VideoCapabilities: Unsupported profile 8 for video/mp4v-es
I/VideoCapabilities: Unsupported profile 8 for video/mp4v-es
I/VideoCapabilities: Unsupported profile 8 for video/mp4v-es
I/VideoCapabilities: Unsupported profile 8 for video/mp4v-es
I/VideoCapabilities: Unsupported profile 8 for video/mp4v-es
I/VideoCapabilities: Unsupported profile 8 for video/mp4v-es
I/VideoCapabilities: Unsupported profile 4 for video/mp4v-es
I/Ads: Starting ad request.
I/WebViewFactory: Loading com.google.android.webview version 53.0.2785.124 (code 278512400)
D/diffAnother: -6283000
I/art: Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.ServiceWorkerControllerAdapter>
I/art: Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.ServiceWorkerControllerAdapter>
I/art: Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.TokenBindingManagerAdapter>
I/art: Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.TokenBindingManagerAdapter>
I/cr_LibraryLoader: Time to load native libraries: 6 ms (timestamps 5738-5744)
I/cr_LibraryLoader: Expected native library version number "53.0.2785.124", actual native library version number "53.0.2785.124"
V/WebViewChromiumFactoryProvider: Binding Chromium to main looper Looper (main, tid 1) {611ead6}
I/cr_LibraryLoader: Expected native library version number "53.0.2785.124", actual native library version number "53.0.2785.124"
I/chromium: [INFO:library_loader_hooks.cc(151)] Chromium logging enabled: level = 0, default verbosity = 0
I/cr_BrowserStartup: Initializing chromium process, singleProcess=true
W/cr_media: Requires BLUETOOTH permission
W/cr_AwContents: onDetachedFromWindow called when already detached. Ignoring
I/cr_Ime: ImeThread is not enabled.
E/libEGL: validate_display:255 error 3008 (EGL_BAD_DISPLAY)
W/cr_BindingManager: Cannot call determinedVisibility() - never saw a connection for the pid: 13399
I/DynamiteModule: Considering local module com.google.android.gms.tagmanager:8 and remote module com.google.android.gms.tagmanager:9
I/DynamiteModule: Selected remote version of com.google.android.gms.tagmanager, version >= 9
W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
W/GoogleTagManager: No container asset found in /assets/containers. Checking top level /assets directory for container assets.
W/GoogleTagManager: Tag Manager's event handler WILL NOT be installed (no container loaded)
I/GoogleTagManager: Tag Manager initilization took 213ms
V/FA: Using measurement service
V/FA: Connecting to remote service
D/FA: Connected to remote service
V/FA: Processing queued up service tasks: 1
I/Ads: Scheduling ad refresh 45000 milliseconds from now.
W/cr_AwContents: onDetachedFromWindow called when already detached. Ignoring
I/cr_Ime: ImeThread is not enabled.
I/Ads: Ad finished loading.
W/cr_BindingManager: Cannot call determinedVisibility() - never saw a connection for the pid: 13399
I/chromium: [INFO:CONSOLE(0)] "Document was loaded from Application Cache with manifest https://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40-loader.appcache", source: https://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40-loader.html (0)
I/chromium: [INFO:CONSOLE(0)] "Application Cache Checking event", source: https://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40-loader.html (0)
I/chromium: [INFO:CONSOLE(0)] "Application Cache NoUpdate event", source: https://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40-loader.html (0)
D/diffAnother: 1129000
D/DynamitePackage: Instantiating com.google.android.gms.ads.ChimeraAdManagerCreatorImpl
I/Ads: Starting ad request.
D/diffAnother: -6300000
W/cr_AwContents: onDetachedFromWindow called when already detached. Ignoring
I/cr_Ime: ImeThread is not enabled.
W/cr_BindingManager: Cannot call determinedVisibility() - never saw a connection for the pid: 13399
I/Ads: Scheduling ad refresh 45000 milliseconds from now.
I/Ads: Ad finished loading.
V/FA: Using measurement service
V/FA: Connecting to remote service
D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=29568, _sc=MainActivity, _si=-6311178554893906199}]
V/FA: Using measurement service
V/FA: Connection attempt already in progress
V/FA: Activity paused, time: 824808635
D/FA: Connected to remote service
V/FA: Processing queued up service tasks: 2
W/com.facebook.appevents.AppEventsLogger: activateApp events are being logged automatically. There's no need to call activateApp explicitly, this is safe to remove.
I/MaliEGL: [Mali]window_type=1, is_framebuffer=0, errnum = 0
I/MaliEGL: [Mali]surface->num_buffers=4, surface->num_frames=3, win_min_undequeued=1
I/MaliEGL: [Mali]max_allowed_dequeued_buffers=3
D/call1: called
D/call2: called
D/call1: called
D/call2: called
D/error1: ERROR1
D/error1: ERROR1
I/MaliEGL: [Mali]window_type=1, is_framebuffer=0, errnum = 0
I/MaliEGL: [Mali]surface->num_buffers=4, surface->num_frames=3, win_min_undequeued=1
I/MaliEGL: [Mali]max_allowed_dequeued_buffers=3
V/RenderScript: 0xb8457a88 Launching thread(s), CPUs 4
I/MaliEGL: [Mali]window_type=1, is_framebuffer=0, errnum = 0
I/MaliEGL: [Mali]surface->num_buffers=4, surface->num_frames=3, win_min_undequeued=1
I/MaliEGL: [Mali]max_allowed_dequeued_buffers=3
V/FA: Inactivity, disconnecting from the service
I/MaliEGL: [Mali]window_type=1, is_framebuffer=0, errnum = 0
I/MaliEGL: [Mali]surface->num_buffers=4, surface->num_frames=3, win_min_undequeued=1
I/MaliEGL: [Mali]max_allowed_dequeued_buffers=3
I/MaliEGL: [Mali]window_type=1, is_framebuffer=0, errnum = 0
I/MaliEGL: [Mali]surface->num_buffers=4, surface->num_frames=3, win_min_undequeued=1
I/MaliEGL: [Mali]max_allowed_dequeued_buffers=3
I/Ads: Ad is not visible. Not refreshing ad.
I/Ads: Scheduling ad refresh 60000 milliseconds from now.
I/Ads: Ad is not visible. Not refreshing ad.
I/Ads: Scheduling ad refresh 60000 milliseconds from now.
Application terminated.
I tried integrating crashlytics but even it doesn't show any error when the app crashes in this manner.
The question is how will I be able to fix the error if I don't even know what the error is?
Please help me with this.
I think the issue is related to your ad view.
In last line it is showing that ad is not visible.

App crash when I click on device back button android

when I click on back button my application crashes
This happen in all my pages I have 3 activity and other are fragments in my application I am not getting who is creating this problem
this the full logcat I am not getting any error in my connection or any where but when I click device back button app crashes
09-13 15:00:32.366 3843-3843/com.example.user.soulsystem I/art: Not late-enabling -Xcheck:jni (already on)
09-13 15:00:32.492 3843-3843/com.example.user.soulsystem W/System: ClassLoader referenced unknown path: /data/app/com.example.user.soulsystem-1/lib/x86
09-13 15:00:47.049 3843-3843/com.example.user.soulsystem W/System: ClassLoader referenced unknown path: /data/app/com.example.user.soulsystem-1/lib/x86
09-13 15:00:47.069 3843-3843/com.example.user.soulsystem D/FirebaseApp: com.google.firebase.auth.FirebaseAuth is not linked. Skipping initialization.
09-13 15:00:47.078 3843-3843/com.example.user.soulsystem W/InstanceID/Rpc: Found 10008
09-13 15:00:47.081 3843-3843/com.example.user.soulsystem D/FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization.
09-13 15:00:47.107 3843-3843/com.example.user.soulsystem I/FA: App measurement is starting up, version: 9452
09-13 15:00:47.108 3843-3843/com.example.user.soulsystem I/FA: To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
09-13 15:00:47.151 3843-3843/com.example.user.soulsystem I/FirebaseInitProvider: FirebaseApp initialization successful
09-13 15:00:47.232 3843-3843/com.example.user.soulsystem W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
09-13 15:00:47.984 3843-3849/com.example.user.soulsystem W/art: Suspending all threads took: 30.062ms
09-13 15:00:47.987 3843-3843/com.example.user.soulsystem W/art: Verification of android.view.View android.support.v7.app.AppCompatViewInflater.createView(android.view.View, java.lang.String, android.content.Context, android.util.AttributeSet, boolean, boolean, boolean, boolean) took 495.933ms
09-13 15:00:47.988 3843-3853/com.example.user.soulsystem I/art: Background partial concurrent mark sweep GC freed 1579(368KB) AllocSpace objects, 4(80KB) LOS objects, 39% free, 2MB/3MB, paused 440us total 484.103ms
09-13 15:00:48.118 3843-4245/com.example.user.soulsystem D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: true [
09-13 15:00:48.142 3843: 3843 D/ HostConnection::get() New Host Connection established 0xab1d6140, tid 3843
09-13 15:00:48.188 3843: 4245 D/ HostConnection::get() New Host Connection established 0xaec47600, tid 4245
09-13 15:00:48.191 3843-4245/com.example.user.soulsystem I/OpenGLRenderer: Initialized EGL, version 1.4
09-13 15:00:53.820 3843-3849/com.example.user.soulsystem W/art: Suspending all threads took: 87.047ms
09-13 15:00:58.115 3843-4232/com.example.user.soulsystem I/FA: Tag Manager is not found and thus will not be used
09-13 15:02:23.664 3843-5617/com.example.user.soulsystem D/Volley: [221] BasicNetwork.logSlowRequests: HTTP response for request=<[ ] http://192.168.1.10/soulsystem/loginall.php 0x676929bb NORMAL 1> [lifetime=3118], [size=189], [rc=200], [retryCount=1]
09-13 15:02:23.827 3843-3843/com.example.user.soulsystem D/ClientRegistration: Login Response: {"error":false,"error_msg":"Finding Consultancy","uid":"57d245518c9643.05931211","user":{"name":"Ram Waghmare","email":"ram#gmail.com","created_at":"2016-09-09 10:44:57","updated_at":null}}
09-13 15:02:23.832 3843-4245/com.example.user.soulsystem E/Surface: getSlotFromBufferLocked: unknown buffer: 0xa31a2540
09-13 15:02:23.840 3843-3843/com.example.user.soulsystem D/Soulsystem: IN try catch
09-13 15:02:24.073 3843-3843/com.example.user.soulsystem D/SessionManager: User login session modified!
09-13 15:02:24.625 3843-3843/com.example.user.soulsystem D/SQLiteHandler: Database tables created
09-13 15:02:24.994 3843-3843/com.example.user.soulsystem D/SQLiteHandler: New user inserted into sqlite: 1
09-13 15:02:25.028 3843-3843/com.example.user.soulsystem D/Volley: [1] Request.finish: 4483 ms: [ ] http://192.168.1.10/soulsystem/loginall.php 0x676929bb NORMAL 1
09-13 15:02:25.028 3843-3843/com.example.user.soulsystem I/Choreographer: Skipped 71 frames! The application may be doing too much work on its main thread.
09-13 15:02:25.071 3843-3843/com.example.user.soulsystem I/AppCompatViewInflater: app:theme is now deprecated. Please move to using android:theme instead.
09-13 15:02:25.215 3843-3843/com.example.user.soulsystem D/SQLiteHandler: Fetching user from Sqlite: {email=ram#gmail.com, name=Ram Waghmare, created_at=2016-09-09 10:44:57, uid=57d245518c9643.05931211}
09-13 15:02:25.215 3843-3843/com.example.user.soulsystem D/Soulsystem: Ram Waghmare
09-13 15:02:25.215 3843-3843/com.example.user.soulsystem D/Soulsystem: ram#gmail.com
09-13 15:02:25.268 3843-3843/com.example.user.soulsystem W/ActionBarDrawerToggle: DrawerToggle may not show up because NavigationIcon is not visible. You may need to call actionbar.setDisplayHomeAsUpEnabled(true);
09-13 15:02:25.489 3843-4245/com.example.user.soulsystem E/Surface: getSlotFromBufferLocked: unknown buffer: 0xa31a2460
09-13 15:03:18.027 3843-3849/com.example.user.soulsystem W/art: Suspending all threads took: 6.244ms
09-13 15:03:34.556 3843-3849/com.example.user.soulsystem W/art: Suspending all threads took: 7.122ms
09-13 15:05:58.974 3843-3843/com.example.user.soulsystem D/NavigationMenu: In profile Image view
[ 09-13 15:06:13.139 1604: 1882 D/ ]
HostConnection::get() New Host Connection established 0x9ad14230, tid 1882
09-13 15:06:13.360 3843-3843/com.example.user.soulsystem D/FirebaseApp: Notifying background state change listeners.
09-13 15:06:13.366 3843-4245/com.example.user.soulsystem E/Surface: getSlotFromBufferLocked: unknown buffer: 0xa31a2770
09-13 15:13:27.679 15191-15191/com.example.user.soulsystem W/System: ClassLoader referenced unknown path: /data/app/com.example.user.soulsystem-1/lib/x86
09-13 15:13:27.716 15191-15191/com.example.user.soulsystem D/FirebaseApp: com.google.firebase.auth.FirebaseAuth is not linked. Skipping initialization.
09-13 15:13:27.733 15191-15191/com.example.user.soulsystem D/FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization.
09-13 15:13:27.766 15191-15191/com.example.user.soulsystem I/FA: App measurement is starting up, version: 9452
09-13 15:13:27.766 15191-15191/com.example.user.soulsystem I/FA: To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
09-13 15:13:27.795 15191-15191/com.example.user.soulsystem I/FirebaseInitProvider: FirebaseApp initialization successful
09-13 15:13:27.857 15191-15191/com.example.user.soulsystem W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
09-13 15:13:27.937 15191-15191/com.example.user.soulsystem I/AppCompatViewInflater: app:theme is now deprecated. Please move to using android:theme instead.
09-13 15:13:28.061 15191-15191/com.example.user.soulsystem D/SQLiteHandler: Fetching user from Sqlite: {email=ram#gmail.com, name=Ram Waghmare, created_at=2016-09-09 10:44:57, uid=57d245518c9643.05931211}
09-13 15:13:28.061 15191-15191/com.example.user.soulsystem D/Soulsystem: Ram Waghmare
09-13 15:13:28.061 15191-15191/com.example.user.soulsystem D/Soulsystem: ram#gmail.com
09-13 15:13:28.065 15191-15191/com.example.user.soulsystem W/ActionBarDrawerToggle: DrawerToggle may not show up because NavigationIcon is not visible. You may need to call actionbar.setDisplayHomeAsUpEnabled(true);
09-13 15:13:28.071 15191-15273/com.example.user.soulsystem D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: true
[ 09-13 15:13:28.075 15191:15191 D/ ]
HostConnection::get() New Host Connection established 0xaaace1a0, tid 15191
[ 09-13 15:13:28.107 15191:15273 D/ ]
HostConnection::get() New Host Connection established 0xaaace5c0, tid 15273
09-13 15:13:28.111 15191-15273/com.example.user.soulsystem I/OpenGLRenderer: Initialized EGL, version 1.4
09-13 15:13:31.233 15191-15191/com.example.user.soulsystem D/FirebaseApp: Notifying background state change listeners.
09-13 15:13:31.243 15191-15273/com.example.user.soulsystem E/Surface: getSlotFromBufferLocked: unknown buffer: 0xab1f0b70
09-13 15:13:32.265 15191-15270/com.example.user.soulsystem I/FA: Tag Manager is not found and thus will not be used
09-13 15:13:34.089 15191-15191/com.example.user.soulsystem D/FirebaseApp: Notifying background state change listeners.
09-13 15:13:34.188 15191-15191/com.example.user.soulsystem I/AppCompatViewInflater: app:theme is now deprecated. Please move to using android:theme instead.
09-13 15:13:34.212 15191-15191/com.example.user.soulsystem D/SQLiteHandler: Fetching user from Sqlite: {email=ram#gmail.com, name=Ram Waghmare, created_at=2016-09-09 10:44:57, uid=57d245518c9643.05931211}
09-13 15:13:34.212 15191-15191/com.example.user.soulsystem D/Soulsystem: Ram Waghmare
09-13 15:13:34.212 15191-15191/com.example.user.soulsystem D/Soulsystem: ram#gmail.com
09-13 15:13:34.213 15191-15191/com.example.user.soulsystem W/ActionBarDrawerToggle: DrawerToggle may not show up because NavigationIcon is not visible. You may need to call actionbar.setDisplayHomeAsUpEnabled(true);
09-13 15:13:38.875 15191-15191/com.example.user.soulsystem D/FirebaseApp: Notifying background state change listeners.
09-13 15:13:38.879 15191-15273/com.example.user.soulsystem E/Surface: getSlotFromBufferLocked: unknown buffer: 0xab1f0be0
09-13 15:13:41.251 15191-15191/com.example.user.soulsystem D/FirebaseApp: Notifying background state change listeners.
09-13 15:13:41.327 15191-15191/com.example.user.soulsystem I/AppCompatViewInflater: app:theme is now deprecated. Please move to using android:theme instead.
09-13 15:13:41.393 15191-15191/com.example.user.soulsystem D/SQLiteHandler: Fetching user from Sqlite: {email=ram#gmail.com, name=Ram Waghmare, created_at=2016-09-09 10:44:57, uid=57d245518c9643.05931211}
09-13 15:13:41.393 15191-15191/com.example.user.soulsystem D/Soulsystem: Ram Waghmare
09-13 15:13:41.393 15191-15191/com.example.user.soulsystem D/Soulsystem: ram#gmail.com
09-13 15:13:41.394 15191-15191/com.example.user.soulsystem W/ActionBarDrawerToggle: DrawerToggle may not show up because NavigationIcon is not visible. You may need to call actionbar.setDisplayHomeAsUpEnabled(true);
09-13 15:18:45.102 15191-15197/com.example.user.soulsystem W/art: Suspending all threads took: 7.875ms
09-13 15:19:29.694 15191-15197/com.example.user.soulsystem W/art: Suspending all threads took: 6.903ms
09-13 15:19:37.196 15191-15197/com.example.user.soulsystem W/art: Suspending all threads took: 6.748ms
09-13 15:20:12.361 21039-21039/com.example.user.soulsystem W/System: ClassLoader referenced unknown path: /data/app/com.example.user.soulsystem-1/lib/x86
09-13 15:20:15.446 21039-21039/com.example.user.soulsystem W/System: ClassLoader referenced unknown path: /data/app/com.example.user.soulsystem-1/lib/x86
09-13 15:20:15.463 21039-21039/com.example.user.soulsystem D/FirebaseApp: com.google.firebase.auth.FirebaseAuth is not linked. Skipping initialization.
09-13 15:20:15.477 21039-21039/com.example.user.soulsystem D/FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization.
09-13 15:20:15.517 21039-21039/com.example.user.soulsystem I/FA: App measurement is starting up, version: 9452
09-13 15:20:15.517 21039-21039/com.example.user.soulsystem I/FA: To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
09-13 15:20:15.541 21039-21039/com.example.user.soulsystem I/FirebaseInitProvider: FirebaseApp initialization successful
09-13 15:20:15.606 21039-21039/com.example.user.soulsystem W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
09-13 15:20:15.777 21039-21049/com.example.user.soulsystem I/art: Background partial concurrent mark sweep GC freed 6738(1363KB) AllocSpace objects, 49(820KB) LOS objects, 41% free, 1462KB/2MB, paused 301us total 152.112ms
09-13 15:20:15.826 21039-21039/com.example.user.soulsystem I/AppCompatViewInflater: app:theme is now deprecated. Please move to using android:theme instead.
09-13 15:20:15.955 21039-21039/com.example.user.soulsystem D/SQLiteHandler: Fetching user from Sqlite: {email=ram#gmail.com, name=Ram Waghmare, created_at=2016-09-09 10:44:57, uid=57d245518c9643.05931211}
09-13 15:20:15.955 21039-21039/com.example.user.soulsystem D/Soulsystem: Ram Waghmare
09-13 15:20:15.955 21039-21039/com.example.user.soulsystem D/Soulsystem: ram#gmail.com
09-13 15:20:15.966 21039-21122/com.example.user.soulsystem D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: true
[ 09-13 15:20:15.972 21039:21039 D/ ]
HostConnection::get() New Host Connection established 0xaaacde40, tid 21039
[ 09-13 15:20:16.013 21039:21122 D/ ]
HostConnection::get() New Host Connection established 0xaec47600, tid 21122
09-13 15:20:16.016 21039-21122/com.example.user.soulsystem I/OpenGLRenderer: Initialized EGL, version 1.4
09-13 15:20:17.984 21039-21045/com.example.user.soulsystem W/art: Suspending all threads took: 7.043ms
09-13 15:20:42.993 21039-21039/com.example.user.soulsystem I/ListPopupWindow: Could not find method setEpicenterBounds(Rect) on PopupWindow. Oh well.
09-13 15:20:43.035 21039-21039/com.example.user.soulsystem W/art: Before Android 4.1, method int android.support.v7.widget.ListViewCompat.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView
09-13 15:20:43.941 21039-21122/com.example.user.soulsystem E/Surface: getSlotFromBufferLocked: unknown buffer: 0xa2904bc0
09-13 15:20:43.944 21039-21122/com.example.user.soulsystem D/OpenGLRenderer: endAllStagingAnimators on 0xa261c600 (MenuPopupWindow$MenuDropDownListView) with handle 0xaec52fa0
09-13 15:20:47.274 21039-21122/com.example.user.soulsystem E/Surface: getSlotFromBufferLocked: unknown buffer: 0xa2904bc0
09-13 15:20:47.278 21039-21122/com.example.user.soulsystem D/OpenGLRenderer: endAllStagingAnimators on 0xa14a2d80 (MenuPopupWindow$MenuDropDownListView) with handle 0xab33f630
09-13 15:21:05.931 21039-21112/com.example.user.soulsystem W/System: ClassLoader referenced unknown path: /data/data/com.example.user.soulsystem/lib
09-13 15:21:05.992 21039-21039/com.example.user.soulsystem I/AppCompatViewInflater: app:theme is now deprecated. Please move to using android:theme instead.
09-13 15:21:05.999 21039-21039/com.example.user.soulsystem D/SQLiteHandler: Fetching user from Sqlite: {email=ram#gmail.com, name=Ram Waghmare, created_at=2016-09-09 10:44:57, uid=57d245518c9643.05931211}
09-13 15:21:05.999 21039-21039/com.example.user.soulsystem D/Soulsystem: Ram Waghmare
09-13 15:21:05.999 21039-21039/com.example.user.soulsystem D/Soulsystem: ram#gmail.com
09-13 15:21:06.009 21039-21122/com.example.user.soulsystem E/Surface: getSlotFromBufferLocked: unknown buffer: 0xa2904b50
09-13 15:21:06.150 21039-21122/com.example.user.soulsystem V/RenderScript: 0xa1e12000 Launching thread(s), CPUs 2
09-13 15:21:07.974 21039-21122/com.example.user.soulsystem E/Surface: getSlotFromBufferLocked: unknown buffer: 0xa2904ed0
09-13 15:21:10.712 21039-21122/com.example.user.soulsystem E/Surface: getSlotFromBufferLocked: unknown buffer: 0xa2904f40
09-13 15:21:17.190 21039-21122/com.example.user.soulsystem E/Surface: getSlotFromBufferLocked: unknown buffer: 0xa29035e0
09-13 15:21:27.843 21039-21122/com.example.user.soulsystem E/Surface: getSlotFromBufferLocked: unknown buffer: 0xa2903570
09-13 15:23:27.349 21039-21045/com.example.user.soulsystem W/art: Suspending all threads took: 11.127ms
09-13 15:25:31.502 25691-25691/com.example.user.soulsystem W/System: ClassLoader referenced unknown path: /data/app/com.example.user.soulsystem-1/lib/x86
09-13 15:25:35.414 25691-25691/com.example.user.soulsystem W/System: ClassLoader referenced unknown path: /data/app/com.example.user.soulsystem-1/lib/x86
09-13 15:25:35.430 25691-25691/com.example.user.soulsystem D/FirebaseApp: com.google.firebase.auth.FirebaseAuth is not linked. Skipping initialization.
09-13 15:25:35.463 25691-25691/com.example.user.soulsystem D/FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization.
09-13 15:25:35.488 25691-25691/com.example.user.soulsystem I/FA: App measurement is starting up, version: 9452
09-13 15:25:35.488 25691-25691/com.example.user.soulsystem I/FA: To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
09-13 15:25:35.513 25691-25691/com.example.user.soulsystem I/FirebaseInitProvider: FirebaseApp initialization successful
09-13 15:25:35.605 25691-25691/com.example.user.soulsystem W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
09-13 15:25:35.694 25691-25691/com.example.user.soulsystem I/AppCompatViewInflater: app:theme is now deprecated. Please move to using android:theme instead.
09-13 15:25:35.825 25691-25691/com.example.user.soulsystem D/SQLiteHandler: Fetching user from Sqlite: {email=ram#gmail.com, name=Ram Waghmare, created_at=2016-09-09 10:44:57, uid=57d245518c9643.05931211}
09-13 15:25:35.825 25691-25691/com.example.user.soulsystem D/Soulsystem: Ram Waghmare
09-13 15:25:35.825 25691-25691/com.example.user.soulsystem D/Soulsystem: ram#gmail.com
09-13 15:25:35.834 25691-25786/com.example.user.soulsystem D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: true
[ 09-13 15:25:35.840 25691:25691 D/ ]
HostConnection::get() New Host Connection established 0xb2f28600, tid 25691
[ 09-13 15:25:35.874 25691:25786 D/ ]
HostConnection::get() New Host Connection established 0xaec47600, tid 25786
09-13 15:25:35.877 25691-25786/com.example.user.soulsystem I/OpenGLRenderer: Initialized EGL, version 1.4
09-13 15:26:48.624 25691-25697/com.example.user.soulsystem W/art: Suspending all threads took: 7.614ms
Did you call actionbar.setDisplayHomeAsUpEnabled(true) in your code?
Please try this
#Override
public void onBackPressed() {
super.onBackPressed();
finish();
}
there is another good reference is here

How do you prevent android apps from crashing when you have many activities?

I'm new to android and am making an app which features many activities and a user prefs get edited during almost every one, and it seems that it randomly starts crashing 6 or 7 activities in, and opening up a different activity from a couple of pages ago, but only sometimes. I do everything exactly the same each time and I don't know what causes it to crash. Usually it will crash back to a different intent and let me continue from there. Here is the logcat after a crash:
10-31 13:01:52.122 2542-2542/? I/art: Not late-enabling -Xcheck:jni (already on)
10-31 13:01:52.253 2542-2542/? I/art: Rejecting re-init on previously-failed class java.lang.Class<android.support.v4.hardware.fingerprint.FingerprintManagerCompatApi23$1>
10-31 13:01:52.253 2542-2542/? I/art: Rejecting re-init on previously-failed class java.lang.Class<android.support.v4.hardware.fingerprint.FingerprintManagerCompatApi23$1>
10-31 13:01:52.360 2542-2542/? W/art: Before Android 4.1, method int android.support.v7.internal.widget.ListViewCompat.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView
10-31 13:01:52.516 2542-2558/? D/OpenGLRenderer: Render dirty regions requested: true
10-31 13:01:52.517 2542-2542/? D/: HostConnection::get() New Host Connection established 0xa66e01b0, tid 2542
10-31 13:01:52.522 2542-2542/? D/Atlas: Validating map...
10-31 13:01:52.569 2542-2558/? D/: HostConnection::get() New Host Connection established 0xa66e0260, tid 2558
10-31 13:01:52.578 2542-2558/? I/OpenGLRenderer: Initialized EGL, version 1.4
10-31 13:01:52.592 2542-2558/? D/OpenGLRenderer: Enabling debug mode 0
10-31 13:01:52.602 2542-2558/? W/EGL_emulation: eglSurfaceAttrib not implemented
10-31 13:01:52.602 2542-2558/? W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xa66b4b20, error=EGL_SUCCESS

Android limitation

I have one application in android when i run that application it shows that exception
09-13 16:38:25.049: WARN/dalvikvm(269): VFY: arbitrarily rejecting large method (regs=132 count=21332)
09-13 16:38:25.049: WARN/dalvikvm(269): VFY: rejected Lcom/ExtraCharge/Calc;.onClick (Landroid/view/View;)V
09-13 16:38:25.059: WARN/dalvikvm(269): Verifier rejected class Lcom/ExtraCharge/Calc;
09-13 16:38:25.059: WARN/dalvikvm(269): Class init failed in newInstance call (Lcom/ExtraCharge/Calc;)
09-13 16:38:34.883: WARN/ActivityManager(64): Launch timeout has expired, giving up wake lock!
09-13 16:38:34.999: WARN/ActivityManager(64): Activity idle timeout for HistoryRecord{43f8da58 com.ExtraCharge/.Calc}
Do you have any solution for that problem?
This may be of use:
http://www.mail-archive.com/android-developers#googlegroups.com/msg86311.html

Categories

Resources