microsoft / appcenter-sdk-react-native

Development repository for the App Center SDK for React Native
Other
416 stars 136 forks source link

onPushNotificationReceived not firing on Android when app is closed #631

Closed JasonFehr closed 5 years ago

JasonFehr commented 5 years ago

Description

onPushNotificationReceived not firing on Android when I click on the received push notification when the app is closed. When the app is in the background or already open, it works fine. Everything works perfectly on iOS. I'm fairly sure this worked a few months ago then stopped working, but I'm not certain.

Repro Steps

Please list the steps used to reproduce your issue.

  1. Ensure the app is closed
  2. Send a push notification to Android
  3. Click the received notification, the app opens but onPushNotificationReceived does not fire, so I can't handle the push's content.

Details

  1. Which version of the App Center SDK are you using? Version 1.8.1

  2. Which OS version did you experience the issue on? Android 5.0.1 on physical phone, 8.1.0 on Android Studio emulator

  3. What device version did you see this error on? Were you using an emulator or a physical device? Both Samsung Galaxy S4 physical device and a Nexus 6 on the emulator.

  4. What third party libraries are you using? "react": "16.6.1", "react-native": "0.57.7", "react-native-router-flux": "^4.0.0-beta.28", "mobx": "^4.1.1", "mobx-react": "^5.0.0"

  5. Run the following command and paste the output below: react-native info

    React Native Environment Info: System: OS: macOS High Sierra 10.13.6 CPU: (8) x64 Intel(R) Core(TM) i7-4770HQ CPU @ 2.20GHz Memory: 25.86 MB / 16.00 GB Shell: 3.2.57 - /bin/bash Binaries: Node: 8.11.1 - /usr/local/bin/node Yarn: 1.16.0 - /usr/local/bin/yarn npm: 6.9.0 - /usr/local/bin/npm Watchman: 4.9.0 - /usr/local/bin/watchman SDKs: iOS SDK: Platforms: iOS 12.1, macOS 10.14, tvOS 12.1, watchOS 5.1 Android SDK: API Levels: 23, 25, 26, 27, 28 Build Tools: 23.0.1, 24.0.2, 25.0.2, 26.0.1, 26.0.2, 26.0.3, 27.0.3, 28.0.1 System Images: android-23 | Intel x86 Atom_64, android-23 | Google APIs Intel x86 Atom_64, android-27 | Google APIs Intel x86 Atom, android-28 | Android TV Intel x86 Atom, android-28 | Intel x86 Atom, android-28 | Intel x86 Atom_64, android-28 | Google APIs Intel x86 Atom, android-28 | Google APIs Intel x86 Atom_64, android-28 | Google Play Intel x86 Atom, android-28 | Google Play Intel x86 Atom_64 IDEs: Android Studio: 3.3 AI-182.5107.16.33.5199772 Xcode: 10.1/10B61 - /usr/bin/xcodebuild npmPackages: react: 16.6.1 => 16.6.1 react-native: 0.57.7 => 0.57.7 npmGlobalPackages: react-native-cli: 2.0.1

  6. Please enable verbose logging for your app using [MSAppCenter setLogLevel: MSLogLevelVerbose]; before your call to [AppCenterReactNative register]; (or any other SDK registration). For Android, use AppCenter.setLogLevel(android.util.Log.VERBOSE); before your SoLoader.init call. Include the logs here:

2019-07-07 14:12:16.479 1662-1681/system_process I/ActivityManager: Start proc 6431:com.lemodpurern/u0a81 for broadcast com.lemodpurern/com.microsoft.appcenter.push.PushReceiver 2019-07-07 14:12:16.482 6431-6431/? W/zygote: Unexpected CPU variant for X86 using defaults: x86 2019-07-07 14:12:16.502 6431-6438/? I/zygote: Debugger is no longer active 2019-07-07 14:12:16.564 6431-6431/? V/FA: Registered activity lifecycle callback 2019-07-07 14:12:16.565 6431-6431/? D/FirebaseApp: com.google.firebase.auth.FirebaseAuth is not linked. Skipping initialization. 2019-07-07 14:12:16.565 6431-6431/? D/FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization. 2019-07-07 14:12:16.566 6431-6431/? I/FirebaseInitProvider: FirebaseApp initialization successful 2019-07-07 14:12:16.574 6431-6431/? D/SoLoader: init start 2019-07-07 14:12:16.575 6431-6431/? D/SoLoader: adding system library source: /vendor/lib 2019-07-07 14:12:16.575 6431-6431/? D/SoLoader: adding system library source: /system/lib 2019-07-07 14:12:16.576 6431-6431/? D/SoLoader: adding application source: com.facebook.soloader.DirectorySoSource[root = /data/app/com.lemodpurern-SqbgqyLQNWcpKllS3aMg-g==/lib/x86 flags = 0] 2019-07-07 14:12:16.576 6431-6431/? D/SoLoader: adding backup source: com.facebook.soloader.ApkSoSource[root = /data/data/com.lemodpurern/lib-main flags = 1] 2019-07-07 14:12:16.577 6431-6431/? D/SoLoader: Preparing SO source: com.facebook.soloader.DirectorySoSource[root = /system/lib flags = 2] 2019-07-07 14:12:16.577 6431-6431/? D/SoLoader: Preparing SO source: com.facebook.soloader.DirectorySoSource[root = /vendor/lib flags = 2] 2019-07-07 14:12:16.577 6431-6431/? D/SoLoader: Preparing SO source: com.facebook.soloader.DirectorySoSource[root = /data/app/com.lemodpurern-SqbgqyLQNWcpKllS3aMg-g==/lib/x86 flags = 0] 2019-07-07 14:12:16.577 6431-6431/? D/SoLoader: Preparing SO source: com.facebook.soloader.ApkSoSource[root = /data/data/com.lemodpurern/lib-main flags = 1] 2019-07-07 14:12:16.578 6431-6431/? V/fb-UnpackingSoSource: locked dso store /data/user/0/com.lemodpurern/lib-main 2019-07-07 14:12:16.582 6431-6431/? I/fb-UnpackingSoSource: dso store is up-to-date: /data/user/0/com.lemodpurern/lib-main 2019-07-07 14:12:16.582 6431-6431/? V/fb-UnpackingSoSource: releasing dso store lock for /data/user/0/com.lemodpurern/lib-main 2019-07-07 14:12:16.583 6431-6431/? D/SoLoader: init finish: 4 SO sources prepared 2019-07-07 14:12:16.583 6431-6431/? D/SoLoader: init exiting 2019-07-07 14:12:16.601 6431-6453/? W/FirebaseMessaging: Error while parsing timestamp in GCM event java.lang.NumberFormatException: s == null at java.lang.Integer.parseInt(Integer.java:570) at java.lang.Integer.parseInt(Integer.java:643) at com.google.firebase.messaging.zzb.zzb(Unknown Source:90) at com.google.firebase.messaging.zzb.zzc(Unknown Source:3) at com.google.firebase.messaging.FirebaseMessagingService.zzd(Unknown Source:348) at com.google.firebase.iid.zzg.run(Unknown Source:29) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636) at com.google.android.gms.common.util.concurrent.zza.run(Unknown Source:7) at java.lang.Thread.run(Thread.java:764) 2019-07-07 14:12:16.624 6431-6453/? W/FirebaseMessaging: Missing Default Notification Channel metadata in AndroidManifest. Default value will be used. 2019-07-07 14:12:16.630 6431-6449/? V/FA: Collection enabled 2019-07-07 14:12:16.630 6431-6449/? V/FA: App package, google app id: com.lemodpurern, 1:1019745092436:android:19d8dad689bf6de7 2019-07-07 14:12:16.631 6431-6449/? I/FA: App measurement is starting up, version: 12780 2019-07-07 14:12:16.631 6431-6449/? I/FA: To enable debug logging run: adb shell setprop log.tag.FA VERBOSE 2019-07-07 14:12:16.631 6431-6449/? I/FA: To enable faster debug mode event logging run: adb shell setprop debug.firebase.analytics.app com.lemodpurern 2019-07-07 14:12:16.631 6431-6449/? D/FA: Debug-level message logging enabled 2019-07-07 14:12:16.652 6457-6457/? W/zygote: Unexpected CPU variant for X86 using defaults: x86 2019-07-07 14:12:16.655 1662-5118/system_process I/ActivityManager: Start proc 6457:com.google.android.gms.unstable/u0a14 for service com.google.android.gms/.droidguard.DroidGuardService 2019-07-07 14:12:16.688 6431-6449/? V/FA: Connecting to remote service 2019-07-07 14:12:16.753 6457-6457/? I/zygote: The ClassLoaderContext is a special shared library. 2019-07-07 14:12:16.755 6457-6457/? I/chatty: uid=10014 com.google.android.gms.unstable identical 1 line 2019-07-07 14:12:16.764 6457-6457/? I/zygote: The ClassLoaderContext is a special shared library. 2019-07-07 14:12:16.766 6431-6449/? D/FA: Event not sent since app measurement is disabled 2019-07-07 14:12:16.794 6431-6449/? D/FA: Connected to remote service 2019-07-07 14:12:16.808 6431-6449/? V/FA: Processing queued up service tasks: 1 2019-07-07 14:12:16.885 8828-6480/com.google.android.gms I/EventLogChimeraService: Aggregate from 1562521383561 (log), 1562521383561 (data) 2019-07-07 14:12:16.904 6457-6457/? W/linker: "/data/user_de/0/com.google.android.gms/app_extracted_libs/x86/libconscrypt_gmscore_jni.so" unused DT entry: type 0xf arg 0x91 2019-07-07 14:12:16.906 6457-6457/? V/NativeCrypto: Registering com/google/android/gms/org/conscrypt/NativeCrypto's 279 native methods... 2019-07-07 14:12:16.928 6457-6457/? D/NetworkSecurityConfig: No Network Security Config specified, using platform default 2019-07-07 14:12:16.935 6457-6457/? I/ProviderInstaller: Installed default security provider GmsCore_OpenSSL 2019-07-07 14:12:17.069 6457-6483/? I/zygote: Deoptimizing boolean nvb.a(android.content.Context, java.io.File) due to JIT inline cache 2019-07-07 14:12:17.269 6457-6475/? I/DynamiteModule: Considering local module com.google.android.gms.googlecertificates:4 and remote module com.google.android.gms.googlecertificates:4 2019-07-07 14:12:17.269 6457-6475/? I/DynamiteModule: Selected local version of com.google.android.gms.googlecertificates 2019-07-07 14:12:17.279 6457-6475/? I/zygote: The ClassLoaderContext is a special shared library. 2019-07-07 14:12:17.444 2231-2743/com.google.android.gms.persistent W/Conscrypt: Could not set socket write timeout: java.lang.reflect.InvocationTargetException 2019-07-07 14:12:17.444 2231-2743/com.google.android.gms.persistent W/Conscrypt: at java.lang.reflect.Method.invoke(Native Method) 2019-07-07 14:12:17.444 2231-2743/com.google.android.gms.persistent W/Conscrypt: at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@12521024@12.5.21 (040700-189987672):13) 2019-07-07 14:12:17.444 2231-2743/com.google.android.gms.persistent W/Conscrypt: Caused by: android.system.ErrnoException: setsockopt failed: EBADF (Bad file descriptor) 2019-07-07 14:12:17.444 2231-2743/com.google.android.gms.persistent W/Conscrypt: at libcore.io.Linux.setsockoptTimeval(Native Method) 2019-07-07 14:12:17.445 2231-2743/com.google.android.gms.persistent W/Conscrypt: at libcore.io.ForwardingOs.setsockoptTimeval(ForwardingOs.java:175) 2019-07-07 14:12:17.500 2231-2743/com.google.android.gms.persistent W/Conscrypt: Could not set socket write timeout: java.lang.reflect.InvocationTargetException 2019-07-07 14:12:17.500 2231-2743/com.google.android.gms.persistent W/Conscrypt: at java.lang.reflect.Method.invoke(Native Method) 2019-07-07 14:12:17.500 2231-2743/com.google.android.gms.persistent W/Conscrypt: at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@12521024@12.5.21 (040700-189987672):13) 2019-07-07 14:12:17.500 2231-2743/com.google.android.gms.persistent W/Conscrypt: Caused by: android.system.ErrnoException: setsockopt failed: EBADF (Bad file descriptor) 2019-07-07 14:12:17.501 2231-2743/com.google.android.gms.persistent W/Conscrypt: at libcore.io.Linux.setsockoptTimeval(Native Method) 2019-07-07 14:12:17.501 2231-2743/com.google.android.gms.persistent W/Conscrypt: at libcore.io.ForwardingOs.setsockoptTimeval(ForwardingOs.java:175) 2019-07-07 14:12:17.554 2231-2743/com.google.android.gms.persistent W/GLSUser: [AppCertManager] IOException while requesting key: java.io.IOException: Invalid device key response. at gga.a(:com.google.android.gms@12521024@12.5.21 (040700-189987672):12) at gga.a(:com.google.android.gms@12521024@12.5.21 (040700-189987672):64) at gfy.a(:com.google.android.gms@12521024@12.5.21 (040700-189987672):8) at gfu.a(:com.google.android.gms@12521024@12.5.21 (040700-189987672):1) at gft.a(:com.google.android.gms@12521024@12.5.21 (040700-189987672):10) at com.google.android.gms.auth.account.be.legacy.AuthCronChimeraService.b(:com.google.android.gms@12521024@12.5.21 (040700-189987672):7) at fiw.call(:com.google.android.gms@12521024@12.5.21 (040700-189987672):3) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at nsg.run(:com.google.android.gms@12521024@12.5.21 (040700-189987672):27) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636) at nya.run(Unknown Source:7) at java.lang.Thread.run(Thread.java:764) 2019-07-07 14:12:18.417 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #updateMicroDetector [detectionMode: [mDetectionMode: [1]]] 2019-07-07 14:12:18.417 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0] 2019-07-07 14:12:18.417 2179-2179/com.google.android.googlequicksearchbox:search I/AudioController: Using mInputStreamFactoryBuilder 2019-07-07 14:12:18.422 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: onReady 2019-07-07 14:12:18.423 2179-4959/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Starting detection. 2019-07-07 14:12:18.424 2179-5836/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_starting com.google.android.apps.gsa.staticplugins.aa.c@134e148 2019-07-07 14:12:18.429 1526-6497/? I/AudioFlinger: AudioFlinger's thread 0xeb383f00 tid=6497 ready to run 2019-07-07 14:12:18.431 1526-16253/? E/AudioFlinger: not enough memory for AudioTrack size=131296 2019-07-07 14:12:18.431 1526-16253/? D/MemoryDealer: AudioTrack (0xefda62b0, size=4194304)

2019-07-07 14:15:12.722 1427-4289/? W/audio_hw_generic: Not supplying enough data to HAL, expected position 107005202 , only wrote 107004960

--------- beginning of system

2019-07-07 14:15:12.731 1662-10006/system_process I/ActivityManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x14000000 pkg=com.lemodpurern cmp=com.lemodpurern/.SplashActivity (has extras)} from uid 10081 2019-07-07 14:15:12.760 6431-6431/com.lemodpurern W/FirebaseMessaging: Error while parsing timestamp in GCM event java.lang.NumberFormatException: s == null at java.lang.Integer.parseInt(Integer.java:570) at java.lang.Integer.parseInt(Integer.java:643) at com.google.firebase.messaging.zzb.zzb(Unknown Source:90) at com.google.firebase.messaging.zzb.zzd(Unknown Source:108) at com.google.firebase.messaging.FirebaseMessagingService.zzc(Unknown Source:37) at com.google.firebase.iid.zzf.zza(Unknown Source:42) at com.google.firebase.iid.zzh.zzc(Unknown Source:89) at com.google.firebase.iid.zzh.zza(Unknown Source:32) at com.google.firebase.iid.FirebaseInstanceIdReceiver.zza(Unknown Source:117) at com.google.firebase.iid.FirebaseInstanceIdReceiver.onReceive(Unknown Source:20) at android.app.ActivityThread.handleReceiver(ActivityThread.java:3187) at android.app.ActivityThread.-wrap17(Unknown Source:0) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1672) at android.os.Handler.dispatchMessage(Handler.java:106) at android.os.Looper.loop(Looper.java:164) at android.app.ActivityThread.main(ActivityThread.java:6494) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:438) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:807) 2019-07-07 14:15:12.769 6431-6655/com.lemodpurern D/FA: Event not sent since app measurement is disabled 2019-07-07 14:15:12.804 1436-1436/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 14749696 2019-07-07 14:15:12.844 6431-6431/com.lemodpurern V/FA: onActivityCreated 2019-07-07 14:15:12.848 1662-4843/system_process I/ActivityManager: START u0 {cmp=com.lemodpurern/.MainActivity} from uid 10081 2019-07-07 14:15:12.862 1427-4289/? W/audio_hw_generic: Hardware backing HAL too slow, could only write 0 of 720 frames 2019-07-07 14:15:12.876 1427-4289/? W/audio_hw_generic: Hardware backing HAL too slow, could only write 0 of 720 frames 2019-07-07 14:15:12.940 2179-2608/com.google.android.googlequicksearchbox:search D/EGL_emulation: eglMakeCurrent: 0xe6186320: ver 3 0 (tinfo 0xe6183c10) 2019-07-07 14:15:12.973 6431-6431/com.lemodpurern V/FA: onActivityCreated 2019-07-07 14:15:12.995 6431-6431/com.lemodpurern D/AppCenterCrashes: Creating crashes module with crashListener ALWAYS_SEND 2019-07-07 14:15:12.998 2285-2417/com.google.android.apps.nexuslauncher D/EGL_emulation: eglMakeCurrent: 0xd1c1fbc0: ver 3 0 (tinfo 0xd1c2b6f0) 2019-07-07 14:15:13.015 6431-6431/com.lemodpurern D/ReactNative: [CodePush] Loading JS bundle from "assets://index.android.bundle" 2019-07-07 14:15:13.021 6431-6431/com.lemodpurern D/ReactNative: ReactInstanceManager.ctor() 2019-07-07 14:15:13.033 6431-6431/com.lemodpurern D/SoLoader: init exiting 2019-07-07 14:15:13.084 6431-6431/com.lemodpurern D/NetworkSecurityConfig: No Network Security Config specified, using platform default 2019-07-07 14:15:13.103 6431-6665/com.lemodpurern D/AppCenter: Network available netId: 101 2019-07-07 14:15:13.104 6431-6665/com.lemodpurern D/AppCenter: Available networks netIds: [101] 2019-07-07 14:15:13.140 6431-6431/com.lemodpurern D/ReactNative: ReactInstanceManager.createReactContextInBackground() 2019-07-07 14:15:13.140 6431-6431/com.lemodpurern D/ReactNative: ReactInstanceManager.recreateReactContextInBackgroundInner() 2019-07-07 14:15:13.142 6431-6431/com.lemodpurern D/ReactNative: ReactInstanceManager.onJSBundleLoadedFromServer() 2019-07-07 14:15:13.145 6431-6431/com.lemodpurern D/ReactNative: ReactInstanceManager.recreateReactContextInBackground() 2019-07-07 14:15:13.149 6431-6431/com.lemodpurern D/ReactNative: ReactInstanceManager.runCreateReactContextOnNewThread() 2019-07-07 14:15:13.161 6431-6668/com.lemodpurern D/SoLoader: About to load: libreactnativejni.so 2019-07-07 14:15:13.167 6431-6668/com.lemodpurern D/SoLoader: libreactnativejni.so not found on /data/data/com.lemodpurern/lib-main 2019-07-07 14:15:13.167 6431-6668/com.lemodpurern D/SoLoader: libreactnativejni.so found on /data/app/com.lemodpurern-SqbgqyLQNWcpKllS3aMg-g==/lib/x86 2019-07-07 14:15:13.167 6431-6668/com.lemodpurern D/SoLoader: Not resolving dependencies for libreactnativejni.so 2019-07-07 14:15:13.216 31836-31836/com.android.systemui D/StatusBar: disable 2019-07-07 14:15:13.282 6431-6669/com.lemodpurern W/unknown:InspectorPackagerConnection: Couldn't connect to packager, will silently retry 2019-07-07 14:15:13.285 6431-6655/com.lemodpurern D/FA: Setting app measurement enabled (FE): false 2019-07-07 14:15:13.286 6431-6655/com.lemodpurern V/FA: Setting measurementEnabled: false 2019-07-07 14:15:13.310 6431-6668/com.lemodpurern D/SoLoader: Loaded: libreactnativejni.so 2019-07-07 14:15:13.316 6431-6668/com.lemodpurern D/SoLoader: About to load: libfb.so 2019-07-07 14:15:13.318 6431-6668/com.lemodpurern D/SoLoader: libfb.so not found on /data/data/com.lemodpurern/lib-main 2019-07-07 14:15:13.318 6431-6668/com.lemodpurern D/SoLoader: libfb.so found on /data/app/com.lemodpurern-SqbgqyLQNWcpKllS3aMg-g==/lib/x86 2019-07-07 14:15:13.318 6431-6668/com.lemodpurern D/SoLoader: Not resolving dependencies for libfb.so 2019-07-07 14:15:13.343 6431-6668/com.lemodpurern D/SoLoader: About to load: libfb.so 2019-07-07 14:15:13.350 6431-6668/com.lemodpurern D/SoLoader: libfb.so not found on /data/data/com.lemodpurern/lib-main 2019-07-07 14:15:13.351 6431-6668/com.lemodpurern D/SoLoader: libfb.so found on /data/app/com.lemodpurern-SqbgqyLQNWcpKllS3aMg-g==/lib/x86 2019-07-07 14:15:13.351 6431-6668/com.lemodpurern D/SoLoader: Not resolving dependencies for libfb.so 2019-07-07 14:15:13.353 6431-6655/com.lemodpurern V/FA: Connecting to remote service 2019-07-07 14:15:13.354 6431-6668/com.lemodpurern I/zygote: Thread[22,tid=6668,Native,Thread*=0xe37e8c00,peer=0x12f28110,"Thread-4"] recursive attempt to load library "/data/app/com.lemodpurern-SqbgqyLQNWcpKllS3aMg-g==/lib/x86/libfb.so" 2019-07-07 14:15:13.354 6431-6668/com.lemodpurern D/SoLoader: Loaded: libfb.so 2019-07-07 14:15:13.359 6431-6668/com.lemodpurern D/SoLoader: Loaded: libfb.so 2019-07-07 14:15:13.370 6431-6668/com.lemodpurern D/ReactNative: ReactInstanceManager.createReactContext() 2019-07-07 14:15:13.372 6431-6655/com.lemodpurern D/FA: Event not sent since app measurement is disabled 2019-07-07 14:15:13.372 6431-6655/com.lemodpurern V/FA: Connection attempt already in progress 2019-07-07 14:15:13.373 6431-6655/com.lemodpurern V/FA: Activity resumed, time: 89673534 2019-07-07 14:15:13.400 1448-1469/? E/SurfaceFlinger: ro.sf.lcd_density must be defined as a build property 2019-07-07 14:15:13.402 31836-31836/com.android.systemui D/StatusBar: disable 2019-07-07 14:15:13.403 6431-6675/com.lemodpurern D/OpenGLRenderer: HWUI GL Pipeline 2019-07-07 14:15:13.428 6431-6660/com.lemodpurern E/AppCenterAnalytics: Transmission target may not be null or empty. 2019-07-07 14:15:13.447 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTGroupViewManager 2019-07-07 14:15:13.454 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTGroupShadowNode 2019-07-07 14:15:13.470 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTShapeViewManager 2019-07-07 14:15:13.470 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTShapeShadowNode 2019-07-07 14:15:13.476 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTTextViewManager 2019-07-07 14:15:13.476 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTTextShadowNode 2019-07-07 14:15:13.479 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.checkbox.ReactCheckBoxManager 2019-07-07 14:15:13.485 31836-31951/com.android.systemui D/EGL_emulation: eglMakeCurrent: 0xee0656a0: ver 3 0 (tinfo 0xe612c0e0) 2019-07-07 14:15:13.497 1436-1436/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 487424 2019-07-07 14:15:13.505 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.uimanager.LayoutShadowNode 2019-07-07 14:15:13.507 31836-31951/com.android.systemui D/EGL_emulation: eglMakeCurrent: 0xee0656a0: ver 3 0 (tinfo 0xe612c0e0) 2019-07-07 14:15:13.530 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.picker.ReactDialogPickerManager 2019-07-07 14:15:13.538 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.drawer.ReactDrawerLayoutManager 2019-07-07 14:15:13.542 6431-6431/com.lemodpurern W/unknown:ReactNative: Packager connection already open, nooping. 2019-07-07 14:15:13.545 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.picker.ReactDropdownPickerManager 2019-07-07 14:15:13.547 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactHorizontalScrollViewManager 2019-07-07 14:15:13.555 1436-1436/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 487424 2019-07-07 14:15:13.562 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactHorizontalScrollContainerViewManager 2019-07-07 14:15:13.564 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.progressbar.ReactProgressBarViewManager 2019-07-07 14:15:13.564 31836-31951/com.android.systemui D/EGL_emulation: eglMakeCurrent: 0xee0656a0: ver 3 0 (tinfo 0xe612c0e0) 2019-07-07 14:15:13.566 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.progressbar.ProgressBarShadowNode 2019-07-07 14:15:13.568 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactScrollViewManager 2019-07-07 14:15:13.578 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.slider.ReactSliderManager 2019-07-07 14:15:13.584 1436-1436/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 14749696 2019-07-07 14:15:13.588 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.slider.ReactSliderManager$ReactSliderShadowNode 2019-07-07 14:15:13.605 1436-1436/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 14749696 2019-07-07 14:15:13.609 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.switchview.ReactSwitchManager 2019-07-07 14:15:13.625 31836-31951/com.android.systemui D/EGL_emulation: eglMakeCurrent: 0xee0656a0: ver 3 0 (tinfo 0xe612c0e0) 2019-07-07 14:15:13.627 1436-1481/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 14749696 2019-07-07 14:15:13.640 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.switchview.ReactSwitchManager$ReactSwitchShadowNode 2019-07-07 14:15:13.652 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.toolbar.ReactToolbarManager 2019-07-07 14:15:13.652 1436-1481/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 487424 2019-07-07 14:15:13.666 31836-31951/com.android.systemui D/EGL_emulation: eglMakeCurrent: 0xee0656a0: ver 3 0 (tinfo 0xe612c0e0) 2019-07-07 14:15:13.694 31836-31951/com.android.systemui D/EGL_emulation: eglMakeCurrent: 0xee0656a0: ver 3 0 (tinfo 0xe612c0e0) 2019-07-07 14:15:13.724 31836-31951/com.android.systemui D/EGL_emulation: eglMakeCurrent: 0xee0656a0: ver 3 0 (tinfo 0xe612c0e0) 2019-07-07 14:15:13.724 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.webview.ReactWebViewManager 2019-07-07 14:15:13.737 6431-6655/com.lemodpurern D/FA: Connected to remote service 2019-07-07 14:15:13.747 6431-6675/com.lemodpurern I/zygote: android::hardware::configstore::V1_0::ISurfaceFlingerConfigs::hasWideColorDisplay retrieved: 0 2019-07-07 14:15:13.747 6431-6675/com.lemodpurern I/OpenGLRenderer: Initialized EGL, version 1.4 2019-07-07 14:15:13.748 6431-6675/com.lemodpurern D/OpenGLRenderer: Swap behavior 1 2019-07-07 14:15:13.749 6431-6675/com.lemodpurern W/OpenGLRenderer: Failed to choose config with EGL_SWAP_BEHAVIOR_PRESERVED, retrying without... 2019-07-07 14:15:13.749 6431-6675/com.lemodpurern D/OpenGLRenderer: Swap behavior 0 2019-07-07 14:15:13.754 6431-6675/com.lemodpurern D/EGL_emulation: eglCreateContext: 0xedfb4260: maj 3 min 0 rcv 3 2019-07-07 14:15:13.755 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.swiperefresh.SwipeRefreshLayoutManager 2019-07-07 14:15:13.756 6431-6675/com.lemodpurern D/EGL_emulation: eglMakeCurrent: 0xedfb4260: ver 3 0 (tinfo 0xe612cc60) 2019-07-07 14:15:13.766 1448-1770/? E/SurfaceFlinger: ro.sf.lcd_density must be defined as a build property 2019-07-07 14:15:13.772 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTSurfaceViewManager 2019-07-07 14:15:13.772 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTSurfaceViewShadowNode 2019-07-07 14:15:13.777 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.frescosupport.FrescoBasedReactTextInlineImageViewManager 2019-07-07 14:15:13.778 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.frescosupport.FrescoBasedReactTextInlineImageShadowNode 2019-07-07 14:15:13.784 6431-6655/com.lemodpurern V/FA: Processing queued up service tasks: 2 2019-07-07 14:15:13.793 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.image.ReactImageManager 2019-07-07 14:15:13.839 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.modal.ReactModalHostManager 2019-07-07 14:15:13.850 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.modal.ModalHostShadowNode 2019-07-07 14:15:13.860 6431-6442/com.lemodpurern I/zygote: Background concurrent copying GC freed 12271(1031KB) AllocSpace objects, 8(224KB) LOS objects, 49% free, 2MB/4MB, paused 4.456ms total 275.274ms 2019-07-07 14:15:13.862 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactRawTextManager 2019-07-07 14:15:13.874 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactRawTextShadowNode 2019-07-07 14:15:13.893 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.textinput.ReactTextInputManager 2019-07-07 14:15:13.939 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.textinput.ReactTextInputShadowNode 2019-07-07 14:15:13.961 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactTextViewManager 2019-07-07 14:15:13.975 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactTextShadowNode 2019-07-07 14:15:13.977 6431-6675/com.lemodpurern D/EGL_emulation: eglMakeCurrent: 0xedfb4260: ver 3 0 (tinfo 0xe612cc60) 2019-07-07 14:15:13.982 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.view.ReactViewManager 2019-07-07 14:15:13.995 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.viewpager.ReactViewPagerManager 2019-07-07 14:15:14.003 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactVirtualTextViewManager 2019-07-07 14:15:14.007 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactVirtualTextShadowNode 2019-07-07 14:15:14.019 6431-6668/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.BV.LinearGradient.LinearGradientManager 2019-07-07 14:15:14.055 1662-1688/system_process I/ActivityManager: Displayed com.lemodpurern/.MainActivity: +1s134ms (total +1s285ms) 2019-07-07 14:15:14.089 6431-6436/com.lemodpurern I/zygote: Do partial code cache collection, code=30KB, data=25KB 2019-07-07 14:15:14.099 6431-6436/com.lemodpurern I/zygote: After code cache collection, code=29KB, data=25KB 2019-07-07 14:15:14.099 6431-6436/com.lemodpurern I/zygote: Increasing code cache capacity to 128KB 2019-07-07 14:15:14.119 1448-1448/? W/SurfaceFlinger: couldn't log to binary event log: overflow. 2019-07-07 14:15:14.137 6431-6668/com.lemodpurern D/AppCenterCrashes: Setting react context 2019-07-07 14:15:14.138 6431-6668/com.lemodpurern D/AppCenterCrashes: Returning list containing crashes module 2019-07-07 14:15:14.155 6431-6668/com.lemodpurern D/ReactNative: Initializing React Xplat Bridge. 2019-07-07 14:15:14.185 6431-6668/com.lemodpurern D/ReactNative: Initializing React Xplat Bridge before initializeBridge 2019-07-07 14:15:14.200 6431-6668/com.lemodpurern D/ReactNative: Initializing React Xplat Bridge after initializeBridge 2019-07-07 14:15:14.202 6431-6668/com.lemodpurern D/ReactNative: CatalystInstanceImpl.runJSBundle() 2019-07-07 14:15:14.207 6431-6684/com.lemodpurern D/ReactNative: ReactInstanceManager.setupReactContext() 2019-07-07 14:15:14.208 6431-6684/com.lemodpurern D/ReactNative: CatalystInstanceImpl.initialize() 2019-07-07 14:15:14.210 2179-6683/com.google.android.googlequicksearchbox:search I/PBSessionCacheImpl: Deleted sessionId[153064180962] from persistence. 2019-07-07 14:15:14.216 6431-6431/com.lemodpurern W/unknown:ReactNative: Packager connection already open, nooping. 2019-07-07 14:15:14.219 6431-6684/com.lemodpurern D/ReactNative: ReactInstanceManager.attachRootViewToInstance() 2019-07-07 14:15:14.220 6431-6684/com.lemodpurern D/SoLoader: About to load: libyoga.so 2019-07-07 14:15:14.221 6431-6684/com.lemodpurern D/SoLoader: libyoga.so not found on /data/data/com.lemodpurern/lib-main 2019-07-07 14:15:14.221 6431-6684/com.lemodpurern D/SoLoader: libyoga.so found on /data/app/com.lemodpurern-SqbgqyLQNWcpKllS3aMg-g==/lib/x86 2019-07-07 14:15:14.221 6431-6684/com.lemodpurern D/SoLoader: Not resolving dependencies for libyoga.so 2019-07-07 14:15:14.238 2179-2179/com.google.android.googlequicksearchbox:search W/SearchService: Abort, client detached. 2019-07-07 14:15:14.257 6431-6684/com.lemodpurern D/SoLoader: Loaded: libyoga.so 2019-07-07 14:15:14.382 6431-6684/com.lemodpurern D/SoLoader: init exiting 2019-07-07 14:15:14.513 2231-6166/com.google.android.gms.persistent I/Places: ?: PlacesBleScanner stop() 2019-07-07 14:15:14.515 2231-2231/com.google.android.gms.persistent I/BeaconBle: Scan : No clients left, canceling alarm. 2019-07-07 14:15:14.518 2231-2231/com.google.android.gms.persistent I/BeaconBle: Scan canceled successfully. 2019-07-07 14:15:14.559 2231-6166/com.google.android.gms.persistent I/PlaceInferenceEngine: [anon] Changed inference mode: 0 2019-07-07 14:15:14.607 1662-1670/system_process I/zygote: Background concurrent copying GC freed 60393(2MB) AllocSpace objects, 2(44KB) LOS objects, 34% free, 11MB/17MB, paused 634us total 149.319ms 2019-07-07 14:15:14.633 2231-2231/com.google.android.gms.persistent I/GeofencerStateMachine: removeGeofences: removeRequest=RemoveGeofencingRequest[REMOVE_BY_PENDING_INTENT pendingIntent=PendingIntent[creatorPackage=com.google.android.gms], packageName=null] 2019-07-07 14:15:14.890 6431-6684/com.lemodpurern I/WebViewFactory: Loading com.android.chrome version 61.0.3163.98 (code 316409812) 2019-07-07 14:15:14.903 6431-6684/com.lemodpurern I/zygote: The ClassLoaderContext is a special shared library. 2019-07-07 14:15:15.020 6431-6684/com.lemodpurern I/cr_LibraryLoader: Time to load native libraries: 11 ms (timestamps 5227-5238) 2019-07-07 14:15:15.035 6431-6684/com.lemodpurern I/chromium: [INFO:library_loader_hooks.cc(136)] Chromium logging enabled: level = 0, default verbosity = 0 2019-07-07 14:15:15.035 6431-6684/com.lemodpurern I/cr_LibraryLoader: Expected native library version number "61.0.3163.98", actual native library version number "61.0.3163.98" 2019-07-07 14:15:15.142 6431-6682/com.lemodpurern W/ReactNativeJS: Require cycle: node_modules/react-native-router-flux/dist/navigationStore.js -> node_modules/react-native-router-flux/dist/NavBar.js -> node_modules/react-native-router-flux/dist/navigationStore.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-07 14:15:15.157 6431-6682/com.lemodpurern W/ReactNativeJS: Require cycle: node_modules/react-native-router-flux/dist/Reducer.js -> node_modules/react-native-router-flux/dist/navigationStore.js -> node_modules/react-native-router-flux/dist/Reducer.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-07 14:15:15.186 6431-6682/com.lemodpurern W/ReactNativeJS: Require cycle: node_modules/rn-fetch-blob/index.js -> node_modules/rn-fetch-blob/polyfill/index.js -> node_modules/rn-fetch-blob/polyfill/Blob.js -> node_modules/rn-fetch-blob/index.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-07 14:15:15.188 6431-6682/com.lemodpurern W/ReactNativeJS: Require cycle: node_modules/rn-fetch-blob/index.js -> node_modules/rn-fetch-blob/polyfill/index.js -> node_modules/rn-fetch-blob/polyfill/XMLHttpRequest.js -> node_modules/rn-fetch-blob/index.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-07 14:15:15.189 6431-6682/com.lemodpurern W/ReactNativeJS: Require cycle: node_modules/rn-fetch-blob/index.js -> node_modules/rn-fetch-blob/polyfill/index.js -> node_modules/rn-fetch-blob/polyfill/FileReader.js -> node_modules/rn-fetch-blob/index.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-07 14:15:15.189 6431-6682/com.lemodpurern W/ReactNativeJS: Require cycle: node_modules/rn-fetch-blob/index.js -> node_modules/rn-fetch-blob/polyfill/index.js -> node_modules/rn-fetch-blob/polyfill/Fetch.js -> node_modules/rn-fetch-blob/index.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-07 14:15:15.209 6431-6682/com.lemodpurern W/ReactNativeJS: Require cycle: js/services/MiscHelper.js -> js/stores/ViewStore/AppViewStore.js -> js/services/MiscHelper.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-07 14:15:15.212 6431-6682/com.lemodpurern W/ReactNativeJS: Require cycle: js/stores/PatientInfoStore/PatientInfoStore.js -> js/services/MiscHelper.js -> js/stores/PatientInfoStore/PatientInfoStore.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-07 14:15:15.212 6431-6682/com.lemodpurern W/ReactNativeJS: Require cycle: js/stores/PatientInfoStore/PatientInfoStore.js -> js/services/LinkHelper.js -> js/stores/PatientInfoStore/PatientInfoStore.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-07 14:15:15.229 6431-6682/com.lemodpurern W/ReactNativeJS: Require cycle: js/stores/EntityStore/AuthStore.js -> js/stores/ViewStore/LoginViewStore.js -> js/services/AuthService.js -> js/services/ErrorHandler.js -> js/stores/EntityStore/AuthStore.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-07 14:15:15.230 6431-6682/com.lemodpurern W/ReactNativeJS: Require cycle: js/stores/ViewStore/LoginViewStore.js -> js/services/AuthService.js -> js/services/ErrorHandler.js -> js/stores/ViewStore/LoginViewStore.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-07 14:15:15.230 6431-6682/com.lemodpurern W/ReactNativeJS: Require cycle: js/stores/ViewStore/LoginViewStore.js -> js/services/LoginHelper.js -> js/stores/ViewStore/LoginViewStore.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-07 14:15:15.230 6431-6682/com.lemodpurern W/ReactNativeJS: Require cycle: js/stores/EntityStore/AuthStore.js -> js/stores/ViewStore/LoginViewStore.js -> js/services/LoginHelper.js -> js/stores/EntityStore/AuthStore.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-07 14:15:15.235 6431-6682/com.lemodpurern W/ReactNativeJS: Require cycle: js/stores/EntityStore/AuthStore.js -> js/stores/ViewStore/LoginViewStore.js -> js/services/LoginHelper.js -> js/services/PhotoHelper.js -> js/services/NotificationHelper.js -> js/stores/EntityStore/AuthStore.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-07 14:15:15.451 6431-6682/com.lemodpurern I/ReactNativeJS: Running application "LemodPureRN" with appParams: {"rootTag":1}. DEV === true, development-level warning are ON, performance optimizations are OFF 2019-07-07 14:15:15.555 6431-6682/com.lemodpurern I/ReactNativeJS: [CodePush] Checking for update. 2019-07-07 14:15:15.558 6431-6682/com.lemodpurern I/ReactNativeJS: [CodePush] Reporting binary update (5.1) 2019-07-07 14:15:15.568 31836-31951/com.android.systemui D/EGL_emulation: eglMakeCurrent: 0xee0656a0: ver 3 0 (tinfo 0xe612c0e0) 2019-07-07 14:15:15.805 6431-6436/com.lemodpurern I/zygote: Do partial code cache collection, code=60KB, data=48KB 2019-07-07 14:15:15.810 6431-6436/com.lemodpurern I/zygote: After code cache collection, code=60KB, data=48KB 2019-07-07 14:15:15.810 6431-6436/com.lemodpurern I/zygote: Increasing code cache capacity to 256KB 2019-07-07 14:15:15.864 6431-6442/com.lemodpurern I/zygote: Background concurrent copying GC freed 30779(1822KB) AllocSpace objects, 6(248KB) LOS objects, 50% free, 2MB/5MB, paused 2.078ms total 106.374ms 2019-07-07 14:15:15.932 1427-1589/? W/audio_hw_generic: Not supplying enough data to HAL, expected position 107311292 , only wrote 107159040 2019-07-07 14:15:16.113 6431-6682/com.lemodpurern I/ReactNativeJS: [CodePush] An unknown error occurred. 2019-07-07 14:15:16.114 6431-6682/com.lemodpurern I/ReactNativeJS: [CodePush] 400: An update check must include a valid deployment key - please check that your app has been configured correctly. To view available deployment keys, run 'code-push deployment ls -k'. 2019-07-07 14:15:16.124 6431-6682/com.lemodpurern I/ReactNativeJS: [CodePush] Report status failed: {"appVersion":"5.1"} 2019-07-07 14:15:16.516 6431-6705/com.lemodpurern D/SoLoader: About to load: libimagepipeline.so 2019-07-07 14:15:16.518 6431-6705/com.lemodpurern D/SoLoader: libimagepipeline.so not found on /data/data/com.lemodpurern/lib-main 2019-07-07 14:15:16.518 6431-6705/com.lemodpurern D/SoLoader: libimagepipeline.so found on /data/app/com.lemodpurern-SqbgqyLQNWcpKllS3aMg-g==/lib/x86 2019-07-07 14:15:16.519 6431-6705/com.lemodpurern D/SoLoader: Not resolving dependencies for libimagepipeline.so 2019-07-07 14:15:16.548 6431-6705/com.lemodpurern D/SoLoader: Loaded: libimagepipeline.so 2019-07-07 14:15:18.621 6431-6436/com.lemodpurern I/zygote: Do full code cache collection, code=100KB, data=99KB 2019-07-07 14:15:18.624 6431-6436/com.lemodpurern I/zygote: After code cache collection, code=87KB, data=69KB 2019-07-07 14:15:18.815 6431-6655/com.lemodpurern V/FA: Inactivity, disconnecting from the service 2019-07-07 14:15:19.248 2179-6707/com.google.android.googlequicksearchbox:search I/EventLogSendingHelper: Sending log events. 2019-07-07 14:15:19.535 2231-2231/com.google.android.gms.persistent I/BeaconBle: Scan : No clients left, canceling alarm. 2019-07-07 14:15:19.749 6431-6436/com.lemodpurern I/zygote: Do partial code cache collection, code=115KB, data=87KB 2019-07-07 14:15:19.759 6431-6442/com.lemodpurern I/zygote: Background concurrent copying GC freed 41790(1935KB) AllocSpace objects, 10(424KB) LOS objects, 50% free, 3MB/6MB, paused 5.057ms total 131.976ms 2019-07-07 14:15:19.767 6431-6436/com.lemodpurern I/zygote: After code cache collection, code=112KB, data=87KB 2019-07-07 14:15:19.767 6431-6436/com.lemodpurern I/zygote: Increasing code cache capacity to 512KB

guperrot commented 5 years ago

Hi, have you checked this section from https://docs.microsoft.com/en-us/appcenter/sdk/push/react-native-android#intercept-push-notifications:

Screen Shot 2019-07-08 at 11 46 06 AM
JasonFehr commented 5 years ago

Thank you, yes, I read that section and added that code (though it had to be public instead of protected for it to compile, plus I had to import android.content.Intent; as well) but it did not fix it.

Also, that issue seems to address push handling when the app is in the background, not closed, so I'm not sure it's the same issue.

guperrot commented 5 years ago

The onNewIntent addresses both background and closed issues. So that means something else is missing.

Push might not be initialized correctly as in verbose logs there is nothing related to Push for AppCenter. How is MainApplication.java looking like? Do you see push token being verbose logged on that device every time application is launched or not anymore?

JasonFehr commented 5 years ago

@guperrot Ah, I apologize, I was not verbose logging correctly, which is why you did not see the information related to Push for AppCenter.

For others trying to verbose log, verbose logging is done in MainApplication.java by adding this import (which I previously had not done correctly):

import com.microsoft.appcenter.AppCenter;

...and adding AppCenter.setLogLevel(android.util.Log.VERBOSE); ...to the onCreate method.

Here's my verbose log when opening the app from a push notification, hopefully it will help:

2019-07-08 21:59:35.936 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #updateMicroDetector [detectionMode: [mDetectionMode: [1]]] 2019-07-08 21:59:35.937 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0] 2019-07-08 21:59:35.937 2179-2179/com.google.android.googlequicksearchbox:search I/AudioController: Using mInputStreamFactoryBuilder 2019-07-08 21:59:35.939 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: onReady 2019-07-08 21:59:35.939 2179-12478/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Starting detection. 2019-07-08 21:59:35.944 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_starting com.google.android.apps.gsa.staticplugins.aa.c@91bad84 2019-07-08 21:59:35.946 1526-14402/? I/AudioFlinger: AudioFlinger's thread 0xeb383500 tid=14402 ready to run 2019-07-08 21:59:35.950 1437-1450/? D/hwcomposer: hw_composer sent 66 syncs in 179s 2019-07-08 21:59:35.951 1526-16001/? E/AudioFlinger: not enough memory for AudioTrack size=131296 2019-07-08 21:59:35.951 1526-16001/? D/MemoryDealer: AudioTrack (0xefda62b0, size=4194304) 0: 0xefda62c0 | 0x00000000 | 0x000200E0 | A 1: 0xefda62e0 | 0x000200E0 | 0x000200E0 | A 2: 0xefda6460 | 0x000401C0 | 0x000200E0 | A 3: 0xefda6630 | 0x000602A0 | 0x000200E0 | A 4: 0xefda67c0 | 0x00080380 | 0x000200E0 | A 5: 0xefda6990 | 0x000A0460 | 0x000200E0 | A 6: 0xefda6af0 | 0x000C0540 | 0x000200E0 | A 7: 0xf021e2e0 | 0x000E0620 | 0x000200E0 | A 8: 0xefda6cf0 | 0x00100700 | 0x000200E0 | A 9: 0xefda6f10 | 0x001207E0 | 0x000200E0 | A 10: 0xef3fe070 | 0x001408C0 | 0x000200E0 | A 11: 0xef3fe250 | 0x001609A0 | 0x000200E0 | A 12: 0xef3fe420 | 0x00180A80 | 0x000200E0 | A 13: 0xef3fe560 | 0x001A0B60 | 0x000200E0 | A 14: 0xef3fe5b0 | 0x001C0C40 | 0x000200E0 | A 15: 0xef3fe7a0 | 0x001E0D20 | 0x000200E0 | A 16: 0xf021e4c0 | 0x00200E00 | 0x000200E0 | A 17: 0xf021e590 | 0x00220EE0 | 0x000200E0 | A 18: 0xf021e3f0 | 0x00240FC0 | 0x000200E0 | A 19: 0xf021e760 | 0x002610A0 | 0x000200E0 | A

2019-07-08 21:59:35.951 1526-16001/? E/AudioFlinger: createRecordTrack_l() initCheck failed -12; no control block? 2019-07-08 21:59:35.951 2179-13999/com.google.android.googlequicksearchbox:search E/AudioRecord: AudioFlinger could not create record track, status: -12 2019-07-08 21:59:35.955 2179-13999/com.google.android.googlequicksearchbox:search E/AudioRecord-JNI: Error creating AudioRecord instance: initialization check failed with status -12. 2019-07-08 21:59:35.955 2179-13999/com.google.android.googlequicksearchbox:search E/android.media.AudioRecord: Error code -20 when initializing native AudioRecord object. 2019-07-08 21:59:35.955 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_started com.google.android.apps.gsa.staticplugins.aa.c@91bad84 2019-07-08 21:59:35.973 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: onReady 2019-07-08 21:59:35.975 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_close com.google.android.apps.gsa.staticplugins.aa.c@91bad84 2019-07-08 21:59:35.978 2179-12478/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Detection finished 2019-07-08 21:59:35.978 2179-12478/com.google.android.googlequicksearchbox:search W/ErrorReporter: reportError [type: 211, code: 524300]: Error reading from input stream 2019-07-08 21:59:35.979 2179-2778/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Stopping hotword detection. 2019-07-08 21:59:35.979 2179-12478/com.google.android.googlequicksearchbox:search W/ErrorProcessor: onFatalError, processing error from engine(4) com.google.android.apps.gsa.shared.speech.b.g: Error reading from input stream at com.google.android.apps.gsa.staticplugins.recognizer.j.a.a(SourceFile:28) at com.google.android.apps.gsa.staticplugins.recognizer.j.b.run(SourceFile:15) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at com.google.android.apps.gsa.shared.util.concurrent.a.ag.run(Unknown Source:4) at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4) at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636) at java.lang.Thread.run(Thread.java:764) at com.google.android.apps.gsa.shared.util.concurrent.a.ak.run(SourceFile:6) Caused by: com.google.android.apps.gsa.shared.exception.GsaIOException: Error code: 393238 | Buffer overflow, no available space. at com.google.android.apps.gsa.speech.audio.Tee.f(SourceFile:103) at com.google.android.apps.gsa.speech.audio.au.read(SourceFile:2) at java.io.InputStream.read(InputStream.java:101) at com.google.android.apps.gsa.speech.audio.ao.run(SourceFile:18) at com.google.android.apps.gsa.speech.audio.an.run(SourceFile:2) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)  at java.util.concurrent.FutureTask.run(FutureTask.java:266)  at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)  at java.util.concurrent.FutureTask.run(FutureTask.java:266)  at com.google.android.apps.gsa.shared.util.concurrent.a.ag.run(Unknown Source:4)  at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4)  at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4)  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)  at java.lang.Thread.run(Thread.java:764)  at com.google.android.apps.gsa.shared.util.concurrent.a.ak.run(SourceFile:6)  2019-07-08 21:59:35.979 2179-12478/com.google.android.googlequicksearchbox:search I/AudioController: internalShutdown 2019-07-08 21:59:35.981 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetector: Keeping mic open: false 2019-07-08 21:59:35.982 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #onError(false) 2019-07-08 21:59:35.983 2179-12470/com.google.android.googlequicksearchbox:search I/DeviceStateChecker: DeviceStateChecker cancelled 2019-07-08 21:59:35.986 2179-2201/com.google.android.googlequicksearchbox:search E/ReloadingLock: Finalizing LOCKED Token[shortcuts 2019-07-08 21:59:30.880] 2019-07-08 21:59:36.408 2231-14390/com.google.android.gms.persistent W/ctxmgr: [AclManager]No 2 for (accnt=account#-517948760#, com.google.android.gms(10014):UserLocationProducer, vrsn=12521000, 0, 3pPkg = null , 3pMdlId = null , pid = 2231). Was: 3 for 1, account#-517948760# 2019-07-08 21:59:39.593 1662-1870/system_process I/WifiService: getConnectionInfo uid=10014 2019-07-08 21:59:39.595 2231-11221/com.google.android.gms.persistent E/WakeLock: release without a matched acquire! 2019-07-08 21:59:39.623 2231-11225/com.google.android.gms.persistent W/GCM: Raising heartbeat interval to 230000, good=30 bad=0 2019-07-08 21:59:39.623 1662-6946/system_process I/WifiService: getConnectionInfo uid=10014 2019-07-08 21:59:40.487 1662-1680/system_process E/memtrack: Couldn't load memtrack module 2019-07-08 21:59:40.487 1662-1680/system_process W/android.os.Debug: failed to get memory consumption info: -1 2019-07-08 21:59:40.986 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #updateMicroDetector [detectionMode: [mDetectionMode: [1]]] 2019-07-08 21:59:40.986 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0] 2019-07-08 21:59:40.988 2179-2179/com.google.android.googlequicksearchbox:search I/AudioController: Using mInputStreamFactoryBuilder 2019-07-08 21:59:40.992 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: onReady 2019-07-08 21:59:40.993 2179-12478/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Starting detection. 2019-07-08 21:59:40.993 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_starting com.google.android.apps.gsa.staticplugins.aa.c@47e3d7f 2019-07-08 21:59:40.998 1526-14405/? I/AudioFlinger: AudioFlinger's thread 0xeb383780 tid=14405 ready to run 2019-07-08 21:59:41.000 1526-17300/? E/AudioFlinger: not enough memory for AudioTrack size=131296 2019-07-08 21:59:41.000 1526-17300/? D/MemoryDealer: AudioTrack (0xefda62b0, size=4194304) 0: 0xefda62c0 | 0x00000000 | 0x000200E0 | A 1: 0xefda62e0 | 0x000200E0 | 0x000200E0 | A 2: 0xefda6460 | 0x000401C0 | 0x000200E0 | A 3: 0xefda6630 | 0x000602A0 | 0x000200E0 | A 4: 0xefda67c0 | 0x00080380 | 0x000200E0 | A 5: 0xefda6990 | 0x000A0460 | 0x000200E0 | A 6: 0xefda6af0 | 0x000C0540 | 0x000200E0 | A 7: 0xf021e2e0 | 0x000E0620 | 0x000200E0 | A 8: 0xefda6cf0 | 0x00100700 | 0x000200E0 | A 9: 0xefda6f10 | 0x001207E0 | 0x000200E0 | A 10: 0xef3fe070 | 0x001408C0 | 0x000200E0 | A 11: 0xef3fe250 | 0x001609A0 | 0x000200E0 | A 12: 0xef3fe420 | 0x00180A80 | 0x000200E0 | A 13: 0xef3fe560 | 0x001A0B60 | 0x000200E0 | A 14: 0xef3fe5b0 | 0x001C0C40 | 0x000200E0 | A 15: 0xef3fe7a0 | 0x001E0D20 | 0x000200E0 | A 16: 0xf021e4c0 | 0x00200E00 | 0x000200E0 | A 17: 0xf021e590 | 0x00220EE0 | 0x000200E0 | A 18: 0xf021e3f0 | 0x00240FC0 | 0x000200E0 | A 19: 0xf021e760 | 0x002610A0 | 0x000200E0 | A

2019-07-08 21:59:41.000 1526-17300/? E/AudioFlinger: createRecordTrack_l() initCheck failed -12; no control block? 2019-07-08 21:59:41.000 2179-13999/com.google.android.googlequicksearchbox:search E/AudioRecord: AudioFlinger could not create record track, status: -12 2019-07-08 21:59:41.004 2179-13999/com.google.android.googlequicksearchbox:search E/AudioRecord-JNI: Error creating AudioRecord instance: initialization check failed with status -12. 2019-07-08 21:59:41.004 2179-13999/com.google.android.googlequicksearchbox:search E/android.media.AudioRecord: Error code -20 when initializing native AudioRecord object. 2019-07-08 21:59:41.004 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_started com.google.android.apps.gsa.staticplugins.aa.c@47e3d7f 2019-07-08 21:59:41.008 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: onReady 2019-07-08 21:59:41.014 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_close com.google.android.apps.gsa.staticplugins.aa.c@47e3d7f 2019-07-08 21:59:41.015 2179-12478/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Detection finished 2019-07-08 21:59:41.015 2179-12478/com.google.android.googlequicksearchbox:search W/ErrorReporter: reportError [type: 211, code: 524300]: Error reading from input stream 2019-07-08 21:59:41.016 2179-2778/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Stopping hotword detection. 2019-07-08 21:59:41.016 2179-12478/com.google.android.googlequicksearchbox:search W/ErrorProcessor: onFatalError, processing error from engine(4) com.google.android.apps.gsa.shared.speech.b.g: Error reading from input stream at com.google.android.apps.gsa.staticplugins.recognizer.j.a.a(SourceFile:28) at com.google.android.apps.gsa.staticplugins.recognizer.j.b.run(SourceFile:15) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at com.google.android.apps.gsa.shared.util.concurrent.a.ag.run(Unknown Source:4) at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4) at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636) at java.lang.Thread.run(Thread.java:764) at com.google.android.apps.gsa.shared.util.concurrent.a.ak.run(SourceFile:6) Caused by: com.google.android.apps.gsa.shared.exception.GsaIOException: Error code: 393238 | Buffer overflow, no available space. at com.google.android.apps.gsa.speech.audio.Tee.f(SourceFile:103) at com.google.android.apps.gsa.speech.audio.au.read(SourceFile:2) at java.io.InputStream.read(InputStream.java:101) at com.google.android.apps.gsa.speech.audio.ao.run(SourceFile:18) at com.google.android.apps.gsa.speech.audio.an.run(SourceFile:2) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)  at java.util.concurrent.FutureTask.run(FutureTask.java:266)  at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)  at java.util.concurrent.FutureTask.run(FutureTask.java:266)  at com.google.android.apps.gsa.shared.util.concurrent.a.ag.run(Unknown Source:4)  at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4)  at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4)  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)  at java.lang.Thread.run(Thread.java:764)  at com.google.android.apps.gsa.shared.util.concurrent.a.ak.run(SourceFile:6)  2019-07-08 21:59:41.016 2179-12478/com.google.android.googlequicksearchbox:search I/AudioController: internalShutdown 2019-07-08 21:59:41.035 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetector: Keeping mic open: false 2019-07-08 21:59:41.035 2179-14096/com.google.android.googlequicksearchbox:search I/DeviceStateChecker: DeviceStateChecker cancelled 2019-07-08 21:59:41.035 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #onError(false) 2019-07-08 21:59:41.037 1444-1444/? I/boot-pipe: done populating /dev/random 2019-07-08 21:59:46.044 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #updateMicroDetector [detectionMode: [mDetectionMode: [1]]] 2019-07-08 21:59:46.044 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0] 2019-07-08 21:59:46.044 2179-2179/com.google.android.googlequicksearchbox:search I/AudioController: Using mInputStreamFactoryBuilder 2019-07-08 21:59:46.046 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: onReady 2019-07-08 21:59:46.047 2179-14096/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Starting detection. 2019-07-08 21:59:46.048 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_starting com.google.android.apps.gsa.staticplugins.aa.c@e8518bd 2019-07-08 21:59:46.050 1526-14411/? I/AudioFlinger: AudioFlinger's thread 0xeb383800 tid=14411 ready to run 2019-07-08 21:59:46.052 1526-16001/? E/AudioFlinger: not enough memory for AudioTrack size=131296 2019-07-08 21:59:46.052 1526-16001/? D/MemoryDealer: AudioTrack (0xefda62b0, size=4194304) 0: 0xefda62c0 | 0x00000000 | 0x000200E0 | A 1: 0xefda62e0 | 0x000200E0 | 0x000200E0 | A 2: 0xefda6460 | 0x000401C0 | 0x000200E0 | A 3: 0xefda6630 | 0x000602A0 | 0x000200E0 | A 4: 0xefda67c0 | 0x00080380 | 0x000200E0 | A 5: 0xefda6990 | 0x000A0460 | 0x000200E0 | A 6: 0xefda6af0 | 0x000C0540 | 0x000200E0 | A 7: 0xf021e2e0 | 0x000E0620 | 0x000200E0 | A 8: 0xefda6cf0 | 0x00100700 | 0x000200E0 | A 9: 0xefda6f10 | 0x001207E0 | 0x000200E0 | A 10: 0xef3fe070 | 0x001408C0 | 0x000200E0 | A 11: 0xef3fe250 | 0x001609A0 | 0x000200E0 | A 12: 0xef3fe420 | 0x00180A80 | 0x000200E0 | A 13: 0xef3fe560 | 0x001A0B60 | 0x000200E0 | A 14: 0xef3fe5b0 | 0x001C0C40 | 0x000200E0 | A 15: 0xef3fe7a0 | 0x001E0D20 | 0x000200E0 | A 16: 0xf021e4c0 | 0x00200E00 | 0x000200E0 | A 17: 0xf021e590 | 0x00220EE0 | 0x000200E0 | A 18: 0xf021e3f0 | 0x00240FC0 | 0x000200E0 | A 19: 0xf021e760 | 0x002610A0 | 0x000200E0 | A

2019-07-08 21:59:46.052 1526-16001/? E/AudioFlinger: createRecordTrack_l() initCheck failed -12; no control block? 2019-07-08 21:59:46.052 2179-13999/com.google.android.googlequicksearchbox:search E/AudioRecord: AudioFlinger could not create record track, status: -12 2019-07-08 21:59:46.054 2179-13999/com.google.android.googlequicksearchbox:search E/AudioRecord-JNI: Error creating AudioRecord instance: initialization check failed with status -12. 2019-07-08 21:59:46.054 2179-13999/com.google.android.googlequicksearchbox:search E/android.media.AudioRecord: Error code -20 when initializing native AudioRecord object. 2019-07-08 21:59:46.054 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_started com.google.android.apps.gsa.staticplugins.aa.c@e8518bd 2019-07-08 21:59:46.057 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: onReady 2019-07-08 21:59:46.064 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_close com.google.android.apps.gsa.staticplugins.aa.c@e8518bd 2019-07-08 21:59:46.064 2179-14096/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Detection finished 2019-07-08 21:59:46.064 2179-14096/com.google.android.googlequicksearchbox:search W/ErrorReporter: reportError [type: 211, code: 524300]: Error reading from input stream 2019-07-08 21:59:46.064 2179-2778/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Stopping hotword detection. 2019-07-08 21:59:46.065 2179-14096/com.google.android.googlequicksearchbox:search W/ErrorProcessor: onFatalError, processing error from engine(4) com.google.android.apps.gsa.shared.speech.b.g: Error reading from input stream at com.google.android.apps.gsa.staticplugins.recognizer.j.a.a(SourceFile:28) at com.google.android.apps.gsa.staticplugins.recognizer.j.b.run(SourceFile:15) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at com.google.android.apps.gsa.shared.util.concurrent.a.ag.run(Unknown Source:4) at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4) at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636) at java.lang.Thread.run(Thread.java:764) at com.google.android.apps.gsa.shared.util.concurrent.a.ak.run(SourceFile:6) Caused by: com.google.android.apps.gsa.shared.exception.GsaIOException: Error code: 393238 | Buffer overflow, no available space. at com.google.android.apps.gsa.speech.audio.Tee.f(SourceFile:103) at com.google.android.apps.gsa.speech.audio.au.read(SourceFile:2) at java.io.InputStream.read(InputStream.java:101) at com.google.android.apps.gsa.speech.audio.ao.run(SourceFile:18) at com.google.android.apps.gsa.speech.audio.an.run(SourceFile:2) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)  at java.util.concurrent.FutureTask.run(FutureTask.java:266)  at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)  at java.util.concurrent.FutureTask.run(FutureTask.java:266)  at com.google.android.apps.gsa.shared.util.concurrent.a.ag.run(Unknown Source:4)  at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4)  at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4)  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)  at java.lang.Thread.run(Thread.java:764)  at com.google.android.apps.gsa.shared.util.concurrent.a.ak.run(SourceFile:6)  2019-07-08 21:59:46.065 2179-14096/com.google.android.googlequicksearchbox:search I/AudioController: internalShutdown 2019-07-08 21:59:46.069 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetector: Keeping mic open: false 2019-07-08 21:59:46.070 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #onError(false) 2019-07-08 21:59:46.070 2179-12470/com.google.android.googlequicksearchbox:search I/DeviceStateChecker: DeviceStateChecker cancelled 2019-07-08 21:59:46.409 2231-14100/com.google.android.gms.persistent W/ctxmgr: [AclManager]No 2 for (accnt=account#-517948760#, com.google.android.gms(10014):UserLocationProducer, vrsn=12521000, 0, 3pPkg = null , 3pMdlId = null , pid = 2231). Was: 3 for 1, account#-517948760# 2019-07-08 21:59:49.607 1662-1680/system_process E/memtrack: Couldn't load memtrack module 2019-07-08 21:59:49.608 1662-1680/system_process W/android.os.Debug: failed to get memory consumption info: -1 2019-07-08 21:59:51.077 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #updateMicroDetector [detectionMode: [mDetectionMode: [1]]] 2019-07-08 21:59:51.077 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0] 2019-07-08 21:59:51.078 2179-2179/com.google.android.googlequicksearchbox:search I/AudioController: Using mInputStreamFactoryBuilder 2019-07-08 21:59:51.083 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: onReady 2019-07-08 21:59:51.083 2179-14096/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Starting detection. 2019-07-08 21:59:51.083 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_starting com.google.android.apps.gsa.staticplugins.aa.c@59e986b 2019-07-08 21:59:51.086 1526-14414/? I/AudioFlinger: AudioFlinger's thread 0xeb383940 tid=14414 ready to run 2019-07-08 21:59:51.088 1526-16001/? E/AudioFlinger: not enough memory for AudioTrack size=131296 2019-07-08 21:59:51.088 1526-16001/? D/MemoryDealer: AudioTrack (0xefda62b0, size=4194304) 0: 0xefda62c0 | 0x00000000 | 0x000200E0 | A 1: 0xefda62e0 | 0x000200E0 | 0x000200E0 | A 2: 0xefda6460 | 0x000401C0 | 0x000200E0 | A 3: 0xefda6630 | 0x000602A0 | 0x000200E0 | A 4: 0xefda67c0 | 0x00080380 | 0x000200E0 | A 5: 0xefda6990 | 0x000A0460 | 0x000200E0 | A 6: 0xefda6af0 | 0x000C0540 | 0x000200E0 | A 7: 0xf021e2e0 | 0x000E0620 | 0x000200E0 | A 8: 0xefda6cf0 | 0x00100700 | 0x000200E0 | A 9: 0xefda6f10 | 0x001207E0 | 0x000200E0 | A 10: 0xef3fe070 | 0x001408C0 | 0x000200E0 | A 11: 0xef3fe250 | 0x001609A0 | 0x000200E0 | A 12: 0xef3fe420 | 0x00180A80 | 0x000200E0 | A 13: 0xef3fe560 | 0x001A0B60 | 0x000200E0 | A 14: 0xef3fe5b0 | 0x001C0C40 | 0x000200E0 | A 15: 0xef3fe7a0 | 0x001E0D20 | 0x000200E0 | A 16: 0xf021e4c0 | 0x00200E00 | 0x000200E0 | A 17: 0xf021e590 | 0x00220EE0 | 0x000200E0 | A 18: 0xf021e3f0 | 0x00240FC0 | 0x000200E0 | A 19: 0xf021e760 | 0x002610A0 | 0x000200E0 | A

2019-07-08 21:59:51.088 1526-16001/? E/AudioFlinger: createRecordTrack_l() initCheck failed -12; no control block? 2019-07-08 21:59:51.088 2179-13999/com.google.android.googlequicksearchbox:search E/AudioRecord: AudioFlinger could not create record track, status: -12 2019-07-08 21:59:51.091 2179-13999/com.google.android.googlequicksearchbox:search E/AudioRecord-JNI: Error creating AudioRecord instance: initialization check failed with status -12. 2019-07-08 21:59:51.091 2179-13999/com.google.android.googlequicksearchbox:search E/android.media.AudioRecord: Error code -20 when initializing native AudioRecord object. 2019-07-08 21:59:51.091 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_started com.google.android.apps.gsa.staticplugins.aa.c@59e986b 2019-07-08 21:59:51.101 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_close com.google.android.apps.gsa.staticplugins.aa.c@59e986b 2019-07-08 21:59:51.102 2179-14096/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Detection finished 2019-07-08 21:59:51.102 2179-14096/com.google.android.googlequicksearchbox:search W/ErrorReporter: reportError [type: 211, code: 524300]: Error reading from input stream 2019-07-08 21:59:51.103 2179-14096/com.google.android.googlequicksearchbox:search W/ErrorProcessor: onFatalError, processing error from engine(4) com.google.android.apps.gsa.shared.speech.b.g: Error reading from input stream at com.google.android.apps.gsa.staticplugins.recognizer.j.a.a(SourceFile:28) at com.google.android.apps.gsa.staticplugins.recognizer.j.b.run(SourceFile:15) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at com.google.android.apps.gsa.shared.util.concurrent.a.ag.run(Unknown Source:4) at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4) at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636) at java.lang.Thread.run(Thread.java:764) at com.google.android.apps.gsa.shared.util.concurrent.a.ak.run(SourceFile:6) Caused by: com.google.android.apps.gsa.shared.exception.GsaIOException: Error code: 393238 | Buffer overflow, no available space. at com.google.android.apps.gsa.speech.audio.Tee.f(SourceFile:103) at com.google.android.apps.gsa.speech.audio.au.read(SourceFile:2) at java.io.InputStream.read(InputStream.java:101) at com.google.android.apps.gsa.speech.audio.ao.run(SourceFile:18) at com.google.android.apps.gsa.speech.audio.an.run(SourceFile:2) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)  at java.util.concurrent.FutureTask.run(FutureTask.java:266)  at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)  at java.util.concurrent.FutureTask.run(FutureTask.java:266)  at com.google.android.apps.gsa.shared.util.concurrent.a.ag.run(Unknown Source:4)  at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4)  at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4)  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)  at java.lang.Thread.run(Thread.java:764)  at com.google.android.apps.gsa.shared.util.concurrent.a.ak.run(SourceFile:6)  2019-07-08 21:59:51.103 2179-14096/com.google.android.googlequicksearchbox:search I/AudioController: internalShutdown 2019-07-08 21:59:51.103 2179-2778/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Stopping hotword detection. 2019-07-08 21:59:51.117 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: onReady 2019-07-08 21:59:51.118 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetector: Keeping mic open: false 2019-07-08 21:59:51.118 2179-12470/com.google.android.googlequicksearchbox:search I/DeviceStateChecker: DeviceStateChecker cancelled 2019-07-08 21:59:51.118 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #onError(false) 2019-07-08 21:59:52.474 1662-2638/system_process I/WifiService: getConnectionInfo uid=10014 2019-07-08 21:59:52.488 14415-14415/? I/zygote: Not late-enabling -Xcheck:jni (already on)

--------- beginning of system

2019-07-08 21:59:52.493 1662-1681/system_process I/ActivityManager: Start proc 14415:com.lemodpurern/u0a81 for broadcast com.lemodpurern/com.microsoft.appcenter.push.PushReceiver 2019-07-08 21:59:52.505 14415-14415/? W/zygote: Unexpected CPU variant for X86 using defaults: x86 2019-07-08 21:59:52.523 14415-14422/? I/zygote: Debugger is no longer active 2019-07-08 21:59:52.563 14415-14415/? V/FA: Registered activity lifecycle callback 2019-07-08 21:59:52.565 14415-14415/? D/FirebaseApp: com.google.firebase.auth.FirebaseAuth is not linked. Skipping initialization. 2019-07-08 21:59:52.565 14415-14415/? D/FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization. 2019-07-08 21:59:52.566 14415-14415/? I/FirebaseInitProvider: FirebaseApp initialization successful 2019-07-08 21:59:52.573 14415-14415/? D/SoLoader: init start 2019-07-08 21:59:52.573 14415-14415/? D/SoLoader: adding system library source: /vendor/lib 2019-07-08 21:59:52.573 14415-14415/? D/SoLoader: adding system library source: /system/lib 2019-07-08 21:59:52.574 14415-14415/? D/SoLoader: adding application source: com.facebook.soloader.DirectorySoSource[root = /data/app/com.lemodpurern-FccI5QZckUyqS1r2ckfyOA==/lib/x86 flags = 0] 2019-07-08 21:59:52.574 14415-14415/? D/SoLoader: adding backup source: com.facebook.soloader.ApkSoSource[root = /data/data/com.lemodpurern/lib-main flags = 1] 2019-07-08 21:59:52.574 14415-14415/? D/SoLoader: Preparing SO source: com.facebook.soloader.DirectorySoSource[root = /system/lib flags = 2] 2019-07-08 21:59:52.574 14415-14415/? D/SoLoader: Preparing SO source: com.facebook.soloader.DirectorySoSource[root = /vendor/lib flags = 2] 2019-07-08 21:59:52.575 14415-14415/? D/SoLoader: Preparing SO source: com.facebook.soloader.DirectorySoSource[root = /data/app/com.lemodpurern-FccI5QZckUyqS1r2ckfyOA==/lib/x86 flags = 0] 2019-07-08 21:59:52.575 14415-14415/? D/SoLoader: Preparing SO source: com.facebook.soloader.ApkSoSource[root = /data/data/com.lemodpurern/lib-main flags = 1] 2019-07-08 21:59:52.576 14415-14415/? V/fb-UnpackingSoSource: locked dso store /data/user/0/com.lemodpurern/lib-main 2019-07-08 21:59:52.578 14415-14415/? I/fb-UnpackingSoSource: dso store is up-to-date: /data/user/0/com.lemodpurern/lib-main 2019-07-08 21:59:52.578 14415-14415/? V/fb-UnpackingSoSource: releasing dso store lock for /data/user/0/com.lemodpurern/lib-main 2019-07-08 21:59:52.578 14415-14415/? D/SoLoader: init finish: 4 SO sources prepared 2019-07-08 21:59:52.579 14415-14415/? D/SoLoader: init exiting 2019-07-08 21:59:52.583 14415-14415/? D/AppCenterPush: Received push intent=Intent { act=com.google.android.c2dm.intent.RECEIVE flg=0x11000010 pkg=com.lemodpurern cmp=com.lemodpurern/com.microsoft.appcenter.push.PushReceiver (has extras) } background=true google.sent_time=1562637592503 google.ttl=2419200 gcm.notification.e=1 gcm.notification.title=test 31 from=1019745092436 google.message_id=0:1562637592528728%6ba8c6706ba8c670 gcm.notification.body=test 31 google.c.a.e=1 collapse_key=com.lemodpurern routeMobile=REFER 2019-07-08 21:59:52.583 14415-14415/? D/AppCenterPush: Background notifications are handled by Firebase SDK when integrated. 2019-07-08 21:59:52.596 14415-14434/? V/FA: Collection enabled 2019-07-08 21:59:52.597 14415-14434/? V/FA: App package, google app id: com.lemodpurern, 1:1019745092436:android:19d8dad689bf6de7 2019-07-08 21:59:52.598 14415-14434/? I/FA: App measurement is starting up, version: 12780 2019-07-08 21:59:52.598 14415-14434/? I/FA: To enable debug logging run: adb shell setprop log.tag.FA VERBOSE 2019-07-08 21:59:52.598 14415-14434/? I/FA: To enable faster debug mode event logging run: adb shell setprop debug.firebase.analytics.app com.lemodpurern 2019-07-08 21:59:52.598 14415-14434/? D/FA: Debug-level message logging enabled 2019-07-08 21:59:52.600 14415-14438/? W/FirebaseMessaging: Error while parsing timestamp in GCM event java.lang.NumberFormatException: s == null at java.lang.Integer.parseInt(Integer.java:570) at java.lang.Integer.parseInt(Integer.java:643) at com.google.firebase.messaging.zzb.zzb(Unknown Source:90) at com.google.firebase.messaging.zzb.zzc(Unknown Source:3) at com.google.firebase.messaging.FirebaseMessagingService.zzd(Unknown Source:348) at com.google.firebase.iid.zzg.run(Unknown Source:29) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636) at com.google.android.gms.common.util.concurrent.zza.run(Unknown Source:7) at java.lang.Thread.run(Thread.java:764) 2019-07-08 21:59:52.615 14415-14438/? W/FirebaseMessaging: Missing Default Notification Channel metadata in AndroidManifest. Default value will be used. 2019-07-08 21:59:52.634 14415-14434/? V/FA: Connecting to remote service 2019-07-08 21:59:52.653 14415-14434/? D/FA: Event not sent since app measurement is disabled 2019-07-08 21:59:52.662 14415-14434/? D/FA: Connected to remote service 2019-07-08 21:59:52.664 14415-14434/? V/FA: Processing queued up service tasks: 1 2019-07-08 21:59:56.125 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #updateMicroDetector [detectionMode: [mDetectionMode: [1]]] 2019-07-08 21:59:56.125 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0] 2019-07-08 21:59:56.125 2179-2179/com.google.android.googlequicksearchbox:search I/AudioController: Using mInputStreamFactoryBuilder 2019-07-08 21:59:56.129 2179-12478/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Starting detection. 2019-07-08 21:59:56.130 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_starting com.google.android.apps.gsa.staticplugins.aa.c@6131409 2019-07-08 21:59:56.130 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: onReady 2019-07-08 21:59:56.137 1526-14447/? I/AudioFlinger: AudioFlinger's thread 0xeb383900 tid=14447 ready to run 2019-07-08 21:59:56.139 1526-17300/? E/AudioFlinger: not enough memory for AudioTrack size=131296 2019-07-08 21:59:56.140 1526-17300/? D/MemoryDealer: AudioTrack (0xefda62b0, size=4194304) 0: 0xefda62c0 | 0x00000000 | 0x000200E0 | A 1: 0xefda62e0 | 0x000200E0 | 0x000200E0 | A 2: 0xefda6460 | 0x000401C0 | 0x000200E0 | A 3: 0xefda6630 | 0x000602A0 | 0x000200E0 | A 4: 0xefda67c0 | 0x00080380 | 0x000200E0 | A 5: 0xefda6990 | 0x000A0460 | 0x000200E0 | A 6: 0xefda6af0 | 0x000C0540 | 0x000200E0 | A 7: 0xf021e2e0 | 0x000E0620 | 0x000200E0 | A 8: 0xefda6cf0 | 0x00100700 | 0x000200E0 | A 9: 0xefda6f10 | 0x001207E0 | 0x000200E0 | A 10: 0xef3fe070 | 0x001408C0 | 0x000200E0 | A 11: 0xef3fe250 | 0x001609A0 | 0x000200E0 | A 12: 0xef3fe420 | 0x00180A80 | 0x000200E0 | A 13: 0xef3fe560 | 0x001A0B60 | 0x000200E0 | A 14: 0xef3fe5b0 | 0x001C0C40 | 0x000200E0 | A 15: 0xef3fe7a0 | 0x001E0D20 | 0x000200E0 | A 16: 0xf021e4c0 | 0x00200E00 | 0x000200E0 | A 17: 0xf021e590 | 0x00220EE0 | 0x000200E0 | A 18: 0xf021e3f0 | 0x00240FC0 | 0x000200E0 | A 19: 0xf021e760 | 0x002610A0 | 0x000200E0 | A

2019-07-08 21:59:56.140 1526-17300/? E/AudioFlinger: createRecordTrack_l() initCheck failed -12; no control block? 2019-07-08 21:59:56.140 2179-13999/com.google.android.googlequicksearchbox:search E/AudioRecord: AudioFlinger could not create record track, status: -12 2019-07-08 21:59:56.142 2179-13999/com.google.android.googlequicksearchbox:search E/AudioRecord-JNI: Error creating AudioRecord instance: initialization check failed with status -12. 2019-07-08 21:59:56.142 2179-13999/com.google.android.googlequicksearchbox:search E/android.media.AudioRecord: Error code -20 when initializing native AudioRecord object. 2019-07-08 21:59:56.142 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_started com.google.android.apps.gsa.staticplugins.aa.c@6131409 2019-07-08 21:59:56.143 2179-13999/com.google.android.googlequicksearchbox:search E/ActivityThread: Failed to find provider info for com.google.android.apps.gsa.testing.ui.audio.recorded 2019-07-08 21:59:56.145 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_close com.google.android.apps.gsa.staticplugins.aa.c@6131409 2019-07-08 21:59:56.145 2179-12478/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Detection finished 2019-07-08 21:59:56.146 2179-12478/com.google.android.googlequicksearchbox:search W/ErrorReporter: reportError [type: 211, code: 524300]: Error reading from input stream 2019-07-08 21:59:56.146 2179-2778/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Stopping hotword detection. 2019-07-08 21:59:56.146 2179-12478/com.google.android.googlequicksearchbox:search W/ErrorProcessor: onFatalError, processing error from engine(4) com.google.android.apps.gsa.shared.speech.b.g: Error reading from input stream at com.google.android.apps.gsa.staticplugins.recognizer.j.a.a(SourceFile:28) at com.google.android.apps.gsa.staticplugins.recognizer.j.b.run(SourceFile:15) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at com.google.android.apps.gsa.shared.util.concurrent.a.ag.run(Unknown Source:4) at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4) at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636) at java.lang.Thread.run(Thread.java:764) at com.google.android.apps.gsa.shared.util.concurrent.a.ak.run(SourceFile:6) Caused by: com.google.android.apps.gsa.shared.exception.GsaIOException: Error code: 393238 | Buffer overflow, no available space. at com.google.android.apps.gsa.speech.audio.Tee.f(SourceFile:103) at com.google.android.apps.gsa.speech.audio.au.read(SourceFile:2) at java.io.InputStream.read(InputStream.java:101) at com.google.android.apps.gsa.speech.audio.ao.run(SourceFile:18) at com.google.android.apps.gsa.speech.audio.an.run(SourceFile:2) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)  at java.util.concurrent.FutureTask.run(FutureTask.java:266)  at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)  at java.util.concurrent.FutureTask.run(FutureTask.java:266)  at com.google.android.apps.gsa.shared.util.concurrent.a.ag.run(Unknown Source:4)  at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4)  at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4)  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)  at java.lang.Thread.run(Thread.java:764)  at com.google.android.apps.gsa.shared.util.concurrent.a.ak.run(SourceFile:6)  2019-07-08 21:59:56.147 2179-12478/com.google.android.googlequicksearchbox:search I/AudioController: internalShutdown 2019-07-08 21:59:56.171 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: onReady 2019-07-08 21:59:56.171 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetector: Keeping mic open: false 2019-07-08 21:59:56.171 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #onError(false) 2019-07-08 21:59:56.171 2179-12470/com.google.android.googlequicksearchbox:search I/DeviceStateChecker: DeviceStateChecker cancelled 2019-07-08 21:59:56.411 2231-14389/com.google.android.gms.persistent I/Places: Converted 0 out of 1 WiFi scans 2019-07-08 21:59:56.411 1662-6946/system_process I/WifiService: getConnectionInfo uid=10014 2019-07-08 21:59:56.414 1662-1805/system_process I/GnssLocationProvider: WakeLock acquired by sendMessage(SET_REQUEST, 0, com.android.server.location.GnssLocationProvider$GpsRequest@1a2c6fe) 2019-07-08 21:59:56.418 1662-1680/system_process I/GnssLocationProvider: WakeLock released by handleMessage(SET_REQUEST, 0, com.android.server.location.GnssLocationProvider$GpsRequest@1a2c6fe) 2019-07-08 21:59:56.422 2231-12929/com.google.android.gms.persistent W/ctxmgr: [AclManager]No 2 for (accnt=account#-517948760#, com.google.android.gms(10014):UserLocationProducer, vrsn=12521000, 0, 3pPkg = null , 3pMdlId = null , pid = 2231). Was: 3 for 1, account#-517948760# 2019-07-08 21:59:56.436 2231-14390/com.google.android.gms.persistent I/PlaceInferenceEngine: No beacon scan available - ignoring candidates. 2019-07-08 21:59:57.537 14415-14430/com.lemodpurern I/zygote: Waiting for a blocking GC ProfileSaver 2019-07-08 21:59:57.675 14415-14434/com.lemodpurern V/FA: Inactivity, disconnecting from the service 2019-07-08 22:00:00.003 1662-1662/system_process D/ConditionProviders.SCP: onReceive ScheduleConditionProvider.EVALUATE 2019-07-08 22:00:00.003 1662-1662/system_process D/ConditionProviders.SCP: notifyCondition condition://android/schedule?days=6.7&start=23.30&end=10.0&exitAtAlarm=false STATE_FALSE reason=!meetsSchedule 2019-07-08 22:00:00.003 1662-1662/system_process D/ConditionProviders.SCP: notifyCondition condition://android/schedule?days=1.2.3.4.5&start=22.0&end=7.0&exitAtAlarm=false STATE_TRUE reason=meetsSchedule 2019-07-08 22:00:00.003 1662-1662/system_process D/ConditionProviders.SCP: Scheduling evaluate for Mon Jul 08 23:30:00 EDT 2019 (1562643000000), in +1h29m59s997ms, now=Mon Jul 08 22:00:00 EDT 2019 (1562637600003) 2019-07-08 22:00:00.006 1662-1680/system_process E/memtrack: Couldn't load memtrack module 2019-07-08 22:00:00.006 1662-1680/system_process W/android.os.Debug: failed to get memory consumption info: -1 2019-07-08 22:00:00.008 1662-1662/system_process D/ZenLog: config: conditionChanged,ZenModeConfig[user=0,allowCalls=true,allowRepeatCallers=false,allowMessages=false,allowCallsFrom=contacts,allowMessagesFrom=contacts,allowReminders=true,allowEvents=true,allowWhenScreenOff=true,allowWhenScreenOn=true,automaticRules={EVENTS_DEFAULT_RULE=ZenRule[enabled=false,snoozing=false,name=Event,zenMode=ZEN_MODE_ALARMS,conditionId=condition://android/event?userId=-10000&calendar=&reply=1,condition=Condition[id=condition://android/event?userId=-10000&calendar=&reply=1,summary=...,line1=...,line2=...,icon=0,state=STATE_FALSE,flags=2],component=ComponentInfo{android/com.android.server.notification.EventConditionProvider},id=EVENTS_DEFAULT_RULE,creationTime=1526065319702,enabler=null], SCHEDULED_DEFAULT_RULE_1=ZenRule[enabled=false,snoozing=false,name=Weeknight,zenMode=ZEN_MODE_ALARMS,conditionId=condition://android/schedule?days=1.2.3.4.5&start=22.0&end=7.0&exitAtAlarm=false,condition=Condition[id=condition://android/schedule?days=1.2.3.4.5&start=22.0&end=7.0&exitAtAlarm=false,summary=...,line1=...,line2=...,icon=0,state=STATE_TRUE,flags=2],component=ComponentInfo{android/com.android.server.notification.ScheduleConditionProvider},id=SCHEDULED_DEFAULT_RULE_1,creationTime=1526065319701,enabler=null], SCHEDULED_DEFAULT_RULE_2=ZenRule[enabled=false,snoozing=false,name=Weekend,zenMode=ZEN_MODE_ALARMS,conditionId=condition://android/schedule?days=6.7&start=23.30&end=10.0&exitAtAlarm=false,condition=Condition[id=condition://android/schedule?days=6.7&start=23.30&end=10.0&exitAtAlarm=false,summary=...,line1=...,line2=...,icon=0,state=STATE_FALSE,flags=2],component=ComponentInfo{android/com.android.server.notification.ScheduleConditionProvider},id=SCHEDULED_DEFAULT_RULE_2,creationTime=1526065319701,enabler=null]},manualRule=null],Diff[automaticRule[SCHEDULED_DEFAULT_RULE_1].condition:Condition[id=condition://android/schedule?days=1.2.3.4.5&start=22.0&end=7.0&exitAtAlarm=false,summary=...,line1=...,line2=...,icon=0,state=STATE_FALSE,flags=2]->Condition[id=condition://android/schedule?days=1.2.3.4.5&start=22.0&end=7.0&exitAtAlarm=false,summary=...,line1=...,line2=...,icon=0,state=STATE_TRUE,flags=2]] 2019-07-08 22:00:00.020 1662-1662/system_process D/ZenLog: set_zen_mode: off,conditionChanged 2019-07-08 22:00:01.178 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #updateMicroDetector [detectionMode: [mDetectionMode: [1]]] 2019-07-08 22:00:01.178 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0] 2019-07-08 22:00:01.181 2179-2179/com.google.android.googlequicksearchbox:search I/AudioController: Using mInputStreamFactoryBuilder 2019-07-08 22:00:01.185 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: onReady 2019-07-08 22:00:01.185 2179-14096/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Starting detection. 2019-07-08 22:00:01.186 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_starting com.google.android.apps.gsa.staticplugins.aa.c@a163f17 2019-07-08 22:00:01.190 1526-14451/? I/AudioFlinger: AudioFlinger's thread 0xeb383040 tid=14451 ready to run 2019-07-08 22:00:01.192 1526-16001/? E/AudioFlinger: not enough memory for AudioTrack size=131296 2019-07-08 22:00:01.193 1526-16001/? D/MemoryDealer: AudioTrack (0xefda62b0, size=4194304) 0: 0xefda62c0 | 0x00000000 | 0x000200E0 | A 1: 0xefda62e0 | 0x000200E0 | 0x000200E0 | A 2: 0xefda6460 | 0x000401C0 | 0x000200E0 | A 3: 0xefda6630 | 0x000602A0 | 0x000200E0 | A 4: 0xefda67c0 | 0x00080380 | 0x000200E0 | A 5: 0xefda6990 | 0x000A0460 | 0x000200E0 | A 6: 0xefda6af0 | 0x000C0540 | 0x000200E0 | A 7: 0xf021e2e0 | 0x000E0620 | 0x000200E0 | A 8: 0xefda6cf0 | 0x00100700 | 0x000200E0 | A 9: 0xefda6f10 | 0x001207E0 | 0x000200E0 | A 10: 0xef3fe070 | 0x001408C0 | 0x000200E0 | A 11: 0xef3fe250 | 0x001609A0 | 0x000200E0 | A 12: 0xef3fe420 | 0x00180A80 | 0x000200E0 | A 13: 0xef3fe560 | 0x001A0B60 | 0x000200E0 | A 14: 0xef3fe5b0 | 0x001C0C40 | 0x000200E0 | A 15: 0xef3fe7a0 | 0x001E0D20 | 0x000200E0 | A 16: 0xf021e4c0 | 0x00200E00 | 0x000200E0 | A 17: 0xf021e590 | 0x00220EE0 | 0x000200E0 | A 18: 0xf021e3f0 | 0x00240FC0 | 0x000200E0 | A 19: 0xf021e760 | 0x002610A0 | 0x000200E0 | A

2019-07-08 22:00:01.193 1526-16001/? E/AudioFlinger: createRecordTrack_l() initCheck failed -12; no control block? 2019-07-08 22:00:01.193 2179-13999/com.google.android.googlequicksearchbox:search E/AudioRecord: AudioFlinger could not create record track, status: -12 2019-07-08 22:00:01.194 2179-13999/com.google.android.googlequicksearchbox:search E/AudioRecord-JNI: Error creating AudioRecord instance: initialization check failed with status -12. 2019-07-08 22:00:01.194 2179-13999/com.google.android.googlequicksearchbox:search E/android.media.AudioRecord: Error code -20 when initializing native AudioRecord object. 2019-07-08 22:00:01.194 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_started com.google.android.apps.gsa.staticplugins.aa.c@a163f17 2019-07-08 22:00:01.195 2179-13999/com.google.android.googlequicksearchbox:search E/ActivityThread: Failed to find provider info for com.google.android.apps.gsa.testing.ui.audio.recorded 2019-07-08 22:00:01.198 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_close com.google.android.apps.gsa.staticplugins.aa.c@a163f17 2019-07-08 22:00:01.200 2179-14096/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Detection finished 2019-07-08 22:00:01.200 2179-14096/com.google.android.googlequicksearchbox:search W/ErrorReporter: reportError [type: 211, code: 524300]: Error reading from input stream 2019-07-08 22:00:01.201 2179-2778/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Stopping hotword detection. 2019-07-08 22:00:01.201 2179-14096/com.google.android.googlequicksearchbox:search W/ErrorProcessor: onFatalError, processing error from engine(4) com.google.android.apps.gsa.shared.speech.b.g: Error reading from input stream at com.google.android.apps.gsa.staticplugins.recognizer.j.a.a(SourceFile:28) at com.google.android.apps.gsa.staticplugins.recognizer.j.b.run(SourceFile:15) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at com.google.android.apps.gsa.shared.util.concurrent.a.ag.run(Unknown Source:4) at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4) at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636) at java.lang.Thread.run(Thread.java:764) at com.google.android.apps.gsa.shared.util.concurrent.a.ak.run(SourceFile:6) Caused by: com.google.android.apps.gsa.shared.exception.GsaIOException: Error code: 393238 | Buffer overflow, no available space. at com.google.android.apps.gsa.speech.audio.Tee.f(SourceFile:103) at com.google.android.apps.gsa.speech.audio.au.read(SourceFile:2) at java.io.InputStream.read(InputStream.java:101) at com.google.android.apps.gsa.speech.audio.ao.run(SourceFile:18) at com.google.android.apps.gsa.speech.audio.an.run(SourceFile:2) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)  at java.util.concurrent.FutureTask.run(FutureTask.java:266)  at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)  at java.util.concurrent.FutureTask.run(FutureTask.java:266)  at com.google.android.apps.gsa.shared.util.concurrent.a.ag.run(Unknown Source:4)  at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4)  at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4)  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)  at java.lang.Thread.run(Thread.java:764)  at com.google.android.apps.gsa.shared.util.concurrent.a.ak.run(SourceFile:6)  2019-07-08 22:00:01.201 2179-14096/com.google.android.googlequicksearchbox:search I/AudioController: internalShutdown 2019-07-08 22:00:01.205 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: onReady 2019-07-08 22:00:01.206 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetector: Keeping mic open: false 2019-07-08 22:00:01.206 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #onError(false) 2019-07-08 22:00:01.206 2179-12470/com.google.android.googlequicksearchbox:search I/DeviceStateChecker: DeviceStateChecker cancelled 2019-07-08 22:00:06.211 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #updateMicroDetector [detectionMode: [mDetectionMode: [1]]] 2019-07-08 22:00:06.211 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0] 2019-07-08 22:00:06.211 2179-2179/com.google.android.googlequicksearchbox:search I/AudioController: Using mInputStreamFactoryBuilder 2019-07-08 22:00:06.215 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: onReady 2019-07-08 22:00:06.215 2179-12470/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Starting detection. 2019-07-08 22:00:06.216 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_starting com.google.android.apps.gsa.staticplugins.aa.c@1f0915 2019-07-08 22:00:06.220 1526-14456/? I/AudioFlinger: AudioFlinger's thread 0xebd83f80 tid=14456 ready to run 2019-07-08 22:00:06.222 1526-13995/? E/AudioFlinger: not enough memory for AudioTrack size=131296 2019-07-08 22:00:06.222 1526-13995/? D/MemoryDealer: AudioTrack (0xefda62b0, size=4194304) 0: 0xefda62c0 | 0x00000000 | 0x000200E0 | A 1: 0xefda62e0 | 0x000200E0 | 0x000200E0 | A 2: 0xefda6460 | 0x000401C0 | 0x000200E0 | A 3: 0xefda6630 | 0x000602A0 | 0x000200E0 | A 4: 0xefda67c0 | 0x00080380 | 0x000200E0 | A 5: 0xefda6990 | 0x000A0460 | 0x000200E0 | A 6: 0xefda6af0 | 0x000C0540 | 0x000200E0 | A 7: 0xf021e2e0 | 0x000E0620 | 0x000200E0 | A 8: 0xefda6cf0 | 0x00100700 | 0x000200E0 | A 9: 0xefda6f10 | 0x001207E0 | 0x000200E0 | A 10: 0xef3fe070 | 0x001408C0 | 0x000200E0 | A 11: 0xef3fe250 | 0x001609A0 | 0x000200E0 | A 12: 0xef3fe420 | 0x00180A80 | 0x000200E0 | A 13: 0xef3fe560 | 0x001A0B60 | 0x000200E0 | A 14: 0xef3fe5b0 | 0x001C0C40 | 0x000200E0 | A 15: 0xef3fe7a0 | 0x001E0D20 | 0x000200E0 | A 16: 0xf021e4c0 | 0x00200E00 | 0x000200E0 | A 17: 0xf021e590 | 0x00220EE0 | 0x000200E0 | A 18: 0xf021e3f0 | 0x00240FC0 | 0x000200E0 | A 19: 0xf021e760 | 0x002610A0 | 0x000200E0 | A

2019-07-08 22:00:06.222 1526-13995/? E/AudioFlinger: createRecordTrack_l() initCheck failed -12; no control block? 2019-07-08 22:00:06.222 2179-13999/com.google.android.googlequicksearchbox:search E/AudioRecord: AudioFlinger could not create record track, status: -12 2019-07-08 22:00:06.224 2179-13999/com.google.android.googlequicksearchbox:search E/AudioRecord-JNI: Error creating AudioRecord instance: initialization check failed with status -12. 2019-07-08 22:00:06.225 2179-13999/com.google.android.googlequicksearchbox:search E/android.media.AudioRecord: Error code -20 when initializing native AudioRecord object. 2019-07-08 22:00:06.225 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_started com.google.android.apps.gsa.staticplugins.aa.c@1f0915 2019-07-08 22:00:06.228 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_close com.google.android.apps.gsa.staticplugins.aa.c@1f0915 2019-07-08 22:00:06.229 2179-12470/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Detection finished 2019-07-08 22:00:06.230 2179-12470/com.google.android.googlequicksearchbox:search W/ErrorReporter: reportError [type: 211, code: 524300]: Error reading from input stream 2019-07-08 22:00:06.231 2179-2778/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Stopping hotword detection. 2019-07-08 22:00:06.232 2179-12470/com.google.android.googlequicksearchbox:search W/ErrorProcessor: onFatalError, processing error from engine(4) com.google.android.apps.gsa.shared.speech.b.g: Error reading from input stream at com.google.android.apps.gsa.staticplugins.recognizer.j.a.a(SourceFile:28) at com.google.android.apps.gsa.staticplugins.recognizer.j.b.run(SourceFile:15) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at com.google.android.apps.gsa.shared.util.concurrent.a.ag.run(Unknown Source:4) at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4) at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636) at java.lang.Thread.run(Thread.java:764) at com.google.android.apps.gsa.shared.util.concurrent.a.ak.run(SourceFile:6) Caused by: com.google.android.apps.gsa.shared.exception.GsaIOException: Error code: 393238 | Buffer overflow, no available space. at com.google.android.apps.gsa.speech.audio.Tee.f(SourceFile:103) at com.google.android.apps.gsa.speech.audio.au.read(SourceFile:2) at java.io.InputStream.read(InputStream.java:101) at com.google.android.apps.gsa.speech.audio.ao.run(SourceFile:18) at com.google.android.apps.gsa.speech.audio.an.run(SourceFile:2) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)  at java.util.concurrent.FutureTask.run(FutureTask.java:266)  at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)  at java.util.concurrent.FutureTask.run(FutureTask.java:266)  at com.google.android.apps.gsa.shared.util.concurrent.a.ag.run(Unknown Source:4)  at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4)  at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4)  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)  at java.lang.Thread.run(Thread.java:764)  at com.google.android.apps.gsa.shared.util.concurrent.a.ak.run(SourceFile:6)  2019-07-08 22:00:06.232 2179-12470/com.google.android.googlequicksearchbox:search I/AudioController: internalShutdown 2019-07-08 22:00:06.252 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: onReady 2019-07-08 22:00:06.252 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetector: Keeping mic open: false 2019-07-08 22:00:06.252 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #onError(false) 2019-07-08 22:00:06.252 2179-12478/com.google.android.googlequicksearchbox:search I/DeviceStateChecker: DeviceStateChecker cancelled 2019-07-08 22:00:11.255 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #updateMicroDetector [detectionMode: [mDetectionMode: [1]]] 2019-07-08 22:00:11.255 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0] 2019-07-08 22:00:11.255 2179-2179/com.google.android.googlequicksearchbox:search I/AudioController: Using mInputStreamFactoryBuilder 2019-07-08 22:00:11.259 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: onReady 2019-07-08 22:00:11.261 2179-12478/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Starting detection. 2019-07-08 22:00:11.261 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_starting com.google.android.apps.gsa.staticplugins.aa.c@3a67d83 2019-07-08 22:00:11.266 1526-14459/? I/AudioFlinger: AudioFlinger's thread 0xebd83900 tid=14459 ready to run 2019-07-08 22:00:11.270 1526-13995/? E/AudioFlinger: not enough memory for AudioTrack size=131296 2019-07-08 22:00:11.271 1526-13995/? D/MemoryDealer: AudioTrack (0xefda62b0, size=4194304) 0: 0xefda62c0 | 0x00000000 | 0x000200E0 | A 1: 0xefda62e0 | 0x000200E0 | 0x000200E0 | A 2: 0xefda6460 | 0x000401C0 | 0x000200E0 | A 3: 0xefda6630 | 0x000602A0 | 0x000200E0 | A 4: 0xefda67c0 | 0x00080380 | 0x000200E0 | A 5: 0xefda6990 | 0x000A0460 | 0x000200E0 | A 6: 0xefda6af0 | 0x000C0540 | 0x000200E0 | A 7: 0xf021e2e0 | 0x000E0620 | 0x000200E0 | A 8: 0xefda6cf0 | 0x00100700 | 0x000200E0 | A 9: 0xefda6f10 | 0x001207E0 | 0x000200E0 | A 10: 0xef3fe070 | 0x001408C0 | 0x000200E0 | A 11: 0xef3fe250 | 0x001609A0 | 0x000200E0 | A 12: 0xef3fe420 | 0x00180A80 | 0x000200E0 | A 13: 0xef3fe560 | 0x001A0B60 | 0x000200E0 | A 14: 0xef3fe5b0 | 0x001C0C40 | 0x000200E0 | A 15: 0xef3fe7a0 | 0x001E0D20 | 0x000200E0 | A 16: 0xf021e4c0 | 0x00200E00 | 0x000200E0 | A 17: 0xf021e590 | 0x00220EE0 | 0x000200E0 | A 18: 0xf021e3f0 | 0x00240FC0 | 0x000200E0 | A 19: 0xf021e760 | 0x002610A0 | 0x000200E0 | A

2019-07-08 22:00:11.271 1526-13995/? E/AudioFlinger: createRecordTrack_l() initCheck failed -12; no control block? 2019-07-08 22:00:11.271 2179-13999/com.google.android.googlequicksearchbox:search E/AudioRecord: AudioFlinger could not create record track, status: -12 2019-07-08 22:00:11.272 2179-13999/com.google.android.googlequicksearchbox:search E/AudioRecord-JNI: Error creating AudioRecord instance: initialization check failed with status -12. 2019-07-08 22:00:11.272 2179-13999/com.google.android.googlequicksearchbox:search E/android.media.AudioRecord: Error code -20 when initializing native AudioRecord object. 2019-07-08 22:00:11.272 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_started com.google.android.apps.gsa.staticplugins.aa.c@3a67d83 2019-07-08 22:00:11.282 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_close com.google.android.apps.gsa.staticplugins.aa.c@3a67d83 2019-07-08 22:00:11.283 2179-12478/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Detection finished 2019-07-08 22:00:11.283 2179-12478/com.google.android.googlequicksearchbox:search W/ErrorReporter: reportError [type: 211, code: 524300]: Error reading from input stream 2019-07-08 22:00:11.285 2179-12478/com.google.android.googlequicksearchbox:search W/ErrorProcessor: onFatalError, processing error from engine(4) com.google.android.apps.gsa.shared.speech.b.g: Error reading from input stream at com.google.android.apps.gsa.staticplugins.recognizer.j.a.a(SourceFile:28) at com.google.android.apps.gsa.staticplugins.recognizer.j.b.run(SourceFile:15) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at com.google.android.apps.gsa.shared.util.concurrent.a.ag.run(Unknown Source:4) at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4) at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636) at java.lang.Thread.run(Thread.java:764) at com.google.android.apps.gsa.shared.util.concurrent.a.ak.run(SourceFile:6) Caused by: com.google.android.apps.gsa.shared.exception.GsaIOException: Error code: 393238 | Buffer overflow, no available space. at com.google.android.apps.gsa.speech.audio.Tee.f(SourceFile:103) at com.google.android.apps.gsa.speech.audio.au.read(SourceFile:2) at java.io.InputStream.read(InputStream.java:101) at com.google.android.apps.gsa.speech.audio.ao.run(SourceFile:18) at com.google.android.apps.gsa.speech.audio.an.run(SourceFile:2) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)  at java.util.concurrent.FutureTask.run(FutureTask.java:266)  at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)  at java.util.concurrent.FutureTask.run(FutureTask.java:266)  at com.google.android.apps.gsa.shared.util.concurrent.a.ag.run(Unknown Source:4)  at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4)  at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4)  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)  at java.lang.Thread.run(Thread.java:764)  at com.google.android.apps.gsa.shared.util.concurrent.a.ak.run(SourceFile:6)  2019-07-08 22:00:11.285 2179-2778/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Stopping hotword detection. 2019-07-08 22:00:11.285 2179-12478/com.google.android.googlequicksearchbox:search I/AudioController: internalShutdown 2019-07-08 22:00:11.295 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: onReady 2019-07-08 22:00:11.296 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetector: Keeping mic open: false 2019-07-08 22:00:11.296 2179-14096/com.google.android.googlequicksearchbox:search I/DeviceStateChecker: DeviceStateChecker cancelled 2019-07-08 22:00:11.296 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #onError(false) 2019-07-08 22:00:15.415 31836-31836/com.android.systemui D/StatusBar: disable 2019-07-08 22:00:15.438 31836-31951/com.android.systemui D/EGL_emulation: eglMakeCurrent: 0xee0656a0: ver 3 0 (tinfo 0xe612c0e0) 2019-07-08 22:00:15.442 1436-18246/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 14749696 2019-07-08 22:00:15.458 31836-31951/com.android.systemui D/EGL_emulation: eglMakeCurrent: 0xee0656a0: ver 3 0 (tinfo 0xe612c0e0) 2019-07-08 22:00:15.478 1436-18246/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 14749696 2019-07-08 22:00:15.523 31836-31836/com.android.systemui D/StatusBar: disable 2019-07-08 22:00:15.531 1436-18246/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 14749696 2019-07-08 22:00:16.305 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #updateMicroDetector [detectionMode: [mDetectionMode: [1]]] 2019-07-08 22:00:16.305 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0] 2019-07-08 22:00:16.306 2179-2179/com.google.android.googlequicksearchbox:search I/AudioController: Using mInputStreamFactoryBuilder 2019-07-08 22:00:16.308 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: onReady 2019-07-08 22:00:16.309 2179-12470/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Starting detection. 2019-07-08 22:00:16.310 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_starting com.google.android.apps.gsa.staticplugins.aa.c@6c5a3e1 2019-07-08 22:00:16.317 1526-14463/? I/AudioFlinger: AudioFlinger's thread 0xebd83240 tid=14463 ready to run 2019-07-08 22:00:16.321 1526-17300/? E/AudioFlinger: not enough memory for AudioTrack size=131296 2019-07-08 22:00:16.321 1526-17300/? D/MemoryDealer: AudioTrack (0xefda62b0, size=4194304) 0: 0xefda62c0 | 0x00000000 | 0x000200E0 | A 1: 0xefda62e0 | 0x000200E0 | 0x000200E0 | A 2: 0xefda6460 | 0x000401C0 | 0x000200E0 | A 3: 0xefda6630 | 0x000602A0 | 0x000200E0 | A 4: 0xefda67c0 | 0x00080380 | 0x000200E0 | A 5: 0xefda6990 | 0x000A0460 | 0x000200E0 | A 6: 0xefda6af0 | 0x000C0540 | 0x000200E0 | A 7: 0xf021e2e0 | 0x000E0620 | 0x000200E0 | A 8: 0xefda6cf0 | 0x00100700 | 0x000200E0 | A 9: 0xefda6f10 | 0x001207E0 | 0x000200E0 | A 10: 0xef3fe070 | 0x001408C0 | 0x000200E0 | A 11: 0xef3fe250 | 0x001609A0 | 0x000200E0 | A 12: 0xef3fe420 | 0x00180A80 | 0x000200E0 | A 13: 0xef3fe560 | 0x001A0B60 | 0x000200E0 | A 14: 0xef3fe5b0 | 0x001C0C40 | 0x000200E0 | A 15: 0xef3fe7a0 | 0x001E0D20 | 0x000200E0 | A 16: 0xf021e4c0 | 0x00200E00 | 0x000200E0 | A 17: 0xf021e590 | 0x00220EE0 | 0x000200E0 | A 18: 0xf021e3f0 | 0x00240FC0 | 0x000200E0 | A 19: 0xf021e760 | 0x002610A0 | 0x000200E0 | A

2019-07-08 22:00:16.321 1526-17300/? E/AudioFlinger: createRecordTrack_l() initCheck failed -12; no control block? 2019-07-08 22:00:16.322 2179-13999/com.google.android.googlequicksearchbox:search E/AudioRecord: AudioFlinger could not create record track, status: -12 2019-07-08 22:00:16.325 2179-13999/com.google.android.googlequicksearchbox:search E/AudioRecord-JNI: Error creating AudioRecord instance: initialization check failed with status -12. 2019-07-08 22:00:16.325 2179-13999/com.google.android.googlequicksearchbox:search E/android.media.AudioRecord: Error code -20 when initializing native AudioRecord object. 2019-07-08 22:00:16.325 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_started com.google.android.apps.gsa.staticplugins.aa.c@6c5a3e1 2019-07-08 22:00:16.328 2179-13999/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_close com.google.android.apps.gsa.staticplugins.aa.c@6c5a3e1 2019-07-08 22:00:16.331 2179-12470/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Detection finished 2019-07-08 22:00:16.331 2179-12470/com.google.android.googlequicksearchbox:search W/ErrorReporter: reportError [type: 211, code: 524300]: Error reading from input stream 2019-07-08 22:00:16.332 2179-2778/com.google.android.googlequicksearchbox:search I/MicroRecognitionRunner: Stopping hotword detection. 2019-07-08 22:00:16.333 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: onReady 2019-07-08 22:00:16.334 2179-12470/com.google.android.googlequicksearchbox:search W/ErrorProcessor: onFatalError, processing error from engine(4) com.google.android.apps.gsa.shared.speech.b.g: Error reading from input stream at com.google.android.apps.gsa.staticplugins.recognizer.j.a.a(SourceFile:28) at com.google.android.apps.gsa.staticplugins.recognizer.j.b.run(SourceFile:15) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at com.google.android.apps.gsa.shared.util.concurrent.a.ag.run(Unknown Source:4) at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4) at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636) at java.lang.Thread.run(Thread.java:764) at com.google.android.apps.gsa.shared.util.concurrent.a.ak.run(SourceFile:6) Caused by: com.google.android.apps.gsa.shared.exception.GsaIOException: Error code: 393238 | Buffer overflow, no available space. at com.google.android.apps.gsa.speech.audio.Tee.f(SourceFile:103) at com.google.android.apps.gsa.speech.audio.au.read(SourceFile:2) at java.io.InputStream.read(InputStream.java:101) at com.google.android.apps.gsa.speech.audio.ao.run(SourceFile:18) at com.google.android.apps.gsa.speech.audio.an.run(SourceFile:2) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)  at java.util.concurrent.FutureTask.run(FutureTask.java:266)  at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)  at java.util.concurrent.FutureTask.run(FutureTask.java:266)  at com.google.android.apps.gsa.shared.util.concurrent.a.ag.run(Unknown Source:4)  at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4)  at com.google.android.apps.gsa.shared.util.concurrent.a.bo.run(SourceFile:4)  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)  at java.lang.Thread.run(Thread.java:764)  at com.google.android.apps.gsa.shared.util.concurrent.a.ak.run(SourceFile:6)  2019-07-08 22:00:16.334 2179-12470/com.google.android.googlequicksearchbox:search I/AudioController: internalShutdown 2019-07-08 22:00:16.355 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetector: Keeping mic open: false 2019-07-08 22:00:16.355 2179-2179/com.google.android.googlequicksearchbox:search I/MicroDetectionWorker: #onError(false) 2019-07-08 22:00:16.355 2179-14096/com.google.android.googlequicksearchbox:search I/DeviceStateChecker: DeviceStateChecker cancelled 2019-07-08 22:00:17.148 1662-6946/system_process I/ActivityManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x14000000 pkg=com.lemodpurern cmp=com.lemodpurern/.SplashActivity (has extras)} from uid 10081 2019-07-08 22:00:17.168 14415-14415/com.lemodpurern W/FirebaseMessaging: Error while parsing timestamp in GCM event java.lang.NumberFormatException: s == null at java.lang.Integer.parseInt(Integer.java:570) at java.lang.Integer.parseInt(Integer.java:643) at com.google.firebase.messaging.zzb.zzb(Unknown Source:90) at com.google.firebase.messaging.zzb.zzd(Unknown Source:108) at com.google.firebase.messaging.FirebaseMessagingService.zzc(Unknown Source:37) at com.google.firebase.iid.zzf.zza(Unknown Source:42) at com.google.firebase.iid.zzh.zzc(Unknown Source:89) at com.google.firebase.iid.zzh.zza(Unknown Source:32) at com.google.firebase.iid.FirebaseInstanceIdReceiver.zza(Unknown Source:117) at com.google.firebase.iid.FirebaseInstanceIdReceiver.onReceive(Unknown Source:20) at android.app.ActivityThread.handleReceiver(ActivityThread.java:3187) at android.app.ActivityThread.-wrap17(Unknown Source:0) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1672) at android.os.Handler.dispatchMessage(Handler.java:106) at android.os.Looper.loop(Looper.java:164) at android.app.ActivityThread.main(ActivityThread.java:6494) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:438) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:807) 2019-07-08 22:00:17.174 14415-14434/com.lemodpurern D/FA: Event not sent since app measurement is disabled 2019-07-08 22:00:17.221 1436-18246/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 14749696 2019-07-08 22:00:17.257 14415-14415/com.lemodpurern V/FA: onActivityCreated 2019-07-08 22:00:17.263 1662-1870/system_process I/ActivityManager: START u0 {cmp=com.lemodpurern/.MainActivity} from uid 10081 2019-07-08 22:00:17.314 1427-4289/? W/audio_hw_generic: Hardware backing HAL too slow, could only write 0 of 720 frames 2019-07-08 22:00:17.352 2179-2608/com.google.android.googlequicksearchbox:search D/EGL_emulation: eglMakeCurrent: 0xe6186320: ver 3 0 (tinfo 0xe6183c10) 2019-07-08 22:00:17.356 14415-14415/com.lemodpurern V/FA: onActivityCreated 2019-07-08 22:00:17.364 14415-14415/com.lemodpurern D/AppCenter: Reading appcenter-config.json 2019-07-08 22:00:17.365 14415-14415/com.lemodpurern D/AppCenter: Configure with secret. 2019-07-08 22:00:17.369 14415-14415/com.lemodpurern I/AppCenter: App Center SDK configured successfully. 2019-07-08 22:00:17.405 14415-14415/com.lemodpurern D/AppCenter: Cannot read instrumentation variables in a non-test environment. 2019-07-08 22:00:17.411 14415-14415/com.lemodpurern D/AppCenterCrashes: Creating crashes module with crashListener ALWAYS_SEND 2019-07-08 22:00:17.416 14415-14415/com.lemodpurern D/AppCenter: Cannot read instrumentation variables in a non-test environment. 2019-07-08 22:00:17.416 2285-2417/com.google.android.apps.nexuslauncher D/EGL_emulation: eglMakeCurrent: 0xd1c1fbc0: ver 3 0 (tinfo 0xd1c2b6f0) 2019-07-08 22:00:17.421 14415-14415/com.lemodpurern D/AppCenter: Cannot read instrumentation variables in a non-test environment. 2019-07-08 22:00:17.444 1662-1682/system_process W/Looper: Dispatch took 122ms on android.ui, h=Handler (com.android.server.am.ActivityManagerService$UiHandler) {8150090} cb=null msg=53 2019-07-08 22:00:17.458 14415-14415/com.lemodpurern D/ReactNative: [CodePush] Loading JS bundle from "assets://index.android.bundle" 2019-07-08 22:00:17.461 14415-14415/com.lemodpurern D/ReactNative: ReactInstanceManager.ctor() 2019-07-08 22:00:17.461 14415-14415/com.lemodpurern D/SoLoader: init exiting 2019-07-08 22:00:17.493 14415-14468/com.lemodpurern D/AppCenter: Loaded stored sessions: {1562619284273=1562619284273/b6c36be3-fa30-4d0e-a7d1-a2c0ac60403a/1562619283807, 1562634355733=1562634355733/f7880ef3-0ccd-418f-be38-9ad14216608a/1562619283807, 1562635981875=1562635981875//1562635981859, 1562635982102=1562635982102/6a2307a6-3097-4fb9-8871-e80aebc6d0a1/1562635981859, 1562636153729=1562636153729//1562636153725, 1562636154243=1562636154243/7590ad76-a1fe-4f6a-a7dd-cedc8b4fbb28/1562636153725, 1562637350595=1562637350595//1562637350585, 1562637350846=1562637350846/ed6f126d-75bc-4047-b430-78d7e5dae684/1562637350585, 1562637434226=1562637434226//1562637434205, 1562637434701=1562637434701/e08807c3-8556-4fc1-aaf1-a04e33e76b81/1562637434205} 2019-07-08 22:00:17.513 14415-14426/com.lemodpurern I/zygote: Background concurrent copying GC freed 1671(284KB) AllocSpace objects, 0(0B) LOS objects, 50% free, 1504KB/2MB, paused 7.804ms total 127.970ms 2019-07-08 22:00:17.533 14415-14415/com.lemodpurern D/NetworkSecurityConfig: No Network Security Config specified, using platform default 2019-07-08 22:00:17.557 14415-14468/com.lemodpurern D/AppCenter: addGroup(group_core) 2019-07-08 22:00:17.563 14415-14473/com.lemodpurern D/AppCenter: Network available netId: 101 2019-07-08 22:00:17.563 14415-14473/com.lemodpurern D/AppCenter: Available networks netIds: [101] 2019-07-08 22:00:17.564 14415-14473/com.lemodpurern D/AppCenter: Network is available. 0 pending call(s) to submit now. 2019-07-08 22:00:17.595 14415-14468/com.lemodpurern D/AppCenter: checkPendingLogs(group_core) pendingLogCount=0 2019-07-08 22:00:17.602 14415-14468/com.lemodpurern D/AppCenter: App Center initialized. 2019-07-08 22:00:17.603 14415-14468/com.lemodpurern D/AppCenter: removeGroup(group_push) 2019-07-08 22:00:17.604 14415-14468/com.lemodpurern D/AppCenter: removeGroup(group_push/one) 2019-07-08 22:00:17.604 14415-14468/com.lemodpurern D/AppCenter: addGroup(group_push) 2019-07-08 22:00:17.611 14415-14468/com.lemodpurern D/AppCenter: checkPendingLogs(group_push) pendingLogCount=0 2019-07-08 22:00:17.612 14415-14468/com.lemodpurern D/AppCenter: addGroup(group_push/one) 2019-07-08 22:00:17.620 14415-14468/com.lemodpurern D/AppCenterPush: Push token refreshed: ckB1I8A9-Cg:APA91bHlfms7Ki5chMHxeXn3-K-rXcz5jwTTdKYQ5e-HTdR70XvlbEhrMuqvsJuQpjX0ZIz2127MjsHeijM8OJli9CYQFj742I2qANNbLlhHXvMvwkXNUI-tzu_AmnHBZVG8YTu0kH 2019-07-08 22:00:17.626 31836-31836/com.android.systemui D/StatusBar: disable 2019-07-08 22:00:17.652 14415-14415/com.lemodpurern D/ReactNative: ReactInstanceManager.createReactContextInBackground() 2019-07-08 22:00:17.653 14415-14415/com.lemodpurern D/ReactNative: ReactInstanceManager.recreateReactContextInBackgroundInner() 2019-07-08 22:00:17.665 14415-14415/com.lemodpurern D/ReactNative: ReactInstanceManager.onJSBundleLoadedFromServer() 2019-07-08 22:00:17.680 14415-14415/com.lemodpurern D/ReactNative: ReactInstanceManager.recreateReactContextInBackground() 2019-07-08 22:00:17.681 14415-14415/com.lemodpurern D/ReactNative: ReactInstanceManager.runCreateReactContextOnNewThread() 2019-07-08 22:00:17.696 14415-14468/com.lemodpurern D/AppCenter: Storing a log to the Persistence database for log type pushInstallation with sid=null 2019-07-08 22:00:17.709 14415-14477/com.lemodpurern D/SoLoader: About to load: libreactnativejni.so 2019-07-08 22:00:17.712 14415-14477/com.lemodpurern D/SoLoader: libreactnativejni.so not found on /data/data/com.lemodpurern/lib-main 2019-07-08 22:00:17.712 14415-14477/com.lemodpurern D/SoLoader: libreactnativejni.so found on /data/app/com.lemodpurern-FccI5QZckUyqS1r2ckfyOA==/lib/x86 2019-07-08 22:00:17.712 14415-14477/com.lemodpurern D/SoLoader: Not resolving dependencies for libreactnativejni.so 2019-07-08 22:00:17.776 31836-31836/com.android.systemui D/StatusBar: disable 2019-07-08 22:00:17.827 14415-14479/com.lemodpurern W/unknown:InspectorPackagerConnection: Couldn't connect to packager, will silently retry 2019-07-08 22:00:17.864 14415-14468/com.lemodpurern D/AppCenter: Stored a log to the Persistence database for log type pushInstallation with databaseId=431 2019-07-08 22:00:17.865 14415-14468/com.lemodpurern D/AppCenter: enqueue(group_push) pendingLogCount=1 2019-07-08 22:00:17.865 14415-14468/com.lemodpurern D/AppCenter: checkPendingLogs(group_push) pendingLogCount=1 2019-07-08 22:00:17.866 14415-14468/com.lemodpurern D/AppCenter: triggerIngestion(group_push) pendingLogCount=1 2019-07-08 22:00:17.866 14415-14468/com.lemodpurern D/AppCenter: Trying to get 1 logs from the Persistence database for group_push 2019-07-08 22:00:17.881 31836-31951/com.android.systemui D/EGL_emulation: eglMakeCurrent: 0xee0656a0: ver 3 0 (tinfo 0xe612c0e0) 2019-07-08 22:00:17.894 1436-18246/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 487424 2019-07-08 22:00:17.895 14415-14477/com.lemodpurern D/SoLoader: Loaded: libreactnativejni.so 2019-07-08 22:00:17.897 14415-14477/com.lemodpurern D/SoLoader: About to load: libfb.so 2019-07-08 22:00:17.898 14415-14477/com.lemodpurern D/SoLoader: libfb.so not found on /data/data/com.lemodpurern/lib-main 2019-07-08 22:00:17.898 14415-14477/com.lemodpurern D/SoLoader: libfb.so found on /data/app/com.lemodpurern-FccI5QZckUyqS1r2ckfyOA==/lib/x86 2019-07-08 22:00:17.898 14415-14477/com.lemodpurern D/SoLoader: Not resolving dependencies for libfb.so 2019-07-08 22:00:17.904 14415-14477/com.lemodpurern D/SoLoader: About to load: libfb.so 2019-07-08 22:00:17.914 14415-14477/com.lemodpurern D/SoLoader: libfb.so not found on /data/data/com.lemodpurern/lib-main 2019-07-08 22:00:17.915 14415-14477/com.lemodpurern D/SoLoader: libfb.so found on /data/app/com.lemodpurern-FccI5QZckUyqS1r2ckfyOA==/lib/x86 2019-07-08 22:00:17.916 14415-14477/com.lemodpurern D/SoLoader: Not resolving dependencies for libfb.so 2019-07-08 22:00:17.922 31836-31951/com.android.systemui D/EGL_emulation: eglMakeCurrent: 0xee0656a0: ver 3 0 (tinfo 0xe612c0e0) 2019-07-08 22:00:17.913 14415-14468/com.lemodpurern D/AppCenter: Returning 1 log(s) with an ID, 849e4d40-1053-4bdf-bec1-2f12483f6c6f 2019-07-08 22:00:17.922 14415-14468/com.lemodpurern D/AppCenter: The SID/ID pairs for returning log(s) is/are: 2019-07-08 22:00:17.922 14415-14468/com.lemodpurern D/AppCenter: null / 431 2019-07-08 22:00:17.924 14415-14477/com.lemodpurern I/zygote: Thread[24,tid=14477,Native,Thread*=0xd2550000,peer=0x12ea2900,"Thread-3"] recursive attempt to load library "/data/app/com.lemodpurern-FccI5QZckUyqS1r2ckfyOA==/lib/x86/libfb.so" 2019-07-08 22:00:17.925 14415-14477/com.lemodpurern D/SoLoader: Loaded: libfb.so 2019-07-08 22:00:17.923 14415-14468/com.lemodpurern D/AppCenter: ingestLogs(group_push,849e4d40-1053-4bdf-bec1-2f12483f6c6f) pendingLogCount=0 2019-07-08 22:00:17.932 14415-14477/com.lemodpurern D/SoLoader: Loaded: libfb.so 2019-07-08 22:00:17.933 14415-14468/com.lemodpurern I/AppCenterPush: Firebase SDK is available, using Firebase SDK registration. 2019-07-08 22:00:17.933 14415-14468/com.lemodpurern D/AppCenterPush: Disabling Firebase analytics collection by default. 2019-07-08 22:00:17.936 14415-14477/com.lemodpurern D/ReactNative: ReactInstanceManager.createReactContext() 2019-07-08 22:00:17.938 14415-14468/com.lemodpurern I/AppCenter: Push service started from application. 2019-07-08 22:00:17.947 14415-14434/com.lemodpurern D/FA: Setting app measurement enabled (FE): false 2019-07-08 22:00:17.952 14415-14434/com.lemodpurern V/FA: Setting measurementEnabled: false 2019-07-08 22:00:17.953 14415-14468/com.lemodpurern D/AppCenter: Storing a log to the Persistence database for log type startService with sid=null 2019-07-08 22:00:17.959 1427-4289/? W/audio_hw_generic: Hardware backing HAL too slow, could only write 0 of 720 frames 2019-07-08 22:00:17.994 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTGroupViewManager 2019-07-08 22:00:17.996 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTGroupShadowNode 2019-07-08 22:00:17.997 1436-18246/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 487424 2019-07-08 22:00:18.007 14415-14434/com.lemodpurern V/FA: Connecting to remote service 2019-07-08 22:00:18.013 1436-18246/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 487424 2019-07-08 22:00:18.019 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTShapeViewManager 2019-07-08 22:00:18.023 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTShapeShadowNode 2019-07-08 22:00:18.026 14415-14468/com.lemodpurern D/AppCenter: Stored a log to the Persistence database for log type startService with databaseId=432 2019-07-08 22:00:18.027 14415-14468/com.lemodpurern D/AppCenter: enqueue(group_core) pendingLogCount=1 2019-07-08 22:00:18.027 14415-14468/com.lemodpurern D/AppCenter: checkPendingLogs(group_core) pendingLogCount=1 2019-07-08 22:00:18.032 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTTextViewManager 2019-07-08 22:00:18.033 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTTextShadowNode 2019-07-08 22:00:18.034 14415-14468/com.lemodpurern D/AppCenter: removeGroup(groupErrors) 2019-07-08 22:00:18.038 14415-14468/com.lemodpurern D/AppCenter: removeGroup(groupErrors/one) 2019-07-08 22:00:18.039 14415-14468/com.lemodpurern D/AppCenter: addGroup(groupErrors) 2019-07-08 22:00:18.040 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.checkbox.ReactCheckBoxManager 2019-07-08 22:00:18.047 31836-31951/com.android.systemui D/EGL_emulation: eglMakeCurrent: 0xee0656a0: ver 3 0 (tinfo 0xe612c0e0) 2019-07-08 22:00:18.049 1448-1771/? E/SurfaceFlinger: ro.sf.lcd_density must be defined as a build property 2019-07-08 22:00:18.053 14415-14483/com.lemodpurern D/OpenGLRenderer: HWUI GL Pipeline 2019-07-08 22:00:18.053 14415-14468/com.lemodpurern D/AppCenter: checkPendingLogs(groupErrors) pendingLogCount=0 2019-07-08 22:00:18.060 14415-14468/com.lemodpurern D/AppCenter: addGroup(groupErrors/one) 2019-07-08 22:00:18.061 14415-14434/com.lemodpurern D/FA: Event not sent since app measurement is disabled 2019-07-08 22:00:18.069 14415-14434/com.lemodpurern V/FA: Connection attempt already in progress 2019-07-08 22:00:18.078 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.uimanager.LayoutShadowNode 2019-07-08 22:00:18.086 14415-14434/com.lemodpurern V/FA: Activity resumed, time: 99722294 2019-07-08 22:00:18.090 14415-14468/com.lemodpurern I/AppCenter: Crashes service started from application. 2019-07-08 22:00:18.091 14415-14468/com.lemodpurern D/AppCenter: Storing a log to the Persistence database for log type startService with sid=null 2019-07-08 22:00:18.126 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.picker.ReactDialogPickerManager 2019-07-08 22:00:18.145 14415-14468/com.lemodpurern D/AppCenter: Stored a log to the Persistence database for log type startService with databaseId=433 2019-07-08 22:00:18.146 14415-14468/com.lemodpurern D/AppCenter: enqueue(group_core) pendingLogCount=2 2019-07-08 22:00:18.146 14415-14468/com.lemodpurern D/AppCenter: checkPendingLogs(group_core) pendingLogCount=2 2019-07-08 22:00:18.147 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.drawer.ReactDrawerLayoutManager 2019-07-08 22:00:18.147 14415-14468/com.lemodpurern D/AppCenter: removeGroup(group_analytics) 2019-07-08 22:00:18.147 14415-14468/com.lemodpurern D/AppCenter: removeGroup(group_analytics/one) 2019-07-08 22:00:18.148 14415-14468/com.lemodpurern D/AppCenter: addGroup(group_analytics) 2019-07-08 22:00:18.163 14415-14468/com.lemodpurern D/AppCenter: checkPendingLogs(group_analytics) pendingLogCount=0 2019-07-08 22:00:18.163 14415-14468/com.lemodpurern D/AppCenter: addGroup(group_analytics/one) 2019-07-08 22:00:18.167 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.picker.ReactDropdownPickerManager 2019-07-08 22:00:18.179 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactHorizontalScrollViewManager 2019-07-08 22:00:18.189 14415-14468/com.lemodpurern E/AppCenterAnalytics: Transmission target may not be null or empty. 2019-07-08 22:00:18.190 14415-14468/com.lemodpurern I/AppCenter: Analytics service started from application. 2019-07-08 22:00:18.195 14415-14468/com.lemodpurern D/AppCenter: Storing a log to the Persistence database for log type startService with sid=null 2019-07-08 22:00:18.203 14415-14415/com.lemodpurern W/unknown:ReactNative: Packager connection already open, nooping. 2019-07-08 22:00:18.226 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactHorizontalScrollContainerViewManager 2019-07-08 22:00:18.239 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.progressbar.ReactProgressBarViewManager 2019-07-08 22:00:18.246 14415-14484/com.lemodpurern V/AppCenter: Calling https://in.appcenter.ms/logs?api-version=1.0.0... 2019-07-08 22:00:18.246 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.progressbar.ProgressBarShadowNode 2019-07-08 22:00:18.247 14415-14484/com.lemodpurern V/AppCenter: Headers: {Install-ID=68660d19-fe16-4183-9932-4ff7548eb76f, App-Secret=****9a4d50c3, Content-Type=application/json} 2019-07-08 22:00:18.249 14415-14468/com.lemodpurern D/AppCenter: Stored a log to the Persistence database for log type startService with databaseId=434 2019-07-08 22:00:18.249 14415-14468/com.lemodpurern D/AppCenter: enqueue(group_core) pendingLogCount=3 2019-07-08 22:00:18.252 14415-14468/com.lemodpurern D/AppCenter: checkPendingLogs(group_core) pendingLogCount=3 2019-07-08 22:00:18.253 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactScrollViewManager 2019-07-08 22:00:18.261 14415-14468/com.lemodpurern D/AppCenterAnalytics: onActivityResumed 2019-07-08 22:00:18.264 14415-14468/com.lemodpurern D/AppCenter: Storing a log to the Persistence database for log type startSession with sid=aba6034d-b081-485b-8c1b-eb705c6d82d8 2019-07-08 22:00:18.273 14415-14484/com.lemodpurern V/AppCenter: { "logs": [ { "type": "pushInstallation", "timestamp": "2019-07-09T02:00:17.686Z", "device": { "wrapperSdkVersion": "1.8.1", "wrapperSdkName": "appcenter.react-native", "sdkName": "appcenter.android", "sdkVersion": "1.8.0", "model": "Android SDK built for x86", "oemName": "Google", "osName": "Android", "osVersion": "8.1.0", "osBuild": "OSM1.180201.021", "osApiLevel": 27, "locale": "en_US", "timeZoneOffset": -240, "screenSize": "1440x2392", "appVersion": "5.1", "carrierName": "Android", "carrierCountry": "us", "appBuild": "6", "appNamespace": "com.lemodpurern" }, "pushToken": "ckB1I8A9-Cg:APA91bHlfms7Ki5chMHxeXn3-K-rXcz5jwTTdKYQ5e-HTdR70XvlbEhrMuqvsJuQpjX0ZIz2127MjsHeijM8OJli9CYQFj742I2qANNbLlhHXvMvwkXNUI-tzu_AmnHBZVG8YTu0kH" } ] } 2019-07-08 22:00:18.275 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.slider.ReactSliderManager 2019-07-08 22:00:18.311 1436-18246/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 14749696 2019-07-08 22:00:18.316 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.slider.ReactSliderManager$ReactSliderShadowNode 2019-07-08 22:00:18.333 14415-14468/com.lemodpurern D/AppCenter: Stored a log to the Persistence database for log type startSession with databaseId=435 2019-07-08 22:00:18.333 14415-14468/com.lemodpurern D/AppCenter: enqueue(group_analytics) pendingLogCount=1 2019-07-08 22:00:18.333 14415-14468/com.lemodpurern D/AppCenter: checkPendingLogs(group_analytics) pendingLogCount=1 2019-07-08 22:00:18.333 14415-14468/com.lemodpurern D/AppCenter: checkPendingLogs(group_push) pendingLogCount=0 2019-07-08 22:00:18.343 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.switchview.ReactSwitchManager 2019-07-08 22:00:18.344 1436-18246/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 14749696 2019-07-08 22:00:18.361 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.switchview.ReactSwitchManager$ReactSwitchShadowNode 2019-07-08 22:00:18.365 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.toolbar.ReactToolbarManager 2019-07-08 22:00:18.371 1436-18246/? D/gralloc_ranchu: gralloc_alloc: Creating ashmem region of size 14749696 2019-07-08 22:00:18.372 14415-14483/com.lemodpurern I/zygote: android::hardware::configstore::V1_0::ISurfaceFlingerConfigs::hasWideColorDisplay retrieved: 0 2019-07-08 22:00:18.372 14415-14483/com.lemodpurern I/OpenGLRenderer: Initialized EGL, version 1.4 2019-07-08 22:00:18.372 14415-14483/com.lemodpurern D/OpenGLRenderer: Swap behavior 1 2019-07-08 22:00:18.373 14415-14483/com.lemodpurern W/OpenGLRenderer: Failed to choose config with EGL_SWAP_BEHAVIOR_PRESERVED, retrying without... 2019-07-08 22:00:18.373 14415-14483/com.lemodpurern D/OpenGLRenderer: Swap behavior 0 2019-07-08 22:00:18.388 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.webview.ReactWebViewManager 2019-07-08 22:00:18.396 14415-14483/com.lemodpurern D/EGL_emulation: eglCreateContext: 0xedfb3ea0: maj 3 min 0 rcv 3 2019-07-08 22:00:18.402 14415-14483/com.lemodpurern D/EGL_emulation: eglMakeCurrent: 0xedfb3ea0: ver 3 0 (tinfo 0xe612cf90) 2019-07-08 22:00:18.404 14415-14434/com.lemodpurern D/FA: Connected to remote service 2019-07-08 22:00:18.421 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.swiperefresh.SwipeRefreshLayoutManager 2019-07-08 22:00:18.435 1448-1505/? E/SurfaceFlinger: ro.sf.lcd_density must be defined as a build property 2019-07-08 22:00:18.441 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTSurfaceViewManager 2019-07-08 22:00:18.442 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTSurfaceViewShadowNode 2019-07-08 22:00:18.443 14415-14434/com.lemodpurern V/FA: Processing queued up service tasks: 2 2019-07-08 22:00:18.444 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.frescosupport.FrescoBasedReactTextInlineImageViewManager 2019-07-08 22:00:18.444 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.frescosupport.FrescoBasedReactTextInlineImageShadowNode 2019-07-08 22:00:18.478 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.image.ReactImageManager 2019-07-08 22:00:18.517 14415-14426/com.lemodpurern I/zygote: Background concurrent copying GC freed 12737(1122KB) AllocSpace objects, 10(328KB) LOS objects, 49% free, 1979KB/3MB, paused 1.920ms total 150.893ms 2019-07-08 22:00:18.525 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.modal.ReactModalHostManager 2019-07-08 22:00:18.543 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.modal.ModalHostShadowNode 2019-07-08 22:00:18.551 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactRawTextManager 2019-07-08 22:00:18.559 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactRawTextShadowNode 2019-07-08 22:00:18.585 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.textinput.ReactTextInputManager 2019-07-08 22:00:18.617 14415-14483/com.lemodpurern D/EGL_emulation: eglMakeCurrent: 0xedfb3ea0: ver 3 0 (tinfo 0xe612cf90) 2019-07-08 22:00:18.625 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.textinput.ReactTextInputShadowNode 2019-07-08 22:00:18.634 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactTextViewManager 2019-07-08 22:00:18.645 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactTextShadowNode 2019-07-08 22:00:18.648 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.view.ReactViewManager 2019-07-08 22:00:18.659 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.viewpager.ReactViewPagerManager 2019-07-08 22:00:18.678 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactVirtualTextViewManager 2019-07-08 22:00:18.694 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactVirtualTextShadowNode 2019-07-08 22:00:18.697 14415-14477/com.lemodpurern W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.BV.LinearGradient.LinearGradientManager 2019-07-08 22:00:18.699 1662-1688/system_process I/ActivityManager: Displayed com.lemodpurern/.MainActivity: +1s352ms (total +1s504ms) 2019-07-08 22:00:18.764 14415-14477/com.lemodpurern D/AppCenterCrashes: Setting react context 2019-07-08 22:00:18.765 14415-14477/com.lemodpurern D/AppCenterCrashes: Returning list containing crashes module 2019-07-08 22:00:18.766 14415-14420/com.lemodpurern I/zygote: Do partial code cache collection, code=29KB, data=24KB 2019-07-08 22:00:18.771 14415-14420/com.lemodpurern I/zygote: After code cache collection, code=29KB, data=24KB 2019-07-08 22:00:18.772 14415-14420/com.lemodpurern I/zygote: Increasing code cache capacity to 128KB 2019-07-08 22:00:18.775 1448-1448/? W/SurfaceFlinger: couldn't log to binary event log: overflow. 2019-07-08 22:00:18.793 14415-14477/com.lemodpurern D/ReactNative: Initializing React Xplat Bridge. 2019-07-08 22:00:18.799 14415-14477/com.lemodpurern D/ReactNative: Initializing React Xplat Bridge before initializeBridge 2019-07-08 22:00:18.815 14415-14477/com.lemodpurern D/ReactNative: Initializing React Xplat Bridge after initializeBridge 2019-07-08 22:00:18.816 14415-14477/com.lemodpurern D/ReactNative: CatalystInstanceImpl.runJSBundle() 2019-07-08 22:00:18.819 14415-14489/com.lemodpurern D/ReactNative: ReactInstanceManager.setupReactContext() 2019-07-08 22:00:18.819 14415-14489/com.lemodpurern D/ReactNative: CatalystInstanceImpl.initialize() 2019-07-08 22:00:18.844 14415-14415/com.lemodpurern W/unknown:ReactNative: Packager connection already open, nooping. 2019-07-08 22:00:18.847 14415-14489/com.lemodpurern D/ReactNative: ReactInstanceManager.attachRootViewToInstance() 2019-07-08 22:00:18.849 14415-14489/com.lemodpurern D/SoLoader: About to load: libyoga.so 2019-07-08 22:00:18.850 14415-14489/com.lemodpurern D/SoLoader: libyoga.so not found on /data/data/com.lemodpurern/lib-main 2019-07-08 22:00:18.850 14415-14489/com.lemodpurern D/SoLoader: libyoga.so found on /data/app/com.lemodpurern-FccI5QZckUyqS1r2ckfyOA==/lib/x86 2019-07-08 22:00:18.850 14415-14489/com.lemodpurern D/SoLoader: Not resolving dependencies for libyoga.so 2019-07-08 22:00:18.866 14415-14489/com.lemodpurern D/SoLoader: Loaded: libyoga.so 2019-07-08 22:00:18.872 2179-2179/com.google.android.googlequicksearchbox:search W/SearchService: Abort, client detached. 2019-07-08 22:00:18.879 2179-13998/com.google.android.googlequicksearchbox:search I/PBSessionCacheImpl: Deleted sessionId[153065329180] from persistence. 2019-07-08 22:00:18.930 14415-14489/com.lemodpurern D/SoLoader: init exiting 2019-07-08 22:00:19.134 2231-14389/com.google.android.gms.persistent I/Places: ?: PlacesBleScanner stop() 2019-07-08 22:00:19.137 2231-2231/com.google.android.gms.persistent I/BeaconBle: Scan : No clients left, canceling alarm. 2019-07-08 22:00:19.138 2231-2231/com.google.android.gms.persistent I/BeaconBle: Scan canceled successfully. 2019-07-08 22:00:19.174 2231-14389/com.google.android.gms.persistent I/PlaceInferenceEngine: [anon] Changed inference mode: 0 2019-07-08 22:00:19.235 2231-2231/com.google.android.gms.persistent I/GeofencerStateMachine: removeGeofences: removeRequest=RemoveGeofencingRequest[REMOVE_BY_PENDING_INTENT pendingIntent=PendingIntent[creatorPackage=com.google.android.gms], packageName=null] 2019-07-08 22:00:19.238 14415-14484/com.lemodpurern V/AppCenter: HTTP response status=200 payload=CorrelationId: 27bd8c0a-36a3-4eff-af28-3bcdd8b2df3b ReasonCode: Success 2019-07-08 22:00:19.242 14415-14468/com.lemodpurern D/AppCenter: Deleting logs from the Persistence database for group_push with 849e4d40-1053-4bdf-bec1-2f12483f6c6f 2019-07-08 22:00:19.242 14415-14468/com.lemodpurern D/AppCenter: The IDs for deleting log(s) is/are: 2019-07-08 22:00:19.242 14415-14468/com.lemodpurern D/AppCenter: 431 2019-07-08 22:00:19.271 14415-14468/com.lemodpurern D/AppCenter: checkPendingLogs(group_push) pendingLogCount=0 2019-07-08 22:00:19.512 14415-14489/com.lemodpurern I/WebViewFactory: Loading com.android.chrome version 61.0.3163.98 (code 316409812) 2019-07-08 22:00:19.555 14415-14489/com.lemodpurern I/zygote: The ClassLoaderContext is a special shared library. 2019-07-08 22:00:19.692 14415-14489/com.lemodpurern I/cr_LibraryLoader: Time to load native libraries: 14 ms (timestamps 4018-4032) 2019-07-08 22:00:19.723 14415-14489/com.lemodpurern I/chromium: [INFO:library_loader_hooks.cc(136)] Chromium logging enabled: level = 0, default verbosity = 0 2019-07-08 22:00:19.724 14415-14489/com.lemodpurern I/cr_LibraryLoader: Expected native library version number "61.0.3163.98", actual native library version number "61.0.3163.98" 2019-07-08 22:00:19.825 14415-14488/com.lemodpurern W/ReactNativeJS: Require cycle: node_modules/react-native-router-flux/dist/navigationStore.js -> node_modules/react-native-router-flux/dist/NavBar.js -> node_modules/react-native-router-flux/dist/navigationStore.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-08 22:00:19.839 14415-14488/com.lemodpurern W/ReactNativeJS: Require cycle: node_modules/react-native-router-flux/dist/Reducer.js -> node_modules/react-native-router-flux/dist/navigationStore.js -> node_modules/react-native-router-flux/dist/Reducer.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-08 22:00:19.875 14415-14488/com.lemodpurern W/ReactNativeJS: Require cycle: node_modules/rn-fetch-blob/index.js -> node_modules/rn-fetch-blob/polyfill/index.js -> node_modules/rn-fetch-blob/polyfill/Blob.js -> node_modules/rn-fetch-blob/index.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-08 22:00:19.877 14415-14488/com.lemodpurern W/ReactNativeJS: Require cycle: node_modules/rn-fetch-blob/index.js -> node_modules/rn-fetch-blob/polyfill/index.js -> node_modules/rn-fetch-blob/polyfill/XMLHttpRequest.js -> node_modules/rn-fetch-blob/index.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-08 22:00:19.878 14415-14488/com.lemodpurern W/ReactNativeJS: Require cycle: node_modules/rn-fetch-blob/index.js -> node_modules/rn-fetch-blob/polyfill/index.js -> node_modules/rn-fetch-blob/polyfill/FileReader.js -> node_modules/rn-fetch-blob/index.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-08 22:00:19.880 14415-14488/com.lemodpurern W/ReactNativeJS: Require cycle: node_modules/rn-fetch-blob/index.js -> node_modules/rn-fetch-blob/polyfill/index.js -> node_modules/rn-fetch-blob/polyfill/Fetch.js -> node_modules/rn-fetch-blob/index.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-08 22:00:19.898 14415-14488/com.lemodpurern W/ReactNativeJS: Require cycle: js/services/MiscHelper.js -> js/stores/ViewStore/AppViewStore.js -> js/services/MiscHelper.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-08 22:00:19.905 14415-14488/com.lemodpurern W/ReactNativeJS: Require cycle: js/stores/PatientInfoStore/PatientInfoStore.js -> js/services/MiscHelper.js -> js/stores/PatientInfoStore/PatientInfoStore.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-08 22:00:19.905 14415-14488/com.lemodpurern W/ReactNativeJS: Require cycle: js/stores/PatientInfoStore/PatientInfoStore.js -> js/services/LinkHelper.js -> js/stores/PatientInfoStore/PatientInfoStore.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-08 22:00:19.922 14415-14488/com.lemodpurern W/ReactNativeJS: Require cycle: js/stores/EntityStore/AuthStore.js -> js/stores/ViewStore/LoginViewStore.js -> js/services/AuthService.js -> js/services/ErrorHandler.js -> js/stores/EntityStore/AuthStore.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-08 22:00:19.922 14415-14488/com.lemodpurern W/ReactNativeJS: Require cycle: js/stores/ViewStore/LoginViewStore.js -> js/services/AuthService.js -> js/services/ErrorHandler.js -> js/stores/ViewStore/LoginViewStore.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-08 22:00:19.923 14415-14488/com.lemodpurern W/ReactNativeJS: Require cycle: js/stores/ViewStore/LoginViewStore.js -> js/services/LoginHelper.js -> js/stores/ViewStore/LoginViewStore.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-08 22:00:19.923 14415-14488/com.lemodpurern W/ReactNativeJS: Require cycle: js/stores/EntityStore/AuthStore.js -> js/stores/ViewStore/LoginViewStore.js -> js/services/LoginHelper.js -> js/stores/EntityStore/AuthStore.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-08 22:00:19.927 14415-14488/com.lemodpurern W/ReactNativeJS: Require cycle: js/stores/EntityStore/AuthStore.js -> js/stores/ViewStore/LoginViewStore.js -> js/services/LoginHelper.js -> js/services/PhotoHelper.js -> js/services/NotificationHelper.js -> js/stores/EntityStore/AuthStore.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.

2019-07-08 22:00:20.145 14415-14488/com.lemodpurern I/ReactNativeJS: Running application "LemodPureRN" with appParams: {"rootTag":1}. DEV === true, development-level warning are ON, performance optimizations are OFF 2019-07-08 22:00:20.257 14415-14488/com.lemodpurern I/ReactNativeJS: [CodePush] Checking for update. 2019-07-08 22:00:20.262 14415-14488/com.lemodpurern I/ReactNativeJS: [CodePush] Reporting binary update (5.1) 2019-07-08 22:00:20.291 31836-31951/com.android.systemui D/EGL_emulation: eglMakeCurrent: 0xee0656a0: ver 3 0 (tinfo 0xe612c0e0) 2019-07-08 22:00:20.374 1427-1427/? W/audio_hw_generic: Not supplying enough data to HAL, expected position 118143743 , only wrote 117990720 2019-07-08 22:00:20.395 14415-14426/com.lemodpurern I/zygote: Background concurrent copying GC freed 24844(1511KB) AllocSpace objects, 4(144KB) LOS objects, 50% free, 2MB/4MB, paused 4.137ms total 137.019ms 2019-07-08 22:00:20.543 14415-14420/com.lemodpurern I/zygote: Do partial code cache collection, code=60KB, data=48KB 2019-07-08 22:00:20.547 14415-14420/com.lemodpurern I/zygote: After code cache collection, code=60KB, data=48KB 2019-07-08 22:00:20.547 14415-14420/com.lemodpurern I/zygote: Increasing code cache capacity to 256KB 2019-07-08 22:00:20.863 14415-14488/com.lemodpurern I/ReactNativeJS: [CodePush] Report status failed: {"appVersion":"5.1"} 2019-07-08 22:00:20.881 14415-14488/com.lemodpurern I/ReactNativeJS: [CodePush] An unknown error occurred. 2019-07-08 22:00:20.881 14415-14488/com.lemodpurern I/ReactNativeJS: [CodePush] 400: An update check must include a valid deployment key - please check that your app has been configured correctly. To view available deployment keys, run 'code-push deployment ls -k'. 2019-07-08 22:00:21.030 14415-14468/com.lemodpurern D/AppCenter: triggerIngestion(group_core) pendingLogCount=3 2019-07-08 22:00:21.030 14415-14468/com.lemodpurern D/AppCenter: Trying to get 3 logs from the Persistence database for group_core 2019-07-08 22:00:21.048 14415-14468/com.lemodpurern D/AppCenter: Returning 3 log(s) with an ID, 73cb899e-e71d-4ea2-bd7a-9a1c0ab570ed 2019-07-08 22:00:21.048 14415-14468/com.lemodpurern D/AppCenter: The SID/ID pairs for returning log(s) is/are: 2019-07-08 22:00:21.049 14415-14468/com.lemodpurern D/AppCenter: null / 432 2019-07-08 22:00:21.049 14415-14468/com.lemodpurern D/AppCenter: null / 433 2019-07-08 22:00:21.049 14415-14468/com.lemodpurern D/AppCenter: null / 434 2019-07-08 22:00:21.049 14415-14468/com.lemodpurern D/AppCenter: ingestLogs(group_core,73cb899e-e71d-4ea2-bd7a-9a1c0ab570ed) pendingLogCount=0 2019-07-08 22:00:21.057 14415-14468/com.lemodpurern D/AppCenter: checkPendingLogs(group_core) pendingLogCount=0 2019-07-08 22:00:21.064 14415-14484/com.lemodpurern V/AppCenter: Calling https://in.appcenter.ms/logs?api-version=1.0.0... 2019-07-08 22:00:21.064 14415-14484/com.lemodpurern V/AppCenter: Headers: {Content-Encoding=gzip, Install-ID=68660d19-fe16-4183-9932-4ff7548eb76f, App-Secret=****9a4d50c3, Content-Type=application/json} 2019-07-08 22:00:21.072 14415-14484/com.lemodpurern V/AppCenter: { "logs": [ { "type": "startService", "timestamp": "2019-07-09T02:00:17.951Z", "device": { "wrapperSdkVersion": "1.8.1", "wrapperSdkName": "appcenter.react-native", "sdkName": "appcenter.android", "sdkVersion": "1.8.0", "model": "Android SDK built for x86", "oemName": "Google", "osName": "Android", "osVersion": "8.1.0", "osBuild": "OSM1.180201.021", "osApiLevel": 27, "locale": "en_US", "timeZoneOffset": -240, "screenSize": "1440x2392", "appVersion": "5.1", "carrierName": "Android", "carrierCountry": "us", "appBuild": "6", "appNamespace": "com.lemodpurern" }, "services": [ "Push" ] }, { "type": "startService", "timestamp": "2019-07-09T02:00:18.091Z", "device": { "wrapperSdkVersion": "1.8.1", "wrapperSdkName": "appcenter.react-native", "sdkName": "appcenter.android", "sdkVersion": "1.8.0", "model": "Android SDK built for x86", "oemName": "Google", "osName": "Android", "osVersion": "8.1.0", "osBuild": "OSM1.180201.021", "osApiLevel": 27, "locale": "en_US", "timeZoneOffset": -240, "screenSize": "1440x2392", "appVersion": "5.1", "carrierName": "Android", "carrierCountry": "us", "appBuild": "6", "appNamespace": "com.lemodpurern" }, "services": [ "Crashes" ] }, { "type": "startService", "timestamp": "2019-07-09T02:00:18.194Z", "device": { "wrapperSdkVersion": "1.8.1", "wrapperSdkName": "appcenter.react-native", "sdkName": "appcenter.android", "sdkVersion": "1.8.0", "model": "Android SDK built for x86", "oemName": "Google", "osName": "Android", "osVersion": "8.1.0", "osBuild": "OSM1.180201.021", "osApiLevel": 27, "locale": "en_US", "timeZoneOffset": -240, "screenSize": "1440x2392", "appVersion": "5.1", "carrierName": "Android", "carrierCountry": "us", "appBuild": "6", "appNamespace": "com.lemodpurern" }, "services": [ "Analytics" ] } ] } 2019-07-08 22:00:21.155 14415-14484/com.lemodpurern V/AppCenter: HTTP response status=200 payload=CorrelationId: 40d78bf8-76f4-4b6f-80c7-82ec12ea5dae ReasonCode: Success 2019-07-08 22:00:21.163 14415-14468/com.lemodpurern D/AppCenter: Deleting logs from the Persistence database for group_core with 73cb899e-e71d-4ea2-bd7a-9a1c0ab570ed 2019-07-08 22:00:21.163 14415-14468/com.lemodpurern D/AppCenter: The IDs for deleting log(s) is/are: 2019-07-08 22:00:21.164 14415-14468/com.lemodpurern D/AppCenter: 432 2019-07-08 22:00:21.197 14415-14468/com.lemodpurern D/AppCenter: 433 2019-07-08 22:00:21.228 14415-14468/com.lemodpurern D/AppCenter: 434 2019-07-08 22:00:21.261 14415-14468/com.lemodpurern D/AppCenter: checkPendingLogs(group_core) pendingLogCount=0 2019-07-08 22:00:21.334 14415-14468/com.lemodpurern D/AppCenter: triggerIngestion(group_analytics) pendingLogCount=1 2019-07-08 22:00:21.335 14415-14468/com.lemodpurern D/AppCenter: Trying to get 1 logs from the Persistence database for group_analytics 2019-07-08 22:00:21.341 14415-14468/com.lemodpurern D/AppCenter: Returning 1 log(s) with an ID, 14f41b9e-39cf-4888-a081-371c22964dc8 2019-07-08 22:00:21.341 14415-14468/com.lemodpurern D/AppCenter: The SID/ID pairs for returning log(s) is/are: 2019-07-08 22:00:21.341 14415-14468/com.lemodpurern D/AppCenter: aba6034d-b081-485b-8c1b-eb705c6d82d8 / 435 2019-07-08 22:00:21.342 14415-14468/com.lemodpurern D/AppCenter: ingestLogs(group_analytics,14f41b9e-39cf-4888-a081-371c22964dc8) pendingLogCount=0 2019-07-08 22:00:21.348 14415-14468/com.lemodpurern D/AppCenter: checkPendingLogs(group_analytics) pendingLogCount=0 2019-07-08 22:00:21.354 14415-14475/com.lemodpurern V/AppCenter: Calling https://in.appcenter.ms/logs?api-version=1.0.0... 2019-07-08 22:00:21.354 14415-14475/com.lemodpurern V/AppCenter: Headers: {Install-ID=68660d19-fe16-4183-9932-4ff7548eb76f, App-Secret=****9a4d50c3, Content-Type=application/json} 2019-07-08 22:00:21.355 14415-14475/com.lemodpurern V/AppCenter: { "logs": [ { "type": "startSession", "timestamp": "2019-07-09T02:00:18.264Z", "sid": "aba6034d-b081-485b-8c1b-eb705c6d82d8", "device": { "wrapperSdkVersion": "1.8.1", "wrapperSdkName": "appcenter.react-native", "sdkName": "appcenter.android", "sdkVersion": "1.8.0", "model": "Android SDK built for x86", "oemName": "Google", "osName": "Android", "osVersion": "8.1.0", "osBuild": "OSM1.180201.021", "osApiLevel": 27, "locale": "en_US", "timeZoneOffset": -240, "screenSize": "1440x2392", "appVersion": "5.1", "carrierName": "Android", "carrierCountry": "us", "appBuild": "6", "appNamespace": "com.lemodpurern" } } ] } 2019-07-08 22:00:21.446 14415-14475/com.lemodpurern V/AppCenter: HTTP response status=200 payload=CorrelationId: 0783ba43-fd37-4288-a89f-fe38566a4013 ReasonCode: Success 2019-07-08 22:00:21.453 14415-14468/com.lemodpurern D/AppCenter: Deleting logs from the Persistence database for group_analytics with 14f41b9e-39cf-4888-a081-371c22964dc8 2019-07-08 22:00:21.454 14415-14468/com.lemodpurern D/AppCenter: The IDs for deleting log(s) is/are: 2019-07-08 22:00:21.455 14415-14468/com.lemodpurern D/AppCenter: 435 2019-07-08 22:00:21.494 14415-14468/com.lemodpurern D/AppCenter: checkPendingLogs(group_analytics) pendingLogCount=0 2019-07-08 22:00:21.506 14415-14512/com.lemodpurern D/SoLoader: About to load: libimagepipeline.so 2019-07-08 22:00:21.508 14415-14512/com.lemodpurern D/SoLoader: libimagepipeline.so not found on /data/data/com.lemodpurern/lib-main 2019-07-08 22:00:21.508 14415-14512/com.lemodpurern D/SoLoader: libimagepipeline.so found on /data/app/com.lemodpurern-FccI5QZckUyqS1r2ckfyOA==/lib/x86 2019-07-08 22:00:21.508 14415-14512/com.lemodpurern D/SoLoader: Not resolving dependencies for libimagepipeline.so 2019-07-08 22:00:21.519 14415-14512/com.lemodpurern D/SoLoader: Loaded: libimagepipeline.so 2019-07-08 22:00:21.722 14415-14468/com.lemodpurern D/AppCenter: Storing a log to the Persistence database for log type customProperties with sid=aba6034d-b081-485b-8c1b-eb705c6d82d8 2019-07-08 22:00:21.765 14415-14468/com.lemodpurern D/AppCenter: Stored a log to the Persistence database for log type customProperties with databaseId=436 2019-07-08 22:00:21.765 14415-14468/com.lemodpurern D/AppCenter: enqueue(group_core) pendingLogCount=1 2019-07-08 22:00:21.766 14415-14468/com.lemodpurern D/AppCenter: checkPendingLogs(group_core) pendingLogCount=1 2019-07-08 22:00:23.466 14415-14434/com.lemodpurern V/FA: Inactivity, disconnecting from the service 2019-07-08 22:00:23.894 2179-14516/com.google.android.googlequicksearchbox:search I/EventLogSendingHelper: Sending log events. 2019-07-08 22:00:24.148 2231-2231/com.google.android.gms.persistent I/BeaconBle: Scan : No clients left, canceling alarm. 2019-07-08 22:00:24.234 14415-14420/com.lemodpurern I/zygote: Do full code cache collection, code=107KB, data=102KB 2019-07-08 22:00:24.238 14415-14420/com.lemodpurern I/zygote: After code cache collection, code=93KB, data=72KB 2019-07-08 22:00:24.771 14415-14468/com.lemodpurern D/AppCenter: triggerIngestion(group_core) pendingLogCount=1 2019-07-08 22:00:24.771 14415-14468/com.lemodpurern D/AppCenter: Trying to get 1 logs from the Persistence database for group_core 2019-07-08 22:00:24.782 14415-14468/com.lemodpurern D/AppCenter: Returning 1 log(s) with an ID, 77c6f246-d5e3-4f0e-af69-551c592fb0dd 2019-07-08 22:00:24.782 14415-14468/com.lemodpurern D/AppCenter: The SID/ID pairs for returning log(s) is/are: 2019-07-08 22:00:24.782 14415-14468/com.lemodpurern D/AppCenter: aba6034d-b081-485b-8c1b-eb705c6d82d8 / 436 2019-07-08 22:00:24.796 14415-14468/com.lemodpurern D/AppCenter: ingestLogs(group_core,77c6f246-d5e3-4f0e-af69-551c592fb0dd) pendingLogCount=0 2019-07-08 22:00:24.801 14415-14468/com.lemodpurern D/AppCenter: checkPendingLogs(group_core) pendingLogCount=0 2019-07-08 22:00:24.813 14415-14475/com.lemodpurern V/AppCenter: Calling https://in.appcenter.ms/logs?api-version=1.0.0... 2019-07-08 22:00:24.814 14415-14475/com.lemodpurern V/AppCenter: Headers: {Install-ID=68660d19-fe16-4183-9932-4ff7548eb76f, App-Secret=****9a4d50c3, Content-Type=application/json} 2019-07-08 22:00:24.816 14415-14475/com.lemodpurern V/AppCenter: { "logs": [ { "type": "customProperties", "timestamp": "2019-07-09T02:00:21.721Z", "sid": "aba6034d-b081-485b-8c1b-eb705c6d82d8", "device": { "wrapperSdkVersion": "1.8.1", "wrapperSdkName": "appcenter.react-native", "sdkName": "appcenter.android", "sdkVersion": "1.8.0", "model": "Android SDK built for x86", "oemName": "Google", "osName": "Android", "osVersion": "8.1.0", "osBuild": "OSM1.180201.021", "osApiLevel": 27, "locale": "en_US", "timeZoneOffset": -240, "screenSize": "1440x2392", "appVersion": "5.1", "carrierName": "Android", "carrierCountry": "us", "appBuild": "6", "appNamespace": "com.lemodpurern" }, "properties": [ { "name": "practice", "type": "string", "value": "5c9b6ff7a184387c31eef16c" }, { "name": "gender", "type": "string", "value": "female" }, { "name": "patientId", "type": "string", "value": "5c9bca011c215d06b293d298" }, { "name": "age", "type": "number", "value": 33 } ] } ] } 2019-07-08 22:00:24.912 14415-14475/com.lemodpurern V/AppCenter: HTTP response status=200 payload=CorrelationId: 5e64bcd4-4ae0-4f55-ba57-7f030e878bcb ReasonCode: Success 2019-07-08 22:00:24.914 14415-14468/com.lemodpurern D/AppCenter: Deleting logs from the Persistence database for group_core with 77c6f246-d5e3-4f0e-af69-551c592fb0dd 2019-07-08 22:00:24.915 14415-14468/com.lemodpurern D/AppCenter: The IDs for deleting log(s) is/are: 2019-07-08 22:00:24.915 14415-14468/com.lemodpurern D/AppCenter: 436 2019-07-08 22:00:24.941 14415-14468/com.lemodpurern D/AppCenter: checkPendingLogs(group_core) pendingLogCount=0 2019-07-08 22:00:25.386 14415-14426/com.lemodpurern I/zygote: NativeAlloc concurrent copying GC freed 9259(506KB) AllocSpace objects, 3(60KB) LOS objects, 49% free, 3MB/6MB, paused 4.203ms total 153.098ms 2019-07-08 22:00:25.454 14415-14420/com.lemodpurern I/zygote: Do partial code cache collection, code=115KB, data=90KB 2019-07-08 22:00:25.457 14415-14420/com.lemodpurern I/zygote: After code cache collection, code=115KB, data=90KB 2019-07-08 22:00:25.457 14415-14420/com.lemodpurern I/zygote: Increasing code cache capacity to 512KB 2019-07-08 22:00:39.011 1662-1680/system_process E/memtrack: Couldn't load memtrack module 2019-07-08 22:00:39.011 1662-1680/system_process W/android.os.Debug: failed to get memory consumption info: -1 2019-07-08 22:00:39.033 1662-1680/system_process E/memtrack: Couldn't load memtrack module 2019-07-08 22:00:39.033 1662-1680/system_process W/android.os.Debug: failed to get memory consumption info: -1 2019-07-08 22:00:39.044 1662-1680/system_process E/memtrack: Couldn't load memtrack module 2019-07-08 22:00:39.044 1662-1680/system_process W/android.os.Debug: failed to get memory consumption info: -1 2019-07-08 22:00:41.039 1444-1444/? I/boot-pipe: done populating /dev/random

Jamminroot commented 5 years ago

Hey, @JasonFehr, logs you provided seem to be fine; The only 2 things I have noticed in your logs are: 1) 2019-07-08 22:00:17.168 14415-14415/com.lemodpurern W/FirebaseMessaging: Error while parsing timestamp in GCM event java.lang.NumberFormatException: s == null while parsing the push you sent - is probably related to the way FB works with data. 2) You seem to be launching push separately from crashes (with 2 different lines, I think) - can you provide a code snippet (with your secrets ommited, ofcourse) about how and where you do it? That would really help me understand what's missing. Thanks in advance!

JasonFehr commented 5 years ago

@Jamminroot Thanks for the input.

I'm actually not using appcenter-crashes in the javascript.

The MainApplication.java, build.gradle, and settings.gradle contain the only non-iOS references to appcenter crashes I can see. I've pasted them below.


MainApplication.java package com.lemodpurern;

import android.app.Application;

import com.facebook.react.ReactApplication; import com.RNFetchBlob.RNFetchBlobPackage; import com.microsoft.appcenter.reactnative.push.AppCenterReactNativePushPackage; import com.microsoft.appcenter.reactnative.crashes.AppCenterReactNativeCrashesPackage; import com.microsoft.appcenter.reactnative.analytics.AppCenterReactNativeAnalyticsPackage; import com.microsoft.appcenter.reactnative.appcenter.AppCenterReactNativePackage; import com.rnfingerprint.FingerprintAuthPackage; import com.imagepicker.ImagePickerPackage; import com.oblador.vectoricons.VectorIconsPackage; import com.facebook.react.ReactNativeHost; import com.facebook.react.ReactPackage; import com.facebook.react.shell.MainReactPackage; import com.facebook.soloader.SoLoader; import com.microsoft.codepush.react.CodePush; import com.BV.LinearGradient.LinearGradientPackage; import com.microsoft.appcenter.AppCenter;

import java.util.Arrays; import java.util.List;

public class MainApplication extends Application implements ReactApplication {

private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { @Override protected String getJSBundleFile() { return CodePush.getJSBundleFile(); } @Override public boolean getUseDeveloperSupport() { return BuildConfig.DEBUG; }

@Override
protected List<ReactPackage> getPackages() {
  return Arrays.<ReactPackage>asList(
      new MainReactPackage(),
        new RNFetchBlobPackage(),
        new AppCenterReactNativePushPackage(MainApplication.this),
        new AppCenterReactNativeCrashesPackage(MainApplication.this, getResources().getString(R.string.appCenterCrashes_whenToSendCrashes)),
        new AppCenterReactNativeAnalyticsPackage(MainApplication.this, getResources().getString(R.string.appCenterAnalytics_whenToEnableAnalytics)),
        new AppCenterReactNativePackage(MainApplication.this),
        new FingerprintAuthPackage(),
        new ImagePickerPackage(),
        new VectorIconsPackage(),
        new CodePush(BuildConfig.CODEPUSH_KEY, MainApplication.this, BuildConfig.DEBUG),
        new LinearGradientPackage()
  );
}

@Override
protected String getJSMainModuleName() {
  return "index";
}

};

@Override public ReactNativeHost getReactNativeHost() { return mReactNativeHost; }

@Override public void onCreate() { super.onCreate(); AppCenter.setLogLevel(android.util.Log.VERBOSE); SoLoader.init(this, / native exopackage / false); } }


build.gradle (with secrets deleted) apply plugin: "com.android.application"

import com.android.build.OutputFile

/**

project.ext.react = [ entryFile: "index.js" ]

apply from: "../../node_modules/react-native/react.gradle" apply from: "../../node_modules/react-native-code-push/android/codepush.gradle"

/**

/**

android { compileSdkVersion 28

defaultConfig {
    applicationId "com.lemodpurern"
    minSdkVersion 16
    targetSdkVersion 28
    versionCode 6
    versionName "5.1"
    ndk {
        abiFilters "armeabi-v7a", "x86"
    }
}
signingConfigs {
    release {
        storeFile file('/Users/jasonfehr/coding/lemod/LemodPureRNKeystore.jks')
        storePassword "xxxxxxx
        keyAlias "xxxxxx
        keyPassword "xxxxxxx
    }
}
splits {
    abi {
        reset()
        enable enableSeparateBuildPerCPUArchitecture
        universalApk false  // If true, also generate a universal APK
        include "armeabi-v7a", "x86"
    }
}
buildTypes {
    debug {
      minifyEnabled enableProguardInReleaseBuilds
      proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
      // Note: CodePush updates should not be tested in Debug mode as they are overriden by the RN packager. However, because CodePush checks for updates in all modes, we must supply a key.
      buildConfigField "String", "CODEPUSH_KEY", '""'
  }

  releaseStaging {
      minifyEnabled enableProguardInReleaseBuilds
      proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
      buildConfigField "String", "CODEPUSH_KEY", '"xxxxxxxxx
      matchingFallbacks = ['debug', 'release']
  }

  release {
      minifyEnabled enableProguardInReleaseBuilds
      proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
      buildConfigField "String", "CODEPUSH_KEY", '"xxxxxxx
      // signingConfig signingConfigs.release // comment out this line for ms app center
  }
}
// applicationVariants are e.g. debug, release
applicationVariants.all { variant ->
    variant.outputs.each { output ->
        // For each separate APK per architecture, set a unique version code as described here:
        // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
        def versionCodes = ["armeabi-v7a":1, "x86":2]
        def abi = output.getFilter(OutputFile.ABI)
        if (abi != null) {  // null for the universal-debug, universal-release variants
            output.versionCodeOverride =
                    versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
        }
    }
}

}

dependencies { compile project(':rn-fetch-blob') compile project(':appcenter-push') compile project(':appcenter-crashes') compile project(':appcenter-analytics') compile project(':appcenter') compile project(':react-native-touch-id') compile project(':react-native-image-picker') compile project(':react-native-vector-icons') compile fileTree(dir: "libs", include: ["*.jar"]) compile "com.android.support:appcompat-v7:26.1.0" compile "com.facebook.react:react-native:+" // From node_modules compile project(':react-native-code-push') compile 'com.google.firebase:firebase-core:12.0.1' compile 'com.google.firebase:firebase-messaging:12.0.1' compile project(':react-native-linear-gradient') }

// Run this once to be able to run the application with BUCK // puts all compile dependencies into folder libs for BUCK to use task copyDownloadableDepsToLibs(type: Copy) { from configurations.compile into 'libs' }

apply plugin: 'com.google.gms.google-services'


settings.gradle rootProject.name = 'LemodPureRN' include ':rn-fetch-blob' project(':rn-fetch-blob').projectDir = new File(rootProject.projectDir, '../node_modules/rn-fetch-blob/android') include ':appcenter-push' project(':appcenter-push').projectDir = new File(rootProject.projectDir, '../node_modules/appcenter-push/android') include ':@aws-amplify/pushnotification' project(':@aws-amplify/pushnotification').projectDir = new File(rootProject.projectDir, '../node_modules/@aws-amplify/pushnotification/android') include ':appcenter-crashes' project(':appcenter-crashes').projectDir = new File(rootProject.projectDir, '../node_modules/appcenter-crashes/android') include ':appcenter-analytics' project(':appcenter-analytics').projectDir = new File(rootProject.projectDir, '../node_modules/appcenter-analytics/android') include ':appcenter' project(':appcenter').projectDir = new File(rootProject.projectDir, '../node_modules/appcenter/android') include ':react-native-touch-id' project(':react-native-touch-id').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-touch-id/android') include ':react-native-image-picker' project(':react-native-image-picker').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-image-picker/android') include ':react-native-vector-icons' project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android')

include ':app' include ':app', ':react-native-code-push' project(':react-native-code-push').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-code-push/android/app') include ':react-native-linear-gradient' project(':react-native-linear-gradient').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-linear-gradient/android')

guperrot commented 5 years ago
  1. 2019-07-08 22:00:17.168 14415-14415/com.lemodpurern W/FirebaseMessaging: Error while parsing timestamp in GCM event java.lang.NumberFormatException: s == null while parsing the push you sent - is probably related to the way FB works with data. That always happens even when push works in background though. This warning has always been harmless.

Also based on the new logs, we can see push registers successfully and you already mentioned you receive pushes.

About the split service logs it's normal in react-native as well, every module starts separately for that platform.

What we need to look at next is why the main activity cannot read the push parameters from the intent.

Firebase does not expose an API to read push parameters at start, it just put the information in the launch intent of the activity on click and that's what our SDK reads.

First, I'd like to make sure about the content of the AndroidManifest.xml file to see how activities are declared. Then we would also need to look at the content of the Java files for the activities.

JasonFehr commented 5 years ago

Of course.

You'll see a SplashActivity left over from a few months ago, we no longer use a splash screen and I no longer need it. Due to my lack of familiarity with the AndroidManifest.xml file, I never bothered to remove this activity.

<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="com.lemodpurern">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!-- <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> -->
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.READ_INTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>

<application
  android:name=".MainApplication"
  android:label="@string/app_name"
  android:icon="@mipmap/remembershipicon"
  android:allowBackup="false"
  android:theme="@style/AppTheme"
  tools:replace="android:allowBackup">

<activity
    android:name=".SplashActivity"
    android:theme="@style/AppTheme"
    android:label="@string/app_name">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
        <action android:name="android.intent.action.DOWNLOAD_COMPLETE"/>
    </intent-filter>
    <intent-filter android:label="filter_react_native">
        <action android:name="android.intent.action.VIEW" />
        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />
        <data android:scheme="lemodremembership" />
    </intent-filter>
</activity>

  <activity
    android:name=".MainActivity"
    android:label="@string/app_name"
    android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
    android:launchMode="singleTask"
    android:screenOrientation="portrait"
    android:windowSoftInputMode="adjustResize"
      android:exported="true">
    <intent-filter android:label="filter_react_native">
      <action android:name="android.intent.action.VIEW" />
      <category android:name="android.intent.category.DEFAULT" />
      <category android:name="android.intent.category.BROWSABLE" />
      <data android:scheme="lemodremembership" />
    </intent-filter>
  </activity>
  <activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />

</application>

guperrot commented 5 years ago

Hi,

The main entry point of any Android application is the activity that defines

<intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />

Which in your case is .SplashActivity.

Firebase will put the intent parameters of the push into .SplashActivity as this is the main launcher. (This is also the activity started from the phone menu).

Thus onNewIntent method needs to be defined in that SplashActivity class.

JasonFehr commented 5 years ago

That was it!

I removed the SplashActivity activity and moved the entry point <intent-filter> into MainActivity.

It is now totally fixed.

Thank you very much.