Skip to first unread message

JeremSpy

unread,
Jul 31, 2017, 8:37:49 AM7/31/17
to MIT App Inventor Forum
Bonjour à tous,

Je n'ai aucun problème lors de la création de mes applications via http://ai2.appinventor.mit.edu,
Designer : okay, Blocks : okay, emulation : okay.

Alors je génère le QR Code pour télécharger l'application sur un Samsung A5 2017,
là, l'application s'installe et démarre comme demandé, mais en appuyant sur un bouton pour
par exemple accéder à un menu, une page ou stocker une information dans TinyDB
l'application crashe et me met "L'application a cessé de fonctionner".

De temps à autres l'application "revient à elle" et fonctionne parfaitement mais dernièrement
je ne peux plus ouvrir d'application, elle crashe immédiatement et refuse de s'ouvrir.

Si vous avez pu rencontrer et résoudre le même problème je vous remercie beaucoup de m'apporter
votre aide si précieuse.

P.-S. : j'ai testé sur un Samsung J5 et sur un Sony Xperia M4 Aqua également (même problème)
Je possède Windows 10 (Creators Update) et travaille sur Opéra pour Windows (pensant que ça
pouvait résoudre mon soucis j'ai essayé Google Chrome mais rien à faire)
Merci encore et agréable journée.

Cordialement.

Taifun

unread,
Jul 31, 2017, 11:59:57 AM7/31/17
to mitappinv...@googlegroups.com
how many screens does the app have? did you upload several large images?

see the following general tips and in your case especially #1 and #2

  1. Use different screens wisely
    Before starting to create another screen, first you should think about is it really necessary? See also Building apps with many screens and SteveJG's post about advantages/disadvantagesbecause in only one screen you also can use vertical arrangements to simulate different screens, just set the arrangements to visible = true/false as needed... See also Martyn_HK's example about how to use Tabs in App Inventor and another example from Cyd

    If you decided to use different screens, then you should switch them correctly, else you will run out of memory after a while...      
    The recommended method of switching screens in App Inventor

  2. App Inventor works best if you use images whose size matches the size you want them to appear on your screen. If you import larger images into your app, your app may run out of system memory. Using Images with App Inventor

  3. Avoid redundancy
    Probably it helps to read chapter 19 - 21 in Dave's book http://www.appinventor.org/book2 to get an idea how to do DRY programming with App Inventor - Don't repeat yourself 

  4. See SteveJG's monster list of tips and tricks

  5. How to overcome the App Inventor project limit of 10 MB

  6. Backup your project frequently
Taifun

Trying to push the limits of App Inventor! SnippetsTutorials and Extensions from Pura Vida Apps by  Taifun. 


JeremSpy

unread,
Jul 31, 2017, 3:34:32 PM7/31/17
to MIT App Inventor Forum
Hello, thanks to reply.. I didn't even think to post in English..

My app has only five screens and I use vertical arrangements to simulate different screens.
I do resize my pictures but there are a lot of pics, I try with less images but it doesn't seem to change anything.

E.g.: If I set an image as a background, do I need to size my pic to my phone screen resolution or App Inventor's resolution (in the viewer)?

Also, my app is only 3 MB, but I'll read deeper the documentation that you provide to me.

I never forget to save my progress for any change (who knows?) ;)

Greetings, JeremSpy

Taifun

unread,
Jul 31, 2017, 3:50:38 PM7/31/17
to MIT App Inventor Forum
From time to time the application "coming around" and works perfectly but lately
I can not open the application, it crashes immediately and will not open.

to find out more about the Runtime Error, you can use Logcat

I normally use Eclipse and Logcat there, but if you have installed the App Inventor Software (see also http://appinventor.mit.edu/explore/ai2/setup-emulator.html), you already have everything you need to use logcat...

How to use Logcat
  1. connect your device using USB with your computer
  2. in File Manager go to the App Inventor directory, which is  C:\Program Files\App Inventor or similar
  3. press Shift and right mouse click the subdirectory commands-for-Appinventor to get the context menu
  4. select "open command window here" and you will get a command window of that subdirectory
  5. enter adb logcat *:E and the logcat will start running and log all errors
  6. start your app to elicit the error
  7. copy the log (see below)
To copy your log, right click, click "select all" and enter to copy the complete log into the clipboard, then open Notepad and paste it using ctrl-v.

Italo

unread,
Jul 31, 2017, 4:00:07 PM7/31/17
to mitappinv...@googlegroups.com
One thing that might help:

First, you need to understand that the file size of an image is not the amount of memory it uses when it's being displayed. The file size is the compressed size, much like a zip or rar file. When viewed, the image needs to be decompressed.

For example, if your image says its file size is 100 kb, and its dimensions are 1024 x 768, 32 bit color, then that image uses over 3 mb of RAM (not 100 kb!) when you show it on the screen. ((1024 * 768 ) * 32) / 8 = 3,145,728 kb (3 mb)
Now, this is a mistake most people make when using arrangements as "virtual screens": They set different image components with their images loaded but hidden, instead of having only one image component and changing the picture according to the user's selection or app events, not knowing that apparently the hidden image components are also using the ram, (yes, even though they are invisible!).

If you are using many image components, try to optimize your app and do what Taifun suggested in point #3 "AVOID REDUNDANCY".


JeremSpy

unread,
Jul 31, 2017, 4:17:10 PM7/31/17
to MIT App Inventor Forum
<spoiler>Does spoiler work? :)
--------- beginning of main
07-31 23:57:47.321  2463  3254 E libcsc  : csc_deinit:: unsupported csc_hw_type
07-31 23:57:47.321  2463  3254 E libcsc  : csc_deinit:: unsupported csc_hw_type
07-31 23:57:47.321  2463  3254 E libcsc  : csc_deinit:: unsupported csc_hw_type
07-31 23:57:47.341  2463  3254 E libcsc  : csc_deinit:: unsupported csc_hw_type
07-31 23:57:47.341  2463  3254 E libcsc  : csc_deinit:: unsupported csc_hw_type
07-31 23:57:47.401   581   581 E SBrowserMainActivity: Invalid result code: -1
07-31 23:57:47.421   581   581 E NFC     : isAndroidBeamAllowed - Begin
07-31 23:57:47.491   581   581 E chromium: [ERROR:layer_tree_host_impl.cc(2247)] Forcing zero-copy tile initialization as worker context is missing
07-31 23:57:51.091   581   581 E NFC     : isAndroidBeamAllowed - Begin
07-31 23:57:51.101   581   581 E BitmapManager: BitmapManager clearMemCache clearing all_bitmaps
07-31 23:57:51.141 10815 10815 E Qmage   : isQIO : stream is not a QIO file
07-31 23:57:51.181 10815 10815 E Qmage   : isQIO : stream is not a QIO file
07-31 23:57:51.181 10815 10815 E Qmage   : isQIO : stream is not a QIO file
07-31 23:57:51.461 31722 31722 E PBSessionCacheImpl: sessionId[139516332952992903] not persisted.
07-31 23:57:52.481 31722 32757 E AudioRecord-JNI: Error -4 during AudioRecord native read
07-31 23:57:52.491  2463  2463 E audio_hw_primary: adev_close_input_stream, set jack_in to null
07-31 23:57:54.001 31722 31722 E PBSessionCacheImpl: sessionId[139516332952992903] not persisted.
07-31 23:57:54.061  2910  2910 E Zygote  : v2
07-31 23:57:54.061  2910  2910 E Zygote  : accessInfo : 0
07-31 23:57:54.251  2910  2929 E ServiceManager: [#CMH#] Failed binding To Service  EnhanceService
07-31 23:57:54.261  2937  2937 E Zygote  : v2
07-31 23:57:54.261  2937  2937 E Zygote  : accessInfo : 0
07-31 23:57:54.561  2957  2957 E Zygote  : v2
07-31 23:57:54.561  2957  2957 E Zygote  : accessInfo : 0
07-31 23:57:54.801 31722 31897 E AudioRecord-JNI: Error -4 during AudioRecord native read
07-31 23:57:54.831  2463  4105 E audio_hw_primary: adev_close_input_stream, set jack_in to null
07-31 23:57:57.101 31722 31722 E PBSessionCacheImpl: sessionId[139516332952992903] not persisted.
07-31 23:57:57.141  3001  3001 E Zygote  : v2
07-31 23:57:57.141  3001  3001 E Zygote  : accessInfo : 0
07-31 23:57:57.161 31722 32757 E AudioRecord-JNI: Error -4 during AudioRecord native read
07-31 23:57:57.571  2463  2463 E audio_hw_primary: adev_close_input_stream, set jack_in to null
07-31 23:57:58.661  2969  4271 E Parcel  : Class not found when unmarshalling: com.android.packageinstaller.InstallFlowAnalytics
07-31 23:57:58.661  2969  4271 E Parcel  : java.lang.ClassNotFoundException: com.android.packageinstaller.InstallFlowAnalytics
07-31 23:57:58.661  2969  4271 E Parcel  :      at java.lang.Class.classForName(Native Method)
07-31 23:57:58.661  2969  4271 E Parcel  :      at java.lang.Class.forName(Class.java:324)
07-31 23:57:58.661  2969  4271 E Parcel  :      at android.os.Parcel.readParcelableCreator(Parcel.java:2405)
07-31 23:57:58.661  2969  4271 E Parcel  :      at android.os.Parcel.readParcelable(Parcel.java:2359)
07-31 23:57:58.661  2969  4271 E Parcel  :      at android.os.Parcel.readValue(Parcel.java:2265)
07-31 23:57:58.661  2969  4271 E Parcel  :      at android.os.Parcel.readArrayMapInternal(Parcel.java:2620)
07-31 23:57:58.661  2969  4271 E Parcel  :      at android.os.BaseBundle.unparcel(BaseBundle.java:221)
07-31 23:57:58.661  2969  4271 E Parcel  :      at android.os.BaseBundle.getString(BaseBundle.java:920)
07-31 23:57:58.661  2969  4271 E Parcel  :      at android.content.Intent.getStringExtra(Intent.java:6228)
07-31 23:57:58.661  2969  4271 E Parcel  :      at com.android.server.am.ActivityStackSupervisor.startActivityLocked(ActivityStackSupervisor.java:2759)
07-31 23:57:58.661  2969  4271 E Parcel  :      at com.android.server.am.ActivityStackSupervisor.startActivityMayWait(ActivityStackSupervisor.java:2223)
07-31 23:57:58.661  2969  4271 E Parcel  :      at com.android.server.am.ActivityManagerService.startActivityAsUser(ActivityManagerService.java:6662)
07-31 23:57:58.661  2969  4271 E Parcel  :      at com.android.server.am.ActivityManagerService.startActivity(ActivityManagerService.java:6395)
07-31 23:57:58.661  2969  4271 E Parcel  :      at android.app.ActivityManagerNative.onTransact(ActivityManagerNative.java:174)
07-31 23:57:58.661  2969  4271 E Parcel  :      at com.android.server.am.ActivityManagerService.onTransact(ActivityManagerService.java:4205)
07-31 23:57:58.661  2969  4271 E Parcel  :      at android.os.Binder.execTransact(Binder.java:453)
07-31 23:57:58.661  2969  4271 E Parcel  : Caused by: java.lang.ClassNotFoundException: com.android.packageinstaller.InstallFlowAnalytics
07-31 23:57:58.661  2969  4271 E Parcel  :      at java.lang.Class.classForName(Native Method)
07-31 23:57:58.661  2969  4271 E Parcel  :      at java.lang.BootClassLoader.findClass(ClassLoader.java:781)
07-31 23:57:58.661  2969  4271 E Parcel  :      at java.lang.BootClassLoader.loadClass(ClassLoader.java:841)
07-31 23:57:58.661  2969  4271 E Parcel  :      at java.lang.ClassLoader.loadClass(ClassLoader.java:469)
07-31 23:57:58.661  2969  4271 E Parcel  :      ... 16 more
07-31 23:57:58.661  2969  4271 E Parcel  : Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack trace available
07-31 23:57:58.711  2969  2980 E PackageManager: Failed to generatePackageInfoFromSettingsLPw, There isn't package setting object for
07-31 23:57:58.751  3044  3044 E Zygote  : v2
07-31 23:57:58.751  3044  3044 E Zygote  : accessInfo : 0
07-31 23:57:58.851  3044  3055 E NativeLibraryHelper: Failed to load assets verifier: 0
07-31 23:57:58.851  3044  3054 E NativeLibraryHelper: Failed to load assets verifier: 0
07-31 23:57:59.431  3882 21777 E libEGL  : ------------------------------------------------
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI Context(-1405242624) Damaged Report-Shader
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI   Shaders(5):
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 0) Handle(10)
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 1) Handle(17)
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 2) DAMAGED Handle(22)
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 3) Handle(24)
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 4) Handle(26)
07-31 23:57:59.431  3882 21777 E libEGL  : ------------------------------------------------
07-31 23:57:59.431  3882 21777 E libGLESv2: HWUI Protection: wrong calling from app context F:ES2-glDeleteShader, handle(22)
07-31 23:57:59.431  3882 21777 E libEGL  : ------------------------------------------------
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI Context(-1405242624) Damaged Report-Shader
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI   Shaders(5):
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 0) Handle(10)
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 1) Handle(17)
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 2) Handle(22)
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 3) Handle(24)
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 4) DAMAGED Handle(26)
07-31 23:57:59.431  3882 21777 E libEGL  : ------------------------------------------------
07-31 23:57:59.431  3882 21777 E libGLESv2: HWUI Protection: wrong calling from app context F:ES2-glDeleteShader, handle(26)
07-31 23:57:59.431  3882 21777 E libEGL  : ------------------------------------------------
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI Context(-1405242624) Damaged Report-Shader
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI   Shaders(5):
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 0) Handle(10)
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 1) DAMAGED Handle(17)
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 2) Handle(22)
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 3) Handle(24)
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 4) Handle(26)
07-31 23:57:59.431  3882 21777 E libEGL  : ------------------------------------------------
07-31 23:57:59.431  3882 21777 E libGLESv2: HWUI Protection: wrong calling from app context F:ES2-glDeleteShader, handle(17)
07-31 23:57:59.431  3882 21777 E libEGL  : ------------------------------------------------
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI Context(-1405242624) Damaged Report-Shader
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI   Shaders(5):
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 0) DAMAGED Handle(10)
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 1) Handle(17)
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 2) Handle(22)
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 3) Handle(24)
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 4) Handle(26)
07-31 23:57:59.431  3882 21777 E libEGL  : ------------------------------------------------
07-31 23:57:59.431  3882 21777 E libGLESv2: HWUI Protection: wrong calling from app context F:ES2-glDeleteShader, handle(10)
07-31 23:57:59.431  3882 21777 E libEGL  : ------------------------------------------------
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI Context(-1405242624) Damaged Report-Shader
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI   Shaders(5):
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 0) Handle(10)
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 1) Handle(17)
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 2) Handle(22)
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 3) DAMAGED Handle(24)
07-31 23:57:59.431  3882 21777 E libEGL  : HWUI     Unit 4) Handle(26)
07-31 23:57:59.431  3882 21777 E libEGL  : ------------------------------------------------
07-31 23:57:59.431  3882 21777 E libGLESv2: HWUI Protection: wrong calling from app context F:ES2-glDeleteShader, handle(24)
07-31 23:58:00.811  3069  3069 E Zygote  : v2
07-31 23:58:00.811  3069  3069 E Zygote  : accessInfo : 0
07-31 23:58:00.971  2969  3120 E NativeLibraryHelper: Failed to load assets verifier: 0
07-31 23:58:01.051  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 2ms lastUpdatedAfter : 60105 ms mFlush_time_threasold : 2000 mCurrentSize : 303
07-31 23:58:01.071  2969  3120 E NativeLibraryHelper: Failed to load assets verifier: 0
07-31 23:58:01.081  2466  2466 E installd: Couldn't opendir /data/app/vmdl323389882.tmp/oat/arm64: No such file or directory
07-31 23:58:04.431  2969  3120 E SecureStorageService: Process failed status=0x0200
07-31 23:58:04.571  3096  3096 E Zygote  : v2
07-31 23:58:04.581  3096  3096 E Zygote  : accessInfo : 0
07-31 23:58:04.691  2048  2048 E AASAservice-TokenRule: parseToken() : TokenFile is null
07-31 23:58:04.701  2048  2048 E AASAservice-UpdateReceiver: AASAUpdateReceiver : myrule is null.
07-31 23:58:04.841  3115  3115 E Zygote  : v2
07-31 23:58:04.841  3115  3115 E Zygote  : accessInfo : 0
07-31 23:58:04.881  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 2ms lastUpdatedAfter : 3825 ms mFlush_time_threasold : 2000 mCurrentSize : 227
07-31 23:58:04.881  2969  2969 E SDAgentPackageStateReceiver: Not going to handle 'appinventor.ai_j777fontaine.MonEntretien'!
07-31 23:58:05.021  3135  3135 E Zygote  : v2
07-31 23:58:05.031  3135  3135 E Zygote  : accessInfo : 0
07-31 23:58:05.071  3153  3153 E Zygote  : v2
07-31 23:58:05.071  3153  3153 E Zygote  : accessInfo : 0
07-31 23:58:05.091  3096  3111 E linker  : "/system/bin/app_process32": ignoring 2-entry DT_PREINIT_ARRAY in shared library!
07-31 23:58:05.141 10815 10815 E Launcher.Model: onPackageAdded :appinventor.ai_j777fontaine.MonEntretien
07-31 23:58:05.151  3167  3167 E Zygote  : v2
07-31 23:58:05.151  3167  3167 E Zygote  : accessInfo : 0
07-31 23:58:05.401  3207  3207 E Zygote  : v2
07-31 23:58:05.401  3207  3207 E Zygote  : accessInfo : 0
07-31 23:58:05.491  3234  3234 E Zygote  : v2
07-31 23:58:05.501  3234  3234 E Zygote  : accessInfo : 0
07-31 23:58:05.591  3265  3265 E Zygote  : v2
07-31 23:58:05.591  3265  3265 E Zygote  : accessInfo : 0
07-31 23:58:05.731  3331  3331 E Zygote  : v2
07-31 23:58:05.731  3331  3331 E Zygote  : accessInfo : 0
07-31 23:58:05.761  3345  3345 E Zygote  : v2
07-31 23:58:05.761  3345  3345 E Zygote  : accessInfo : 0
07-31 23:58:05.841  3265  3343 E [SC]SCLOUD_ERR-CommonUtil: getCertificateSHA1Fingerprint err :com.samsung.android.scloud.backupsamplecode
07-31 23:58:05.851  3265  3343 E [SC]SCLOUD_ERR-ModelManager: loadExternalModelsFromPkg pkg:com.samsung.android.scloud.backupsamplecode   ex:COM.SAMSUNG.ANDROID.SCLOUD.BACKUPSAMPLECODE
07-31 23:58:06.341  3387  3387 E Zygote  : v2
07-31 23:58:06.341  3387  3387 E Zygote  : accessInfo : 0
07-31 23:58:06.511  3400  3400 E Zygote  : v2
07-31 23:58:06.511  3400  3400 E Zygote  : accessInfo : 0
07-31 23:58:06.581  3459  3459 E Zygote  : v2
07-31 23:58:06.581  3459  3459 E Zygote  : accessInfo : 0
07-31 23:58:06.741  3483  3483 E Zygote  : v2
07-31 23:58:06.751  3483  3483 E Zygote  : accessInfo : 0
07-31 23:58:06.821  3505  3505 E Zygote  : v2
07-31 23:58:06.821  3505  3505 E Zygote  : accessInfo : 0
07-31 23:58:06.951  3521  3521 E Zygote  : v2
07-31 23:58:06.951  3521  3521 E Zygote  : accessInfo : 0
07-31 23:58:07.271  2598  2598 E Finsky  : [1] com.google.android.finsky.wear.bl.a(3): onConnectionFailed: ConnectionResult{statusCode=API_UNAVAILABLE, resolution=null, message=null}
07-31 23:58:07.271  3551  3551 E Zygote  : v2
07-31 23:58:07.271  3551  3551 E Zygote  : accessInfo : 0
07-31 23:58:07.361  2969  4198 E PackageManager: Failed to generatePackageInfoFromSettingsLPw, There isn't package setting object for
07-31 23:58:07.361  2969  4031 E PackageManager: Failed to generatePackageInfoFromSettingsLPw, There isn't package setting object for
07-31 23:58:07.531  3576  3576 E Zygote  : v2
07-31 23:58:07.531  3576  3576 E Zygote  : isSdpEnabledProcess - SDP enabled
07-31 23:58:07.531  3576  3576 E Zygote  : accessInfo : 64
07-31 23:58:07.531  3576  3576 E Zygote  : isSdpEnabledProcess - SDP enabled
07-31 23:58:07.531  3576  3576 E Zygote  : setSDPgroupsIntarray[pid]: 0 / [gid]: 10126 / [uid]: 10126
07-31 23:58:07.601  3576  3576 E ReflectField: Incorrect type : Fallback exception
07-31 23:58:07.601  3576  3576 E ReflectMethod: Cannot load method: getBoolean [class java.lang.String]
07-31 23:58:07.601  3576  3576 E ReflectMethod: Cannot load method: getBoolean [class java.lang.String, boolean]
07-31 23:58:07.611  3576  3576 E ReflectMethod: Cannot load method: getBoolean [class java.lang.String]
07-31 23:58:07.681  3591  3591 E Zygote  : v2
07-31 23:58:07.681  3591  3591 E Zygote  : accessInfo : 0
07-31 23:58:07.741  2969  2979 E PackageManager: Failed to generatePackageInfoFromSettingsLPw, There isn't package setting object for
07-31 23:58:07.741  2969  4197 E PackageManager: Failed to generatePackageInfoFromSettingsLPw, There isn't package setting object for
07-31 23:58:07.841  3611  3611 E Zygote  : v2
07-31 23:58:07.841  3611  3611 E Zygote  : accessInfo : 0
07-31 23:58:08.091  3611  3629 E linker  : "/system/bin/app_process32": ignoring 2-entry DT_PREINIT_ARRAY in shared library!
07-31 23:58:08.551  3684  3684 E Zygote  : v2
07-31 23:58:08.551  3684  3684 E Zygote  : accessInfo : 0
07-31 23:58:08.661  3703  3703 E Zygote  : v2
07-31 23:58:08.661  3703  3703 E Zygote  : accessInfo : 0
07-31 23:58:08.771  3731  3731 E Zygote  : v2
07-31 23:58:08.771  3731  3731 E Zygote  : accessInfo : 0
07-31 23:58:08.861  2969  2980 E PackageManager: Failed to generatePackageInfoFromSettingsLPw, There isn't package setting object for
07-31 23:58:08.861  2969  3762 E PackageManager: Failed to generatePackageInfoFromSettingsLPw, There isn't package setting object for
07-31 23:58:08.861  3760  3760 E Zygote  : v2
07-31 23:58:08.861  3760  3760 E Zygote  : accessInfo : 0
07-31 23:58:08.891  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 4ms lastUpdatedAfter : 4013 ms mFlush_time_threasold : 2000 mCurrentSize : 229
07-31 23:58:08.911  3684  3684 E HealthDataStore: disconnectService: Context instance is invalid
07-31 23:58:08.971  3703  3703 E HealthDataStore: disconnectService: Context instance is invalid
07-31 23:58:09.071 21186 21207 E Publisher: ProcessDatabaseInternal start
07-31 23:58:09.091 21186 21207 E Publisher: ProcessDatabaseInternal start
07-31 23:58:09.151  3684  3684 E HealthDataStore: disconnectService: Context instance is invalid
07-31 23:58:10.281  3096  3859 E GooglePlayServicesUtil: The Google Play services resources were not found. Check your project configuration to ensure that the resources are included.
07-31 23:58:13.251  3938  3938 E Zygote  : v2
07-31 23:58:13.251  3938  3938 E Zygote  : accessInfo : 0
07-31 23:58:16.051  3521  3981 E AndroidRuntime: FATAL EXCEPTION: Thread-6671
07-31 23:58:16.051  3521  3981 E AndroidRuntime: Process: appinventor.ai_j777fontaine.MonEntretien, PID: 3521
07-31 23:58:16.051  3521  3981 E AndroidRuntime: java.lang.OutOfMemoryError: Failed to allocate a 9972732 byte allocation with 8991200 free bytes and 8MB until OOM
07-31 23:58:16.051  3521  3981 E AndroidRuntime:        at dalvik.system.VMRuntime.newNonMovableArray(Native Method)
07-31 23:58:16.051  3521  3981 E AndroidRuntime:        at android.graphics.Bitmap.nativeCreate(Native Method)
07-31 23:58:16.051  3521  3981 E AndroidRuntime:        at android.graphics.Bitmap.createBitmap(Bitmap.java:975)
07-31 23:58:16.051  3521  3981 E AndroidRuntime:        at android.graphics.Bitmap.createBitmap(Bitmap.java:946)
07-31 23:58:16.051  3521  3981 E AndroidRuntime:        at android.graphics.Bitmap.createBitmap(Bitmap.java:877)
07-31 23:58:16.051  3521  3981 E AndroidRuntime:        at android.graphics.Bitmap.createScaledBitmap(Bitmap.java:753)
07-31 23:58:16.051  3521  3981 E AndroidRuntime:        at com.google.appinventor.components.runtime.util.MediaUtil$2.run(MediaUtil.java:476)
07-31 23:58:16.051  3521  3981 E AndroidRuntime:        at java.lang.Thread.run(Thread.java:818)
07-31 23:58:16.101  3983  3983 E Zygote  : v2
07-31 23:58:16.101  3983  3983 E Zygote  : accessInfo : 0
07-31 23:58:16.111  2969  3993 E android.os.Debug: ro.product_ship = true
07-31 23:58:16.111  2969  3993 E android.os.Debug: ro.debug_level = 0x4f4c
07-31 23:58:16.111  2969  3993 E android.os.Debug: sys.mobilecare.preload = false
07-31 23:58:17.321  4002  4002 E Zygote  : v2
07-31 23:58:17.321  4002  4002 E Zygote  : accessInfo : 0
07-31 23:58:19.701  3096  3252 E SingleFileAttributeStore.cpp: Could not read data from the disk
07-31 23:58:32.871 31722  4039 E GeofenceHelper: Failed: remove geofences by PendingIntent
07-31 23:59:01.161  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 5ms lastUpdatedAfter : 52275 ms mFlush_time_threasold : 2000 mCurrentSize : 303
07-31 23:59:09.091 21186 21212 E SQLiteCastStore: End saving paired guest mode devices
07-31 23:59:15.941  4054  4054 E Zygote  : v2
07-31 23:59:15.941  4054  4054 E Zygote  : accessInfo : 0
07-31 23:59:16.021  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.021  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.021  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.021  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.021  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.031  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.031  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.031  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.031  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.031  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.041  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.041  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.041  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.051  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.051  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.051  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.051  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.061  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.071  4074  4074 E Zygote  : v2
07-31 23:59:16.071  4074  4074 E Zygote  : accessInfo : 0
07-31 23:59:16.081  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.081  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.091  2463  4105 E MediaPlayerService: WFD client is not created
07-31 23:59:16.091  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.091  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.091  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.101  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.101  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.101  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.111  2463  4089 E OMXNodeInstance: setConfig(7d:google.vorbis.decoder, ConfigPriority(0x6f800002)) ERROR: Undefined(0x80001001)
07-31 23:59:16.111  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.111  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.121  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.131  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.141  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.141  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.151  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.151  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.151  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.161  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.161  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.161  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.171  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.171  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.171  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.181  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.181  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.181  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.191  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.191  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.191  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.201  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.201  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.211  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.211  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.211  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.221  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.221  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.221  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.231  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.231  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.231  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.241  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.241  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.241  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.251  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.251  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.261  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.261  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.261  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.271  4097  4097 E Zygote  : v2
07-31 23:59:16.271  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.271  4097  4097 E Zygote  : accessInfo : 0
07-31 23:59:16.271  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.281  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.281  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.281  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.291  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.291  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.291  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.301  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.301  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.301  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.311  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.311  3697  3697 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:16.371  4121  4121 E Zygote  : v2
07-31 23:59:16.371  4121  4121 E Zygote  : accessInfo : 0
07-31 23:59:16.451  4142  4142 E Zygote  : v2
07-31 23:59:16.461  4142  4142 E Zygote  : accessInfo : 0
07-31 23:59:16.521 19037 31967 E NetworkScheduler.SR: Invalid parameter app
07-31 23:59:16.521 19037 31967 E NetworkScheduler.SR: Invalid package name : Perhaps you didn't include a PendingIntent in the extras?
07-31 23:59:16.551  4157  4157 E Zygote  : v2
07-31 23:59:16.551  4157  4157 E Zygote  : accessInfo : 0
07-31 23:59:16.591  4174  4174 E Zygote  : v2
07-31 23:59:16.591  4174  4174 E Zygote  : accessInfo : 0
07-31 23:59:16.651  4174  4174 E MTPRx   : In MtpReceiverandroid.hardware.usb.action.USB_STATE
07-31 23:59:16.661  4174  4174 E MTPRx   : check value of boot_completed is1
07-31 23:59:16.671  4174  4174 E MTPRx   : Sd-Card path/storage/7B0B-13FC
07-31 23:59:16.671  4174  4174 E MTPRx   : Status for mount/Unmount :mounted
07-31 23:59:16.671  4174  4174 E MTPRx   : SDcard is  available
07-31 23:59:16.671  4174  4174 E MTPRx   : check booting is completed_sys.boot_completed
07-31 23:59:16.671  4174  4174 E MTPRx   : Sd-Card path/storage/7B0B-13FC
07-31 23:59:16.671  4174  4174 E MTPRx   : Status for mount/Unmount :mounted
07-31 23:59:16.671  4174  4174 E MTPRx   : SDcard is  available
07-31 23:59:16.681  4174  4174 E MTPRx   : Received USB_STATE with sdCardLaunch = 0
07-31 23:59:16.681  4174  4174 E MTPRx   : configured is false
07-31 23:59:16.691  4187  4187 E Zygote  : v2
07-31 23:59:16.691  4187  4187 E Zygote  : accessInfo : 0
07-31 23:59:16.811  4174  4174 E MTPRx   : In MtpReceiverandroid.hardware.usb.action.USB_STATE
07-31 23:59:16.811  4174  4174 E MTPRx   : check value of boot_completed is1
07-31 23:59:16.811  4174  4174 E MTPRx   : check booting is completed_sys.boot_completed
07-31 23:59:16.811  4174  4174 E MTPRx   : Sd-Card path/storage/7B0B-13FC
07-31 23:59:16.811  4174  4174 E MTPRx   : Status for mount/Unmount :mounted
07-31 23:59:16.811  4174  4174 E MTPRx   : SDcard is  available
07-31 23:59:16.811  4174  4174 E MTPRx   : Received USB_STATE with sdCardLaunch = 0
07-31 23:59:16.811  4174  4174 E MTPRx   : mFirstTime: false
07-31 23:59:16.831  4174  4174 E MTPJNIInterface: Getting CryptionKey from JAVA
07-31 23:59:16.831  4174  4174 E MTPRx   : currentUserId is 0
07-31 23:59:16.831  4174  4174 E MTPRx   : mtpCurrentGlobalUserId is 0
07-31 23:59:16.841  4174  4174 E MTPRx   : Start observing USB_STATE_MATCH
07-31 23:59:16.841  4174  4174 E MTPRx   : usbMode is 0200
07-31 23:59:16.841  4174  4174 E MTPRx   : This is not guid
07-31 23:59:16.851  2969  3756 E ENGMODE : Failed to enable UD-Mode(lecagy)
07-31 23:59:16.851  2969  3756 E ENGMODE : Failed to parse stored token(-6)
07-31 23:59:16.851  2969  3756 E ENGMODE : the req mode is not allowed (-6)
07-31 23:59:16.851  4174  4174 E MTPJNIInterface: noti = 12
07-31 23:59:16.861  4174  4174 E MTPRx   : is_Privatemode is NOT 1
07-31 23:59:16.881  4174  4174 E MTPRx   : Sending NORMAL_BOOT to stack
07-31 23:59:16.881  4174  4174 E MTPJNIInterface: noti = 17
07-31 23:59:16.891  4174  4174 E MTPRx   : User is personal
07-31 23:59:16.891  4174  4174 E MTPRx   : sending MTP_ICON_ENABLED to stack
07-31 23:59:16.891  4174  4174 E MTPRx   : else part ... so first time!!!
07-31 23:59:16.891  4174  4174 E MTPPlaObsrvr: inside setContext()
07-31 23:59:16.891  4174  4174 E MTPPlaObsrvr: Inside registerContentObserver
07-31 23:59:16.891  4174  4211 E MTPPlaObsrvr:  inside createplafiles
07-31 23:59:16.901  4174  4174 E MtpAdbObserver: inside setContext()
07-31 23:59:16.901  4174  4174 E MtpAdbObserver: Inside registerContentObserver
07-31 23:59:16.901  4174  4174 E MtpService: onCreate.
07-31 23:59:16.901  4174  4174 E MtpService: < MTP > Registering BroadCast receiver :::::
07-31 23:59:16.911  4214  4214 E Zygote  : v2
07-31 23:59:16.911  4214  4214 E Zygote  : accessInfo : 0
07-31 23:59:16.911  4174  4174 E MtpService: Calling registerBroadCastuserPresentRec()
07-31 23:59:16.911  4174  4174 E MtpService: < MTP > Registering BroadCast receiver for USER Present:::::
07-31 23:59:16.921  4174  4174 E MtpService: < MTP > Registering BroadCast registerBroadCastPolicyRec :::::
07-31 23:59:16.921  4174  4211 E MTPPlaObsrvr: playlist count is0
07-31 23:59:16.921  4174  4211 E MTPPlaObsrvr:  inside try branch createplafiles
07-31 23:59:16.921  4174  4211 E MTPPlaObsrvr:  inside deleteing plas createplafiles
07-31 23:59:16.921  4174  4174 E MtpService: < MTP > Registering BroadCast registerBroadCastEmergencyRec :::::
07-31 23:59:16.921  4174  4174 E MtpService: onStartCommand.
07-31 23:59:16.921  4174  4174 E MTPJNIInterface: < MTP > Registering BroadCast receiver :::::
07-31 23:59:16.921  4174  4213 E MtpService: handleMessage. msg= { when=0 what=0 arg1=1 obj=Intent { cmp=com.samsung.android.MtpApplication/.MtpService VirtualScreenParam=Params{mDisplayId=-1, null, mFlags=0x00000000)} } target=com.samsung.android.MtpApplication.MtpService$ServiceHandler }
07-31 23:59:16.921  4174  4174 E MTPJNIInterface: < MTP > Registering BroadCast receiver :::::::
07-31 23:59:16.931  4174  4174 E MTPJNIInterface: noti = 10
07-31 23:59:16.931  4174  4174 E MtpService: onStartCommand.
07-31 23:59:16.931  4174  4174 E MTPRx   : Checking the driver time out
07-31 23:59:16.931  4174  4174 E MTPJNIInterface: noti = 2
07-31 23:59:16.931  4174  4174 E MTPRx   : called native method
07-31 23:59:16.931  4174  4174 E MTPJNIInterface: setting Media scanner status0
07-31 23:59:16.931  4174  4174 E MTPJNIInterface: After setting Media scanner status0
07-31 23:59:16.931  4174  4226 E         : Unable to get Object Class and clearing cls 2 [int check_media_scanner_status() 594]
07-31 23:59:16.931  4174  4226 E MTPJNIInterface: Getting media scanner status0
07-31 23:59:16.931  4174  4226 E MTPJNIInterface: DeviceName is Null in System
07-31 23:59:16.931  4174  4226 E MTPJNIInterface: DeviceName is Galaxy A5 (2017)
07-31 23:59:16.931  4174  4226 E         : memcpy failed [memCpy 111]
07-31 23:59:16.931  4174  4213 E MtpService: handleMessage. msg= { when=-6ms what=0 arg1=2 obj=Intent { cmp=com.samsung.android.MtpApplication/.MtpService VirtualScreenParam=Params{mDisplayId=-1, null, mFlags=0x00000000)} } target=com.samsung.android.MtpApplication.MtpService$ServiceHandler }
07-31 23:59:16.951  4174  4226 E MTPJNIInterface: Status for mount/Unmount :mounted
07-31 23:59:16.951  4174  4226 E MTPJNIInterface: SDcard is  available
07-31 23:59:16.951  4174  4226 E         : lstat failed! errno [13] [Permission denied] [mtp_ifind_next 452]
07-31 23:59:16.951  4174  4226 E MTPJNIInterface: Status for mount/Unmount :unknown
07-31 23:59:16.951  4174  4226 E MTPJNIInterface: SDcard is not available
07-31 23:59:16.961  4174  4226 E MTPJNIInterface: Status for mount/Unmount :unknown
07-31 23:59:16.961  4174  4226 E MTPJNIInterface: SDcard is not available
07-31 23:59:16.961  4174  4226 E MTPJNIInterface: Status for mount/Unmount :unknown
07-31 23:59:16.961  4174  4226 E MTPJNIInterface: SDcard is not available
07-31 23:59:16.961  4450  4450 E MtpServerJNI: could not open MTP driver, errno: 2
07-31 23:59:16.961  4174  4226 E MTPJNIInterface: Status for mount/Unmount :mounted
07-31 23:59:16.961  4174  4226 E MTPJNIInterface: SDcard is  available
07-31 23:59:16.961  4174  4226 E SQLiteLog: (21) API call with NULL database connection pointer
07-31 23:59:16.961  4174  4226 E SQLiteLog: (21) misuse at line 107973 of [2ef4f3a5b1]
07-31 23:59:16.961  4174  4226 E SQLiteLog: (21) API call with NULL database connection pointer
07-31 23:59:16.961  4174  4226 E SQLiteLog: (21) misuse at line 103022 of [2ef4f3a5b1]
07-31 23:59:16.961  4174  4226 E SQLiteLog: (21) API call with NULL database connection pointer
07-31 23:59:16.961  4174  4226 E SQLiteLog: (21) misuse at line 103022 of [2ef4f3a5b1]
07-31 23:59:16.961  4174  4226 E SQLiteLog: (21) API call with NULL database connection pointer
07-31 23:59:16.961  4174  4226 E SQLiteLog: (21) misuse at line 107973 of [2ef4f3a5b1]
07-31 23:59:16.961  4174  4228 E         : [mtp_init_device 746]  After open the MTP fd = 25 and line = 746...
07-31 23:59:16.961  4174  4228 E         :  [sua_support_present:1338] returning false
07-31 23:59:16.971  4450  4450 E MtpServerJNI: server is null in add_storage
07-31 23:59:16.971  4450  4450 E MtpServerJNI: server is null in add_storage
07-31 23:59:16.971  4450  4233 E MtpServerJNI: server is null in run
07-31 23:59:16.971  4450  4233 E MtpServerJNI: server is null in cleanup
07-31 23:59:16.971  4450  4450 E MtpServerJNI: server is null in send_object_removed
07-31 23:59:17.161  4237  4237 E Zygote  : v2
07-31 23:59:17.161  4237  4237 E Zygote  : accessInfo : 0
07-31 23:59:17.251  2969  2980 E PackageManager: Failed to generatePackageInfoFromSettingsLPw, There isn't package setting object for
07-31 23:59:17.251  2969  4196 E PackageManager: Failed to generatePackageInfoFromSettingsLPw, There isn't package setting object for
07-31 23:59:17.261  4174  4174 E MTPRx   : Open session has come  remove the  Message false
07-31 23:59:17.271  4174  4174 E MTPRx   : This is not guid
07-31 23:59:17.271  4174  4174 E MTPRx   : Show popup for trust mtp
07-31 23:59:17.281  4174  4229 E SQLiteLog: (1) no such table: system
07-31 23:59:17.281  4174  4229 E SQLiteLog: (1) no such table: global
07-31 23:59:17.281  4174  4229 E MTPJNIInterface: Value of device_name is Galaxy A5 (2017)
07-31 23:59:17.661  2969  3894 E SensorService: getSensorList a sensor (Sensor's Diagnostic Monitor) without holding its required permission: com.samsung.permission.SSENSOR
07-31 23:59:17.811  4174  4174 E MTPUSBConnection: AlertDialog Mode is : TRUSTMTP
07-31 23:59:17.871  4237  4237 F Adjust  : PRODUCTION: Adjust is running in Production mode. Use this setting only for the build that you want to publish. Set the environment to `sandbox` if you want to test your app!
07-31 23:59:18.231  4331  4331 E Zygote  : v2
07-31 23:59:18.231  4331  4331 E Zygote  : accessInfo : 0
07-31 23:59:18.261 21186 21212 E Publisher: ProcessDatabaseInternal start
07-31 23:59:18.301 21186 21212 E Publisher: ProcessDatabaseInternal start
07-31 23:59:18.321 21186 21212 E Publisher: ProcessDatabaseInternal start
07-31 23:59:19.231 21186 21212 E Publisher: ProcessDatabaseInternal start
07-31 23:59:19.901  2969  3016 E ViewRootImpl: sendUserActionEvent() mView == null
07-31 23:59:19.911  2969  3316 E InputDispatcher: channel ~ Channel is unrecoverably broken and will be disposed!
07-31 23:59:19.911  2969  3316 E InputDispatcher: channel ~ Channel is unrecoverably broken and will be disposed!
07-31 23:59:19.931  4359  4359 E Zygote  : v2
07-31 23:59:19.931  4359  4359 E Zygote  : accessInfo : 0
07-31 23:59:20.011  2099  2099 E wpa_supplicant: Cmd 35609 not handled
07-31 23:59:20.021 21186 21212 E Publisher: ProcessDatabaseInternal start
07-31 23:59:20.361  4174  4174 E SystemFW: setCurrentFunction
07-31 23:59:20.361  4174  4174 E SystemFW: java.lang.Exception: who's calling?
07-31 23:59:20.361  4174  4174 E SystemFW:      at android.hardware.usb.UsbManager.setCurrentFunction(UsbManager.java:633)
07-31 23:59:20.361  4174  4174 E SystemFW:      at com.samsung.android.MtpApplication.MtpReceiver.changeMtpMode(MtpReceiver.java:391)
07-31 23:59:20.361  4174  4174 E SystemFW:      at com.samsung.android.MtpApplication.USBConnection$6.onClick(USBConnection.java:299)
07-31 23:59:20.361  4174  4174 E SystemFW:      at com.android.internal.app.AlertController$ButtonHandler.handleMessage(AlertController.java:174)
07-31 23:59:20.361  4174  4174 E SystemFW:      at android.os.Handler.dispatchMessage(Handler.java:102)
07-31 23:59:20.361  4174  4174 E SystemFW:      at android.os.Looper.loop(Looper.java:148)
07-31 23:59:20.361  4174  4174 E SystemFW:      at android.app.ActivityThread.main(ActivityThread.java:7407)
07-31 23:59:20.361  4174  4174 E SystemFW:      at java.lang.reflect.Method.invoke(Native Method)
07-31 23:59:20.361  4174  4174 E SystemFW:      at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1230)
07-31 23:59:20.361  4174  4174 E SystemFW:      at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1120)
07-31 23:59:20.371  4174  4174 E SystemFW: setCurrentFunction
07-31 23:59:20.371  4174  4174 E SystemFW: java.lang.Exception: who's calling?
07-31 23:59:20.371  4174  4174 E SystemFW:      at android.hardware.usb.UsbManager.setCurrentFunction(UsbManager.java:633)
07-31 23:59:20.371  4174  4174 E SystemFW:      at com.samsung.android.MtpApplication.MtpReceiver.changeMtpMode(MtpReceiver.java:395)
07-31 23:59:20.371  4174  4174 E SystemFW:      at com.samsung.android.MtpApplication.USBConnection$6.onClick(USBConnection.java:299)
07-31 23:59:20.371  4174  4174 E SystemFW:      at com.android.internal.app.AlertController$ButtonHandler.handleMessage(AlertController.java:174)
07-31 23:59:20.371  4174  4174 E SystemFW:      at android.os.Handler.dispatchMessage(Handler.java:102)
07-31 23:59:20.371  4174  4174 E SystemFW:      at android.os.Looper.loop(Looper.java:148)
07-31 23:59:20.371  4174  4174 E SystemFW:      at android.app.ActivityThread.main(ActivityThread.java:7407)
07-31 23:59:20.371  4174  4174 E SystemFW:      at java.lang.reflect.Method.invoke(Native Method)
07-31 23:59:20.371  4174  4174 E SystemFW:      at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1230)
07-31 23:59:20.371  4174  4174 E SystemFW:      at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1120)
07-31 23:59:20.371  4174  4231 E         : [mtp_simple_sink_thread, 334] !!!!!! read failed errno [5], error [I/O error]
07-31 23:59:20.371  4174  4231 E         : [mtp_simple_sink_thread 381] read error [0] [Success]
07-31 23:59:20.371  2450  2485 E DataRouter: USB Interface is open with 0xa
07-31 23:59:20.401  4174  4174 E MTPRx   : Read Error Came false
07-31 23:59:20.401  4174  4174 E MTPRx   : Read Error Came so calling usbRemoved()
07-31 23:59:20.401  4174  4174 E MTPRx   :  sendbooster is false!
07-31 23:59:20.401  4174  4174 E MTPRx   : In usbRemoved Status bar enabled
07-31 23:59:20.411  4174  4174 E MTPRx   : nousbdriverReset case, so do not send MTP_FILE_SCAN
07-31 23:59:20.441  4174  4174 E ViewRootImpl: sendUserActionEvent() mView == null
07-31 23:59:20.441  4174  4174 E MtpService: onDestroy.
07-31 23:59:20.451  4174  4174 E MtpService: Unregister Mtp disable Receiver
07-31 23:59:20.451  4174  4174 E MtpService: Receiver not registered: com.samsung.android.MtpApplication.MtpService$1@34ca2fa
07-31 23:59:20.451  4174  4174 E MtpService: Unregister mtpEmergencyReceiver
07-31 23:59:20.451  4174  4174 E MtpService: Receiver not registered: com.samsung.android.MtpApplication.MtpService$2@8a5c0ab
07-31 23:59:20.451  4174  4174 E MtpService: unregistering mtpUserPresentReceiver in UnregisterAllIntent
07-31 23:59:20.451  4174  4174 E MtpService: Receiver not registered: com.samsung.android.MtpApplication.MtpService$4@5f97125
07-31 23:59:20.451  4174  4174 E MtpService: unregistering mtpMediaReceiver in UnregisterAllIntent
07-31 23:59:20.451  4174  4174 E MtpService: Receiver not registered: com.samsung.android.MtpApplication.MtpService$3@c7b411c
07-31 23:59:20.451  4174  4174 E MTPJNIInterface: noti = 3
07-31 23:59:20.451  4174  4174 E         : ****** [mtp_usb_mtp_finalize 1282] mtp_close_fd Calling
07-31 23:59:20.451  4174  4174 E         : [mtp_close_fd 140]  fd = 25...
07-31 23:59:20.451  4174  4174 E         : [mtp_close_fd 145] USB endpoint [25] closed...
07-31 23:59:20.451  4174  4174 E         : ****** [mtp_usb_mtp_finalize 1285] Updating the gInitializeFlag Flag to FALSE
07-31 23:59:20.451  4174  4174 E         : ****** [mtp_usb_mtp_finalize 1288] Calling mtp_stop_io
07-31 23:59:20.481  2969  3316 E InputDispatcher: channel ~ Channel is unrecoverably broken and will be disposed!
07-31 23:59:20.621  4376  4376 E Zygote  : v2
07-31 23:59:20.631  4376  4376 E Zygote  : accessInfo : 0
07-31 23:59:20.691  4376  4376 E MTPRx   : In MtpReceiverandroid.hardware.usb.action.USB_STATE
07-31 23:59:20.701  4376  4376 E MTPRx   : check value of boot_completed is1
07-31 23:59:20.711  4376  4376 E MTPRx   : Sd-Card path/storage/7B0B-13FC
07-31 23:59:20.711  4376  4376 E MTPRx   : Status for mount/Unmount :mounted
07-31 23:59:20.711  4376  4376 E MTPRx   : SDcard is  available
07-31 23:59:20.711  4376  4376 E MTPRx   : check booting is completed_sys.boot_completed
07-31 23:59:20.711  4376  4376 E MTPRx   : Sd-Card path/storage/7B0B-13FC
07-31 23:59:20.711  4376  4376 E MTPRx   : Status for mount/Unmount :mounted
07-31 23:59:20.711  4376  4376 E MTPRx   : SDcard is  available
07-31 23:59:20.711  4376  4376 E MTPRx   : Received USB_STATE with sdCardLaunch = 0
07-31 23:59:20.711  4376  4376 E MTPRx   : configured is false
07-31 23:59:21.001  4376  4376 E MTPRx   : In MtpReceiverandroid.hardware.usb.action.USB_STATE
07-31 23:59:21.001  4376  4376 E MTPRx   : check value of boot_completed is1
07-31 23:59:21.001  4376  4376 E MTPRx   : check booting is completed_sys.boot_completed
07-31 23:59:21.001  4376  4376 E MTPRx   : Sd-Card path/storage/7B0B-13FC
07-31 23:59:21.001  4376  4376 E MTPRx   : Status for mount/Unmount :mounted
07-31 23:59:21.001  4376  4376 E MTPRx   : SDcard is  available
07-31 23:59:21.001  4376  4376 E MTPRx   : Received USB_STATE with sdCardLaunch = 0
07-31 23:59:21.001  4376  4376 E MTPRx   : mFirstTime: false
07-31 23:59:21.011  4376  4376 E MTPJNIInterface: Getting CryptionKey from JAVA
07-31 23:59:21.011  4376  4376 E MTPRx   : currentUserId is 0
07-31 23:59:21.011  4376  4376 E MTPRx   : mtpCurrentGlobalUserId is 0
07-31 23:59:21.021  4376  4376 E MTPRx   : Start observing USB_STATE_MATCH
07-31 23:59:21.021  4376  4376 E MTPRx   : usbMode is 0200
07-31 23:59:21.021  4376  4376 E MTPRx   : This is not guid
07-31 23:59:21.021  2969  4031 E ENGMODE : Failed to enable UD-Mode(lecagy)
07-31 23:59:21.031  2969  4031 E ENGMODE : Failed to parse stored token(-6)
07-31 23:59:21.031  2969  4031 E ENGMODE : the req mode is not allowed (-6)
07-31 23:59:21.031  4376  4376 E MTPRx   : skip to display MTP popup.
07-31 23:59:21.031  4376  4376 E MTPRx   : is_Privatemode is NOT 1
07-31 23:59:21.041  4376  4376 E MTPRx   : Sending NORMAL_BOOT to stack
07-31 23:59:21.041  4376  4376 E MTPJNIInterface: noti = 17
07-31 23:59:21.051  4376  4376 E MTPRx   : User is personal
07-31 23:59:21.051  4376  4376 E MTPRx   : sending MTP_ICON_ENABLED to stack
07-31 23:59:21.051  4376  4376 E MTPRx   : else part ... so first time!!!
07-31 23:59:21.051  4376  4376 E MTPPlaObsrvr: inside setContext()
07-31 23:59:21.061  4376  4376 E MTPPlaObsrvr: Inside registerContentObserver
07-31 23:59:21.061  4376  4400 E MTPPlaObsrvr:  inside createplafiles
07-31 23:59:21.061  4376  4376 E MtpAdbObserver: inside setContext()
07-31 23:59:21.061  4376  4376 E MtpAdbObserver: Inside registerContentObserver
07-31 23:59:21.061  4376  4400 E MTPPlaObsrvr: playlist count is0
07-31 23:59:21.061  4376  4400 E MTPPlaObsrvr:  inside try branch createplafiles
07-31 23:59:21.061  4376  4400 E MTPPlaObsrvr:  inside deleteing plas createplafiles
07-31 23:59:21.071  4376  4376 E MtpService: onCreate.
07-31 23:59:21.071  4376  4376 E MtpService: < MTP > Registering BroadCast receiver :::::
07-31 23:59:21.071  4376  4376 E MtpService: < MTP > Registering BroadCast registerBroadCastPolicyRec :::::
07-31 23:59:21.071  4376  4376 E MtpService: < MTP > Registering BroadCast registerBroadCastEmergencyRec :::::
07-31 23:59:21.081  4376  4376 E MtpService: onStartCommand.
07-31 23:59:21.081  4376  4376 E MTPJNIInterface: < MTP > Registering BroadCast receiver :::::
07-31 23:59:21.081  4376  4401 E MtpService: handleMessage. msg= { when=-1ms what=0 arg1=1 obj=Intent { cmp=com.samsung.android.MtpApplication/.MtpService VirtualScreenParam=Params{mDisplayId=-1, null, mFlags=0x00000000)} } target=com.samsung.android.MtpApplication.MtpService$ServiceHandler }
07-31 23:59:21.081  4376  4376 E MTPJNIInterface: < MTP > Registering BroadCast receiver :::::::
07-31 23:59:21.091  4376  4376 E MTPJNIInterface: noti = 10
07-31 23:59:21.091  4376  4376 E MtpService: onStartCommand.
07-31 23:59:21.091  4376  4376 E MTPRx   : Checking the driver time out
07-31 23:59:21.091  4376  4376 E MTPJNIInterface: noti = 2
07-31 23:59:21.091  4376  4376 E MTPRx   : called native method
07-31 23:59:21.091  4376  4376 E MTPJNIInterface: setting Media scanner status0
07-31 23:59:21.091  4376  4376 E MTPJNIInterface: After setting Media scanner status0
07-31 23:59:21.091  4376  4403 E         : Unable to get Object Class and clearing cls 2 [int check_media_scanner_status() 594]
07-31 23:59:21.091  4376  4403 E MTPJNIInterface: Getting media scanner status0
07-31 23:59:21.091  4376  4403 E MTPJNIInterface: DeviceName is Null in System
07-31 23:59:21.091  4376  4403 E MTPJNIInterface: DeviceName is Galaxy A5 (2017)
07-31 23:59:21.091  4376  4403 E         : memcpy failed [memCpy 111]
07-31 23:59:21.091  4376  4401 E MtpService: handleMessage. msg= { when=-2ms what=0 arg1=2 obj=Intent { cmp=com.samsung.android.MtpApplication/.MtpService VirtualScreenParam=Params{mDisplayId=-1, null, mFlags=0x00000000)} } target=com.samsung.android.MtpApplication.MtpService$ServiceHandler }
07-31 23:59:21.101  4450  4450 E MtpServerJNI: could not open MTP driver, errno: 2
07-31 23:59:21.101  4376  4403 E MTPJNIInterface: Status for mount/Unmount :mounted
07-31 23:59:21.101  4376  4403 E MTPJNIInterface: SDcard is  available
07-31 23:59:21.101  4450  4450 E MtpServerJNI: server is null in add_storage
07-31 23:59:21.101  4450  4450 E MtpServerJNI: server is null in add_storage
07-31 23:59:21.101  4376  4403 E         : lstat failed! errno [13] [Permission denied] [mtp_ifind_next 452]
07-31 23:59:21.101  4450  4404 E MtpServerJNI: server is null in run
07-31 23:59:21.101  4450  4404 E MtpServerJNI: server is null in cleanup
07-31 23:59:21.101  4450  4450 E MtpServerJNI: server is null in send_object_removed
07-31 23:59:21.111  4376  4403 E MTPJNIInterface: Status for mount/Unmount :unknown
07-31 23:59:21.111  4376  4403 E MTPJNIInterface: SDcard is not available
07-31 23:59:21.111  4376  4403 E MTPJNIInterface: Status for mount/Unmount :unknown
07-31 23:59:21.111  4376  4403 E MTPJNIInterface: SDcard is not available
07-31 23:59:21.111  4376  4403 E MTPJNIInterface: Status for mount/Unmount :unknown
07-31 23:59:21.111  4376  4403 E MTPJNIInterface: SDcard is not available
07-31 23:59:21.111  4376  4403 E MTPJNIInterface: Status for mount/Unmount :mounted
07-31 23:59:21.111  4376  4403 E MTPJNIInterface: SDcard is  available
07-31 23:59:21.111  4376  4403 E SQLiteLog: (21) API call with NULL database connection pointer
07-31 23:59:21.111  4376  4403 E SQLiteLog: (21) misuse at line 107973 of [2ef4f3a5b1]
07-31 23:59:21.111  4376  4403 E SQLiteLog: (21) API call with NULL database connection pointer
07-31 23:59:21.111  4376  4403 E SQLiteLog: (21) misuse at line 103022 of [2ef4f3a5b1]
07-31 23:59:21.111  4376  4403 E SQLiteLog: (21) API call with NULL database connection pointer
07-31 23:59:21.111  4376  4403 E SQLiteLog: (21) misuse at line 103022 of [2ef4f3a5b1]
07-31 23:59:21.111  4376  4403 E SQLiteLog: (21) API call with NULL database connection pointer
07-31 23:59:21.111  4376  4403 E SQLiteLog: (21) misuse at line 107973 of [2ef4f3a5b1]
07-31 23:59:21.121  4376  4405 E         : [mtp_init_device 746]  After open the MTP fd = 25 and line = 746...
07-31 23:59:21.121  4376  4405 E         :  [sua_support_present:1338] returning false
07-31 23:59:21.121  4376  4376 E MTPRx   : Open session has come  remove the  Message false
07-31 23:59:21.121  4376  4376 E MTPRx   : This is not guid
07-31 23:59:21.121  4376  4376 E MTPJNIInterface: noti = 13
07-31 23:59:21.121  4376  4376 E MTPRx   : in startDBupdate
07-31 23:59:21.131  4376  4406 E SQLiteLog: (1) no such table: system
07-31 23:59:21.131  4376  4406 E SQLiteLog: (1) no such table: global
07-31 23:59:21.131  4376  4406 E MTPJNIInterface: Value of device_name is Galaxy A5 (2017)
07-31 23:59:21.161  4376  4410 E MtpMediaDBManager: count : 260
07-31 23:59:21.171  4376  4406 E         : mtp_get_storage_ids_mtp_handle : START !!
07-31 23:59:21.191  4376  4410 E MTPJNIInterface: noti = 29
07-31 23:59:22.751  2969  3316 E InputDispatcher: channel ~ Channel is unrecoverably broken and will be disposed!
07-31 23:59:22.781 10815 10815 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:22.811 10815 10815 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:22.821 10815 10815 E Qmage   : isQIO : stream is not a QIO file
07-31 23:59:22.991 31722 31722 E PBSessionCacheImpl: sessionId[139516332952992903] not persisted.
07-31 23:59:24.521  2463  4105 E audio_hw_primary: adev_close_input_stream, set jack_in to null
07-31 23:59:25.431  4423  4423 E Zygote  : v2
07-31 23:59:25.431  4423  4423 E Zygote  : accessInfo : 0
07-31 23:59:30.921  3882 21777 E libEGL  : ------------------------------------------------
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI Context(-1405242624) Damaged Report-Shader
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI   Shaders(4):
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI     Unit 0) Handle(10)
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI     Unit 1) Handle(12)
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI     Unit 2) DAMAGED Handle(17)
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI     Unit 3) Handle(19)
07-31 23:59:30.921  3882 21777 E libEGL  : ------------------------------------------------
07-31 23:59:30.921  3882 21777 E libGLESv2: HWUI Protection: wrong calling from app context F:ES2-glDeleteShader, handle(17)
07-31 23:59:30.921  3882 21777 E libEGL  : ------------------------------------------------
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI Context(-1405242624) Damaged Report-Shader
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI   Shaders(4):
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI     Unit 0) DAMAGED Handle(10)
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI     Unit 1) Handle(12)
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI     Unit 2) Handle(17)
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI     Unit 3) Handle(19)
07-31 23:59:30.921  3882 21777 E libEGL  : ------------------------------------------------
07-31 23:59:30.921  3882 21777 E libGLESv2: HWUI Protection: wrong calling from app context F:ES2-glDeleteShader, handle(10)
07-31 23:59:30.921  3882 21777 E libEGL  : ------------------------------------------------
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI Context(-1405242624) Damaged Report-Shader
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI   Shaders(4):
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI     Unit 0) Handle(10)
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI     Unit 1) DAMAGED Handle(12)
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI     Unit 2) Handle(17)
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI     Unit 3) Handle(19)
07-31 23:59:30.921  3882 21777 E libEGL  : ------------------------------------------------
07-31 23:59:30.921  3882 21777 E libGLESv2: HWUI Protection: wrong calling from app context F:ES2-glDeleteShader, handle(12)
07-31 23:59:30.921  3882 21777 E libEGL  : ------------------------------------------------
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI Context(-1405242624) Damaged Report-Shader
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI   Shaders(4):
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI     Unit 0) Handle(10)
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI     Unit 1) Handle(12)
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI     Unit 2) Handle(17)
07-31 23:59:30.921  3882 21777 E libEGL  : HWUI     Unit 3) DAMAGED Handle(19)
07-31 23:59:30.921  3882 21777 E libEGL  : ------------------------------------------------
07-31 23:59:30.921  3882 21777 E libGLESv2: HWUI Protection: wrong calling from app context F:ES2-glDeleteShader, handle(19)
07-31 23:59:35.031  4423  4469 E AndroidRuntime: FATAL EXCEPTION: Thread-6737
07-31 23:59:35.031  4423  4469 E AndroidRuntime: Process: appinventor.ai_j777fontaine.MonEntretien, PID: 4423
07-31 23:59:35.031  4423  4469 E AndroidRuntime: java.lang.OutOfMemoryError: Failed to allocate a 19353612 byte allocation with 16376304 free bytes and 15MB until OOM
07-31 23:59:35.031  4423  4469 E AndroidRuntime:        at dalvik.system.VMRuntime.newNonMovableArray(Native Method)
07-31 23:59:35.031  4423  4469 E AndroidRuntime:        at android.graphics.Bitmap.nativeCreate(Native Method)
07-31 23:59:35.031  4423  4469 E AndroidRuntime:        at android.graphics.Bitmap.createBitmap(Bitmap.java:975)
07-31 23:59:35.031  4423  4469 E AndroidRuntime:        at android.graphics.Bitmap.createBitmap(Bitmap.java:946)
07-31 23:59:35.031  4423  4469 E AndroidRuntime:        at android.graphics.Bitmap.createBitmap(Bitmap.java:877)
07-31 23:59:35.031  4423  4469 E AndroidRuntime:        at android.graphics.Bitmap.createScaledBitmap(Bitmap.java:753)
07-31 23:59:35.031  4423  4469 E AndroidRuntime:        at com.google.appinventor.components.runtime.util.MediaUtil$2.run(MediaUtil.java:476)
07-31 23:59:35.031  4423  4469 E AndroidRuntime:        at java.lang.Thread.run(Thread.java:818)
07-31 23:59:35.041  2969  4471 E android.os.Debug: ro.product_ship = true
07-31 23:59:35.041  2969  4471 E android.os.Debug: ro.debug_level = 0x4f4c
07-31 23:59:35.041  2969  4471 E android.os.Debug: sys.mobilecare.preload = false
07-31 23:59:53.041  5501  5502 E WCNSS_FILTER: do_read: read returned 0, err = Success, read bytes: 0, expected: 0
07-31 23:59:53.061  5501  5502 E WCNSS_FILTER: do_read: read returned 0, err = Success, read bytes: 0, expected: 0
07-31 23:59:53.081  5501  5502 E WCNSS_FILTER: do_read: read returned 0, err = Success, read bytes: 0, expected: 0
07-31 23:59:53.091  5501  5502 E WCNSS_FILTER: do_read: read returned 0, err = Success, read bytes: 0, expected: 0
07-31 23:59:53.101  5501  5502 E WCNSS_FILTER: do_read: read returned 0, err = Success, read bytes: 0, expected: 0
07-31 23:59:53.121  5501  5502 E WCNSS_FILTER: do_read: read returned 0, err = Success, read bytes: 0, expected: 0
07-31 23:59:53.131  5501  5502 E WCNSS_FILTER: do_read: read returned 0, err = Success, read bytes: 0, expected: 0
07-31 23:59:53.151  5501  5502 E WCNSS_FILTER: do_read: read returned 0, err = Success, read bytes: 0, expected: 0
07-31 23:59:53.161  5501  5502 E WCNSS_FILTER: do_read: read returned 0, err = Success, read bytes: 0, expected: 0
07-31 23:59:53.171  5501  5502 E WCNSS_FILTER: do_read: read returned 0, err = Success, read bytes: 0, expected: 0
07-31 23:59:53.191  5501  5502 E WCNSS_FILTER: do_read: read returned 0, err = Success, read bytes: 0, expected: 0
07-31 23:59:53.211  5501  5502 E WCNSS_FILTER: do_read: read returned 0, err = Success, read bytes: 0, expected: 0
07-31 23:59:53.221  5501  5502 E WCNSS_FILTER: do_read: read returned 0, err = Success, read bytes: 0, expected: 0
07-31 23:59:53.231  5501  5502 E WCNSS_FILTER: do_read: read returned 0, err = Success, read bytes: 0, expected: 0
07-31 23:59:53.251  5501  5502 E WCNSS_FILTER: do_read: read returned 0, err = Success, read bytes: 0, expected: 0
07-31 23:59:53.261  5501  5502 E WCNSS_FILTER: do_read: read returned 0, err = Success, read bytes: 0, expected: 0
08-01 00:00:00.071  4488  4488 E Zygote  : v2
08-01 00:00:00.081  4488  4488 E Zygote  : accessInfo : 0
08-01 00:00:00.271   451   451 E Qmage   : isQIO : stream is not a QIO file
08-01 00:00:00.271   451   451 E Qmage   : isQIO : stream is not a QIO file
08-01 00:00:00.281   451   451 E Qmage   : isQIO : stream is not a QIO file
08-01 00:00:00.341  4515  4515 E Zygote  : v2
08-01 00:00:00.341  4515  4515 E Zygote  : accessInfo : 0
08-01 00:00:01.201  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 4ms lastUpdatedAfter : 60036 ms mFlush_time_threasold : 2000 mCurrentSize : 303
08-01 00:00:03.561  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 6ms lastUpdatedAfter : 2356 ms mFlush_time_threasold : 2200 mCurrentSize : 206
08-01 00:00:07.971  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 1Kb duration : 4ms lastUpdatedAfter : 4412 ms mFlush_time_threasold : 2000 mCurrentSize : 701
08-01 00:01:01.261  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 4ms lastUpdatedAfter : 53289 ms mFlush_time_threasold : 2000 mCurrentSize : 303
08-01 00:01:04.591  2099  2099 E wpa_supplicant: Cmd 35609 not handled
08-01 00:01:04.621 21186 21212 E Publisher: ProcessDatabaseInternal start
08-01 00:01:07.331  4450  4450 E MtpServerJNI: server is null in send_object_removed
08-01 00:01:36.441  4576  4576 E Zygote  : v2
08-01 00:01:36.451  4576  4576 E Zygote  : accessInfo : 0
08-01 00:01:46.451  4592  4592 E Zygote  : v2
08-01 00:01:46.451  4592  4592 E Zygote  : accessInfo : 0
08-01 00:02:01.331  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 4ms lastUpdatedAfter : 60067 ms mFlush_time_threasold : 2000 mCurrentSize : 303
08-01 00:03:01.441  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 3ms lastUpdatedAfter : 60115 ms mFlush_time_threasold : 2000 mCurrentSize : 303
08-01 00:03:06.651  4376  4406 E MTPJNIInterface: set ready receiving intent from media provider
08-01 00:03:06.661  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:06.711  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:06.711  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:06.721  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:06.721  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:06.721  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:06.721  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:10.731  4376  4376 E MTPRx   : usbMode is 0200
08-01 00:03:10.731  4376  4376 E MTPRx   : MS triggered
08-01 00:03:10.731  4376  4376 E MtpMediaDBManager: updateMyfilesDB Count :0
08-01 00:03:10.741  4376  4376 E MTPRx   : Sending Broadcast finish
08-01 00:03:10.791  4633  4633 E Zygote  : v2
08-01 00:03:10.801  4633  4633 E Zygote  : accessInfo : 0
08-01 00:03:10.971  4646  4646 E Zygote  : v2
08-01 00:03:10.981  4646  4646 E Zygote  : accessInfo : 0
08-01 00:03:11.001  4450  4632 E MtpServerJNI: server is null in send_object_removed
08-01 00:03:11.001  4376  4376 E MTPJNIInterface: In MTPJNIINterface onReceive:com.android.MTP.OBJECT_REMOVED
08-01 00:03:11.001  4376  4376 E MTPJNIInterface: ***** file path of  sendObjectRemoved
08-01 00:03:11.111  4450  4632 E MtpServerJNI: server is null in send_object_added
08-01 00:03:11.111  4376  4376 E MTPJNIInterface: In MTPJNIINterface onReceive:com.android.MTP.OBJECT_ADDED
08-01 00:03:11.111  4376  4376 E MTPJNIInterface: ***** file path of  sendObjectAdded
08-01 00:03:11.181  4646  4669 E ServiceManager: [#CMH#] Failed binding To Service  EnhanceService
08-01 00:03:11.241  4646  4680 E DayAndMonthLocationUpdate: [#CMH#] updateLocationForDay Count : NULL
08-01 00:03:11.251  4685  4685 E Zygote  : v2
08-01 00:03:11.251  4685  4685 E Zygote  : accessInfo : 0
08-01 00:03:11.331  4646  4646 E Controller: [#CMH#] FINISHED  EVENT_MEDIA_SCAN_FINISHED
08-01 00:03:11.331  4376  4376 E MTPJNIInterface: In MTPJNIINterface onReceive:android.intent.action.MEDIA_SCANNER_FINISHED
08-01 00:03:11.331  4376  4376 E MTPJNIInterface: noti = 26
08-01 00:03:11.331  4376  4376 E MTPJNIInterface: storageinfo changed event sent to stack
08-01 00:03:22.221  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:22.221  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:22.221  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:22.221  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:22.231  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:22.231  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:22.231  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.581  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.581  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.581  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.591  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.591  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.601  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.601  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.601  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.611  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.611  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.611  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.621  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.621  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.621  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.631  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.631  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.631  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.641  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.641  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.641  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.641  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.651  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.651  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.651  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.651  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.661  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.661  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.661  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.661  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.671  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.671  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.671  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.671  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.681  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.681  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.681  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.681  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.691  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.691  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.691  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.691  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.701  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.701  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.701  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.701  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.711  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.711  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.711  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.711  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.721  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.721  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.721  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.721  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.731  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.731  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.731  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.731  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.741  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.741  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.761  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.761  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.761  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.781  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.811  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.811  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.811  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.841  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.841  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.841  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.861  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.891  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.891  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.901  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.901  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.901  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.921  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.951  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.951  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.951  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:24.971  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.001  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.001  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.001  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.011  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.011  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.031  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.051  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.051  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.051  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.071  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.111  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.111  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.111  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.121  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.121  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.141  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.151  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.181  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.181  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.191  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.201  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.241  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.241  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.241  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.251  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.251  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.261  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.281  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.301  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.301  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.311  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.331  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.341  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.341  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.361  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.381  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.381  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.381  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.401  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.431  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.431  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.431  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.441  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.441  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.461  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.481  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.501  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.501  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.501  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.531  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.531  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.531  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.551  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.581  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.581  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.581  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.611  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.611  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.611  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.621  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.651  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.651  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.651  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.661  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.661  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.671  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.681  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.701  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.701  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.711  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.711  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.741  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.741  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.741  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.741  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.741  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.751  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.761  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.781  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.781  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.781  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.791  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.811  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.811  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.811  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.821  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.841  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.841  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.841  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.861  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.881  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.881  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.881  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.901  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.921  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.921  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.931  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.951  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.951  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.961  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:25.971  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.001  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.001  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.011  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.011  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.011  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.031  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.041  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.061  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.071  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.071  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.091  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.111  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.111  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.111  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.141  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.141  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.141  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.161  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.191  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.191  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.191  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.201  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.201  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.211  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.231  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.251  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.251  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.251  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.271  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.291  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.291  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.301  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.311  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.331  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.341  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.341  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.351  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.371  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.381  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.381  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:26.391  4376  4376 E MTPRx   : in isSyncFinished posting message with delay of 4sec
08-01 00:03:30.401  4376  4376 E MTPRx   : usbMode is 0200
08-01 00:03:30.401  4376  4376 E MTPRx   : MS triggered
08-01 00:03:30.411  4376  4376 E MtpMediaDBManager: updateMyfilesDB Count :0
08-01 00:03:30.421  4376  4376 E MTPRx   : Sending Broadcast finish
08-01 00:03:30.881  4646  4646 E Controller: [#CMH#] FINISHED  EVENT_MEDIA_SCAN_FINISHED
08-01 00:03:30.881  4376  4376 E MTPJNIInterface: In MTPJNIINterface onReceive:android.intent.action.MEDIA_SCANNER_FINISHED
08-01 00:04:01.481  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 4ms lastUpdatedAfter : 60038 ms mFlush_time_threasold : 2000 mCurrentSize : 303
08-01 00:04:18.371 21186 21212 E SQLiteCastStore: End saving paired guest mode devices
08-01 00:04:25.791  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 2ms lastUpdatedAfter : 24312 ms mFlush_time_threasold : 2000 mCurrentSize : 310
08-01 00:04:26.571 31722  4726 E SQLiteLog: (1) no such table: blob_table
08-01 00:04:29.811  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 1Kb duration : 5ms lastUpdatedAfter : 4022 ms mFlush_time_threasold : 2000 mCurrentSize : 753
08-01 00:04:35.081  2969  3016 E ViewRootImpl: sendUserActionEvent() mView == null
08-01 00:04:35.151  2969  3316 E InputDispatcher: channel ~ Channel is unrecoverably broken and will be disposed!
08-01 00:04:35.151  2969  3316 E InputDispatcher: channel ~ Channel is unrecoverably broken and will be disposed!
08-01 00:04:35.151  2969  3316 E InputDispatcher: channel ~ Channel is unrecoverably broken and will be disposed!
08-01 00:04:35.171  4746  4746 E Zygote  : v2
08-01 00:04:35.171  4746  4746 E Zygote  : accessInfo : 0
08-01 00:04:47.791  4746  4800 E AndroidRuntime: FATAL EXCEPTION: Thread-6779
08-01 00:04:47.791  4746  4800 E AndroidRuntime: Process: appinventor.ai_j777fontaine.MonEntretien, PID: 4746
08-01 00:04:47.791  4746  4800 E AndroidRuntime: java.lang.OutOfMemoryError: Failed to allocate a 9538572 byte allocation with 3861312 free bytes and 3MB until OOM
08-01 00:04:47.791  4746  4800 E AndroidRuntime:        at dalvik.system.VMRuntime.newNonMovableArray(Native Method)
08-01 00:04:47.791  4746  4800 E AndroidRuntime:        at android.graphics.Bitmap.nativeCreate(Native Method)
08-01 00:04:47.791  4746  4800 E AndroidRuntime:        at android.graphics.Bitmap.createBitmap(Bitmap.java:975)
08-01 00:04:47.791  4746  4800 E AndroidRuntime:        at android.graphics.Bitmap.createBitmap(Bitmap.java:946)
08-01 00:04:47.791  4746  4800 E AndroidRuntime:        at android.graphics.Bitmap.createBitmap(Bitmap.java:877)
08-01 00:04:47.791  4746  4800 E AndroidRuntime:        at android.graphics.Bitmap.createScaledBitmap(Bitmap.java:753)
08-01 00:04:47.791  4746  4800 E AndroidRuntime:        at com.google.appinventor.components.runtime.util.MediaUtil$2.run(MediaUtil.java:476)
08-01 00:04:47.791  4746  4800 E AndroidRuntime:        at java.lang.Thread.run(Thread.java:818)
08-01 00:04:47.791  2969  4802 E android.os.Debug: ro.product_ship = true
08-01 00:04:47.791  2969  4802 E android.os.Debug: ro.debug_level = 0x4f4c
08-01 00:04:47.791  2969  4802 E android.os.Debug: sys.mobilecare.preload = false
08-01 00:04:47.821  4805  4805 E Zygote  : v2
08-01 00:04:47.821  4805  4805 E Zygote  : accessInfo : 0
08-01 00:05:01.551  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 5ms lastUpdatedAfter : 31738 ms mFlush_time_threasold : 2000 mCurrentSize : 303
08-01 00:05:30.711  4450  4450 E MtpServerJNI: server is null in send_object_removed
08-01 00:05:31.001  2969  3016 E ViewRootImpl: sendUserActionEvent() mView == null
08-01 00:05:31.051  4840  4840 E Zygote  : v2
08-01 00:05:31.051  4840  4840 E Zygote  : accessInfo : 0
08-01 00:05:33.431 10815 10815 E Qmage   : isQIO : stream is not a QIO file
08-01 00:05:33.461 10815 10815 E Qmage   : isQIO : stream is not a QIO file
08-01 00:05:33.471 10815 10815 E Qmage   : isQIO : stream is not a QIO file
08-01 00:05:33.541 31722 31722 E PBSessionCacheImpl: sessionId[139516332952992903] not persisted.
08-01 00:05:35.001 31722 31897 E AudioRecord-JNI: Error -4 during AudioRecord native read
08-01 00:05:35.031  2463  4105 E audio_hw_primary: adev_close_input_stream, set jack_in to null
08-01 00:05:36.101 31722 31722 E PBSessionCacheImpl: sessionId[139516332952992903] not persisted.
08-01 00:05:41.501  3882 21777 E libEGL  : ------------------------------------------------
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI Context(-1405242624) Damaged Report-Shader
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI   Shaders(5):
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 0) Handle(10)
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 1) Handle(12)
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 2) DAMAGED Handle(14)
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 3) Handle(19)
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 4) Handle(21)
08-01 00:05:41.501  3882 21777 E libEGL  : ------------------------------------------------
08-01 00:05:41.501  3882 21777 E libGLESv2: HWUI Protection: wrong calling from app context F:ES2-glDeleteShader, handle(14)
08-01 00:05:41.501  3882 21777 E libEGL  : ------------------------------------------------
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI Context(-1405242624) Damaged Report-Shader
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI   Shaders(5):
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 0) Handle(10)
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 1) Handle(12)
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 2) Handle(14)
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 3) Handle(19)
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 4) DAMAGED Handle(21)
08-01 00:05:41.501  3882 21777 E libEGL  : ------------------------------------------------
08-01 00:05:41.501  3882 21777 E libGLESv2: HWUI Protection: wrong calling from app context F:ES2-glDeleteShader, handle(21)
08-01 00:05:41.501  3882 21777 E libEGL  : ------------------------------------------------
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI Context(-1405242624) Damaged Report-Shader
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI   Shaders(5):
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 0) DAMAGED Handle(10)
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 1) Handle(12)
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 2) Handle(14)
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 3) Handle(19)
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 4) Handle(21)
08-01 00:05:41.501  3882 21777 E libEGL  : ------------------------------------------------
08-01 00:05:41.501  3882 21777 E libGLESv2: HWUI Protection: wrong calling from app context F:ES2-glDeleteShader, handle(10)
08-01 00:05:41.501  3882 21777 E libEGL  : ------------------------------------------------
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI Context(-1405242624) Damaged Report-Shader
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI   Shaders(5):
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 0) Handle(10)
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 1) DAMAGED Handle(12)
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 2) Handle(14)
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 3) Handle(19)
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 4) Handle(21)
08-01 00:05:41.501  3882 21777 E libEGL  : ------------------------------------------------
08-01 00:05:41.501  3882 21777 E libGLESv2: HWUI Protection: wrong calling from app context F:ES2-glDeleteShader, handle(12)
08-01 00:05:41.501  3882 21777 E libEGL  : ------------------------------------------------
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI Context(-1405242624) Damaged Report-Shader
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI   Shaders(5):
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 0) Handle(10)
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 1) Handle(12)
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 2) Handle(14)
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 3) DAMAGED Handle(19)
08-01 00:05:41.501  3882 21777 E libEGL  : HWUI     Unit 4) Handle(21)
08-01 00:05:41.501  3882 21777 E libEGL  : ------------------------------------------------
08-01 00:05:41.501  3882 21777 E libGLESv2: HWUI Protection: wrong calling from app context F:ES2-glDeleteShader, handle(19)
08-01 00:05:42.871  4376  4408 E         : [mtp_simple_sink_thread, 334] !!!!!! read failed errno [5], error [I/O error]
08-01 00:05:42.871  4376  4398 E MTPRx   : state from USB_STATE event DISCONNECTED
08-01 00:05:42.871  2450  2485 E DataRouter: USB Interface is open with 0xa
08-01 00:05:42.881  4376  4408 E         : [mtp_simple_sink_thread 381] read error [0] [Success]
08-01 00:05:42.881  4376  4398 E MTPRx   : stop observing and calling usbRemoved
08-01 00:05:42.881  4376  4376 E MTPRx   : Read Error Came false
08-01 00:05:42.881  4376  4376 E MTPRx   : Read Error Came so calling usbRemoved()
08-01 00:05:42.881  4376  4398 E MTPRx   :  sendbooster is false!
08-01 00:05:42.881  4376  4398 E MTPRx   : In usbRemoved Status bar enabled
08-01 00:05:42.881  4376  4376 E MTPRx   :  sendbooster is false!
08-01 00:05:42.881  4376  4376 E MTPRx   : In usbRemoved Status bar enabled
08-01 00:05:42.891  4376  4376 E MTPRx   : nousbdriverReset case, so do not send MTP_FILE_SCAN
08-01 00:05:42.921  4376  4398 E MtpMediaDBManager: updateMyfilesDB Count :0
08-01 00:05:42.921  4376  4376 E MtpService: onDestroy.
08-01 00:05:43.461  4885  4885 E Zygote  : v2
08-01 00:05:43.461  4885  4885 E Zygote  : accessInfo : 0
08-01 00:05:43.521  4899  4899 E Zygote  : v2
08-01 00:05:43.521  4899  4899 E Zygote  : accessInfo : 0
08-01 00:05:44.441  4911  4911 E Zygote  : v2
08-01 00:05:44.451  4911  4911 E Zygote  : accessInfo : 0
08-01 00:05:44.531  4911  4911 E MTPRx   : In MtpReceiverandroid.hardware.usb.action.USB_STATE
08-01 00:05:44.541  4911  4911 E MTPRx   : check value of boot_completed is1
08-01 00:05:44.551  4911  4911 E MTPRx   : Sd-Card path/storage/7B0B-13FC
08-01 00:05:44.561  4911  4911 E MTPRx   : Status for mount/Unmount :mounted
08-01 00:05:44.561  4911  4911 E MTPRx   : SDcard is  available
08-01 00:05:44.561  4911  4911 E MTPRx   : check booting is completed_sys.boot_completed
08-01 00:05:44.561  4911  4911 E MTPRx   : Sd-Card path/storage/7B0B-13FC
08-01 00:05:44.571  4911  4911 E MTPRx   : Status for mount/Unmount :mounted
08-01 00:05:44.571  4911  4911 E MTPRx   : SDcard is  available
08-01 00:05:44.571  4911  4911 E MTPRx   : Received USB_STATE with sdCardLaunch = 0
08-01 00:05:44.571  4911  4911 E MTPRx   : Unexpected Disconnection. call usbRemoved.
08-01 00:05:44.571  4911  4911 E MTPRx   :  sendbooster is false!
08-01 00:05:44.571  4911  4911 E MTPRx   : configured is false
08-01 00:05:45.851  3697  3697 E Qmage   : isQIO : stream is not a QIO file
08-01 00:05:45.861  2463  2463 E MediaPlayerService: WFD client is not created
08-01 00:05:45.881  2463  4940 E OMXNodeInstance: setConfig(7e:google.vorbis.decoder, ConfigPriority(0x6f800002)) ERROR: Undefined(0x80001001)
08-01 00:05:45.941  4944  4944 E Zygote  : v2
08-01 00:05:45.941  4944  4944 E Zygote  : accessInfo : 0
08-01 00:05:46.001 19037  1349 E NetworkScheduler.SR: Invalid parameter app
08-01 00:05:46.001 19037  1349 E NetworkScheduler.SR: Invalid package name : Perhaps you didn't include a PendingIntent in the extras?
08-01 00:05:46.441  4911  4911 E MTPRx   : In MtpReceiverandroid.hardware.usb.action.USB_STATE
08-01 00:05:46.451  4911  4911 E MTPRx   : check value of boot_completed is1
08-01 00:05:46.451  4911  4911 E MTPRx   : check booting is completed_sys.boot_completed
08-01 00:05:46.451  4911  4911 E MTPRx   : Sd-Card path/storage/7B0B-13FC
08-01 00:05:46.451  4911  4911 E MTPRx   : Status for mount/Unmount :mounted
08-01 00:05:46.451  4911  4911 E MTPRx   : SDcard is  available
08-01 00:05:46.451  4911  4911 E MTPRx   : Received USB_STATE with sdCardLaunch = 0
08-01 00:05:46.451  4911  4911 E MTPRx   : configured is false
08-01 00:05:46.551  4911  4911 E MTPRx   : In MtpReceiverandroid.hardware.usb.action.USB_STATE
08-01 00:05:46.551  4911  4911 E MTPRx   : check value of boot_completed is1
08-01 00:05:46.551  4911  4911 E MTPRx   : check booting is completed_sys.boot_completed
08-01 00:05:46.551  4911  4911 E MTPRx   : Sd-Card path/storage/7B0B-13FC
08-01 00:05:46.551  4911  4911 E MTPRx   : Status for mount/Unmount :mounted
08-01 00:05:46.551  4911  4911 E MTPRx   : SDcard is  available
08-01 00:05:46.551  4911  4911 E MTPRx   : Received USB_STATE with sdCardLaunch = 0
08-01 00:05:46.561  4911  4911 E MTPRx   : mFirstTime: false
08-01 00:05:46.561  4911  4911 E MTPJNIInterface: Getting CryptionKey from JAVA
08-01 00:05:46.561  4911  4911 E MTPRx   : currentUserId is 0
08-01 00:05:46.561  4911  4911 E MTPRx   : mtpCurrentGlobalUserId is 0
08-01 00:05:46.571  4911  4911 E MTPRx   : Start observing USB_STATE_MATCH
08-01 00:05:46.571  4911  4911 E MTPRx   : usbMode is 0200
08-01 00:05:46.571  4911  4911 E MTPRx   : This is not guid
08-01 00:05:46.571  2969  3493 E ENGMODE : Failed to enable UD-Mode(lecagy)
08-01 00:05:46.581  2969  3493 E ENGMODE : Failed to parse stored token(-6)
08-01 00:05:46.581  2969  3493 E ENGMODE : the req mode is not allowed (-6)
08-01 00:05:46.581  4911  4911 E MTPJNIInterface: noti = 12
08-01 00:05:46.591  4911  4911 E MTPRx   : is_Privatemode is NOT 1
08-01 00:05:46.601  4911  4911 E MTPRx   : Sending NORMAL_BOOT to stack
08-01 00:05:46.601  4911  4911 E MTPJNIInterface: noti = 17
08-01 00:05:46.611  4911  4911 E MTPRx   : User is personal
08-01 00:05:46.611  4911  4911 E MTPRx   : sending MTP_ICON_ENABLED to stack
08-01 00:05:46.611  4911  4911 E MTPRx   : else part ... so first time!!!
08-01 00:05:46.611  4911  4911 E MTPPlaObsrvr: inside setContext()
08-01 00:05:46.611  4911  4911 E MTPPlaObsrvr: Inside registerContentObserver
08-01 00:05:46.611  4911  4971 E MTPPlaObsrvr:  inside createplafiles
08-01 00:05:46.621  4911  4911 E MtpAdbObserver: inside setContext()
08-01 00:05:46.621  4911  4911 E MtpAdbObserver: Inside registerContentObserver
08-01 00:05:46.621  4911  4911 E MtpService: onCreate.
08-01 00:05:46.621  4911  4911 E MtpService: < MTP > Registering BroadCast receiver :::::
08-01 00:05:46.631  4911  4971 E MTPPlaObsrvr: playlist count is0
08-01 00:05:46.631  4911  4971 E MTPPlaObsrvr:  inside try branch createplafiles
08-01 00:05:46.631  4911  4971 E MTPPlaObsrvr:  inside deleteing plas createplafiles
08-01 00:05:46.631  4911  4911 E MtpService: Calling registerBroadCastuserPresentRec()
08-01 00:05:46.631  4911  4911 E MtpService: < MTP > Registering BroadCast receiver for USER Present:::::
08-01 00:05:46.631  4911  4911 E MtpService: < MTP > Registering BroadCast registerBroadCastPolicyRec :::::
08-01 00:05:46.631  4911  4911 E MtpService: < MTP > Registering BroadCast registerBroadCastEmergencyRec :::::
08-01 00:05:46.641  4911  4911 E MtpService: onStartCommand.
08-01 00:05:46.641  4911  4911 E MTPJNIInterface: < MTP > Registering BroadCast receiver :::::
08-01 00:05:46.641  4911  4972 E MtpService: handleMessage. msg= { when=-1ms what=0 arg1=1 obj=Intent { cmp=com.samsung.android.MtpApplication/.MtpService VirtualScreenParam=Params{mDisplayId=-1, null, mFlags=0x00000000)} } target=com.samsung.android.MtpApplication.MtpService$ServiceHandler }
08-01 00:05:46.641  4911  4911 E MTPJNIInterface: < MTP > Registering BroadCast receiver :::::::
08-01 00:05:46.651  4911  4911 E MTPJNIInterface: noti = 10
08-01 00:05:46.651  4911  4911 E MtpService: onStartCommand.
08-01 00:05:46.651  4911  4911 E MTPRx   : Checking the driver time out
08-01 00:05:46.651  4911  4911 E MTPJNIInterface: noti = 2
08-01 00:05:46.651  4911  4972 E MtpService: handleMessage. msg= { when=0 what=0 arg1=2 obj=Intent { cmp=com.samsung.android.MtpApplication/.MtpService VirtualScreenParam=Params{mDisplayId=-1, null, mFlags=0x00000000)} } target=com.samsung.android.MtpApplication.MtpService$ServiceHandler }
08-01 00:05:46.651  4911  4911 E MTPRx   : called native method
08-01 00:05:46.651  4911  4911 E MTPJNIInterface: setting Media scanner status0
08-01 00:05:46.651  4911  4911 E MTPJNIInterface: After setting Media scanner status0
08-01 00:05:46.651  4911  4974 E         : Unable to get Object Class and clearing cls 2 [int check_media_scanner_status() 594]
08-01 00:05:46.651  4911  4974 E MTPJNIInterface: Getting media scanner status0
08-01 00:05:46.651  4911  4974 E MTPJNIInterface: DeviceName is Null in System
08-01 00:05:46.651  4911  4974 E MTPJNIInterface: DeviceName is Galaxy A5 (2017)
08-01 00:05:46.651  4911  4974 E         : memcpy failed [memCpy 111]
08-01 00:05:46.651  4450  4450 E MtpServerJNI: could not open MTP driver, errno: 2
08-01 00:05:46.661  4450  4450 E MtpServerJNI: server is null in add_storage
08-01 00:05:46.661  4450  4450 E MtpServerJNI: server is null in add_storage
08-01 00:05:46.661  4450  4975 E MtpServerJNI: server is null in run
08-01 00:05:46.661  4450  4975 E MtpServerJNI: server is null in cleanup
08-01 00:05:46.661  4911  4974 E MTPJNIInterface: Status for mount/Unmount :mounted
08-01 00:05:46.661  4911  4974 E MTPJNIInterface: SDcard is  available
08-01 00:05:46.661  4450  4450 E MtpServerJNI: server is null in send_object_removed
08-01 00:05:46.661  4911  4974 E         : lstat failed! errno [13] [Permission denied] [mtp_ifind_next 452]
08-01 00:05:46.661  4911  4974 E MTPJNIInterface: Status for mount/Unmount :unknown
08-01 00:05:46.661  4911  4974 E MTPJNIInterface: SDcard is not available
08-01 00:05:46.671  4911  4974 E MTPJNIInterface: Status for mount/Unmount :unknown
08-01 00:05:46.671  4911  4974 E MTPJNIInterface: SDcard is not available
08-01 00:05:46.671  4911  4974 E MTPJNIInterface: Status for mount/Unmount :unknown
08-01 00:05:46.671  4911  4974 E MTPJNIInterface: SDcard is not available
08-01 00:05:46.671  4911  4974 E MTPJNIInterface: Status for mount/Unmount :mounted
08-01 00:05:46.671  4911  4974 E MTPJNIInterface: SDcard is  available
08-01 00:05:46.671  4911  4974 E SQLiteLog: (21) API call with NULL database connection pointer
08-01 00:05:46.671  4911  4974 E SQLiteLog: (21) misuse at line 107973 of [2ef4f3a5b1]
08-01 00:05:46.671  4911  4974 E SQLiteLog: (21) API call with NULL database connection pointer
08-01 00:05:46.671  4911  4974 E SQLiteLog: (21) misuse at line 103022 of [2ef4f3a5b1]
08-01 00:05:46.671  4911  4974 E SQLiteLog: (21) API call with NULL database connection pointer
08-01 00:05:46.671  4911  4974 E SQLiteLog: (21) misuse at line 103022 of [2ef4f3a5b1]
08-01 00:05:46.671  4911  4974 E SQLiteLog: (21) API call with NULL database connection pointer
08-01 00:05:46.671  4911  4974 E SQLiteLog: (21) misuse at line 107973 of [2ef4f3a5b1]
08-01 00:05:46.671  4911  4976 E         : [mtp_init_device 746]  After open the MTP fd = 25 and line = 746...
08-01 00:05:46.671  4911  4976 E         :  [sua_support_present:1338] returning false
08-01 00:05:46.681  4911  4911 E MTPRx   : Open session has come  remove the  Message false
08-01 00:05:46.681  4911  4911 E MTPRx   : This is not guid
08-01 00:05:46.681  4911  4911 E MTPRx   : Show popup for trust mtp
08-01 00:05:46.691  4911  4977 E SQLiteLog: (1) no such table: system
08-01 00:05:46.691  4911  4977 E SQLiteLog: (1) no such table: global
08-01 00:05:46.691  4911  4977 E MTPJNIInterface: Value of device_name is Galaxy A5 (2017)
08-01 00:05:46.721  4911  4911 E MTPUSBConnection: AlertDialog Mode is : TRUSTMTP
08-01 00:05:46.731 31722 31897 E AudioRecord-JNI: Error -4 during AudioRecord native read
08-01 00:05:46.751  2463  4872 E audio_hw_primary: select_devices: adev->outputs[0] - device 2 / adev->out_device 2
08-01 00:05:46.761  2463  2463 E audio_hw_primary: adev_close_input_stream, set jack_in to null
08-01 00:05:47.801  4911  4911 E SystemFW: setCurrentFunction
08-01 00:05:47.801  4911  4911 E SystemFW: java.lang.Exception: who's calling?
08-01 00:05:47.801  4911  4911 E SystemFW:      at android.hardware.usb.UsbManager.setCurrentFunction(UsbManager.java:633)
08-01 00:05:47.801  4911  4911 E SystemFW:      at com.samsung.android.MtpApplication.MtpReceiver.changeMtpMode(MtpReceiver.java:391)
08-01 00:05:47.801  4911  4911 E SystemFW:      at com.samsung.android.MtpApplication.USBConnection$6.onClick(USBConnection.java:299)
08-01 00:05:47.801  4911  4911 E SystemFW:      at com.android.internal.app.AlertController$ButtonHandler.handleMessage(AlertController.java:174)
08-01 00:05:47.801  4911  4911 E SystemFW:      at android.os.Handler.dispatchMessage(Handler.java:102)
08-01 00:05:47.801  4911  4911 E SystemFW:      at android.os.Looper.loop(Looper.java:148)
08-01 00:05:47.801  4911  4911 E SystemFW:      at android.app.ActivityThread.main(ActivityThread.java:7407)
08-01 00:05:47.801  4911  4911 E SystemFW:      at java.lang.reflect.Method.invoke(Native Method)
08-01 00:05:47.801  4911  4911 E SystemFW:      at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1230)
08-01 00:05:47.801  4911  4911 E SystemFW:      at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1120)
08-01 00:05:47.811  4911  4979 E         : [mtp_simple_sink_thread, 334] !!!!!! read failed errno [5], error [I/O error]
08-01 00:05:47.811  4911  4979 E         : [mtp_simple_sink_thread 381] read error [0] [Success]
08-01 00:05:47.811  4911  4911 E SystemFW: setCurrentFunction
08-01 00:05:47.811  4911  4911 E SystemFW: java.lang.Exception: who's calling?
08-01 00:05:47.811  4911  4911 E SystemFW:      at android.hardware.usb.UsbManager.setCurrentFunction(UsbManager.java:633)
08-01 00:05:47.811  4911  4911 E SystemFW:      at com.samsung.android.MtpApplication.MtpReceiver.changeMtpMode(MtpReceiver.java:395)
08-01 00:05:47.811  4911  4911 E SystemFW:      at com.samsung.android.MtpApplication.USBConnection$6.onClick(USBConnection.java:299)
08-01 00:05:47.811  4911  4911 E SystemFW:      at com.android.internal.app.AlertController$ButtonHandler.handleMessage(AlertController.java:174)
08-01 00:05:47.811  4911  4911 E SystemFW:      at android.os.Handler.dispatchMessage(Handler.java:102)
08-01 00:05:47.811  4911  4911 E SystemFW:      at android.os.Looper.loop(Looper.java:148)
08-01 00:05:47.811  4911  4911 E SystemFW:      at android.app.ActivityThread.main(ActivityThread.java:7407)
08-01 00:05:47.811  4911  4911 E SystemFW:      at java.lang.reflect.Method.invoke(Native Method)
08-01 00:05:47.811  4911  4911 E SystemFW:      at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1230)
08-01 00:05:47.811  4911  4911 E SystemFW:      at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1120)
08-01 00:05:47.811  2450  2485 E DataRouter: USB Interface is open with 0xa
08-01 00:05:47.871 31722 31722 E PBSessionCacheImpl: sessionId[139516332952992903] not persisted.
08-01 00:05:47.871  4911  4911 E MTPRx   : Read Error Came false
08-01 00:05:47.871  4911  4911 E MTPRx   : Read Error Came so calling usbRemoved()
08-01 00:05:47.881  4911  4911 E MTPRx   :  sendbooster is false!
08-01 00:05:47.881  4911  4911 E MTPRx   : In usbRemoved Status bar enabled
08-01 00:05:47.881  4911  4911 E MTPRx   : nousbdriverReset case, so do not send MTP_FILE_SCAN
08-01 00:05:47.891  4911  4911 E ViewRootImpl: sendUserActionEvent() mView == null
08-01 00:05:47.911  4911  4911 E MtpService: onDestroy.
08-01 00:05:47.921  4911  4911 E MtpService: Unregister Mtp disable Receiver
08-01 00:05:47.921  4911  4911 E MtpService: Receiver not registered: com.samsung.android.MtpApplication.MtpService$1@34ca2fa
08-01 00:05:47.921  4911  4911 E MtpService: Unregister mtpEmergencyReceiver
08-01 00:05:47.921  4911  4911 E MtpService: Receiver not registered: com.samsung.android.MtpApplication.MtpService$2@8a5c0ab
08-01 00:05:47.921  4911  4911 E MtpService: unregistering mtpUserPresentReceiver in UnregisterAllIntent
08-01 00:05:47.921  4911  4911 E MtpService: Receiver not registered: com.samsung.android.MtpApplication.MtpService$4@5f97125
08-01 00:05:47.921  4911  4911 E MtpService: unregistering mtpMediaReceiver in UnregisterAllIntent
08-01 00:05:47.921  4911  4911 E MtpService: Receiver not registered: com.samsung.android.MtpApplication.MtpService$3@c7b411c
08-01 00:05:47.921  4911  4911 E MTPJNIInterface: noti = 3
08-01 00:05:47.921  4911  4911 E         : ****** [mtp_usb_mtp_finalize 1282] mtp_close_fd Calling
08-01 00:05:47.921  4911  4911 E         : [mtp_close_fd 140]  fd = 25...
08-01 00:05:47.921  4911  4911 E         : [mtp_close_fd 145] USB endpoint [25] closed...
08-01 00:05:47.921  4911  4911 E         : ****** [mtp_usb_mtp_finalize 1285] Updating the gInitializeFlag Flag to FALSE
08-01 00:05:47.921  4911  4911 E         : ****** [mtp_usb_mtp_finalize 1288] Calling mtp_stop_io
08-01 00:05:47.941  2463  4986 E audio_hw_primary: select_devices: adev->outputs[0] - device 2 / adev->out_device 2
08-01 00:05:47.951  2969  3316 E InputDispatcher: channel ~ Channel is unrecoverably broken and will be disposed!
08-01 00:05:48.061  4988  4988 E Zygote  : v2
08-01 00:05:48.071  4988  4988 E Zygote  : accessInfo : 0
08-01 00:05:48.131  4988  4988 E MTPRx   : In MtpReceiverandroid.hardware.usb.action.USB_STATE
08-01 00:05:48.141  4988  4988 E MTPRx   : check value of boot_completed is1
08-01 00:05:48.151  4988  4988 E MTPRx   : Sd-Card path/storage/7B0B-13FC
08-01 00:05:48.151  4988  4988 E MTPRx   : Status for mount/Unmount :mounted
08-01 00:05:48.151  4988  4988 E MTPRx   : SDcard is  available
08-01 00:05:48.151  4988  4988 E MTPRx   : check booting is completed_sys.boot_completed
08-01 00:05:48.151  4988  4988 E MTPRx   : Sd-Card path/storage/7B0B-13FC
08-01 00:05:48.151  4988  4988 E MTPRx   : Status for mount/Unmount :mounted
08-01 00:05:48.151  4988  4988 E MTPRx   : SDcard is  available
08-01 00:05:48.151  4988  4988 E MTPRx   : Received USB_STATE with sdCardLaunch = 0
08-01 00:05:48.151  4988  4988 E MTPRx   : configured is false
08-01 00:05:48.461  4988  4988 E MTPRx   : In MtpReceiverandroid.hardware.usb.action.USB_STATE
08-01 00:05:48.471  4988  4988 E MTPRx   : check value of boot_completed is1
08-01 00:05:48.471  4988  4988 E MTPRx   : check booting is completed_sys.boot_completed
08-01 00:05:48.471  4988  4988 E MTPRx   : Sd-Card path/storage/7B0B-13FC
08-01 00:05:48.471  4988  4988 E MTPRx   : Status for mount/Unmount :mounted
08-01 00:05:48.471  4988  4988 E MTPRx   : SDcard is  available
08-01 00:05:48.471  4988  4988 E MTPRx   : Received USB_STATE with sdCardLaunch = 0
08-01 00:05:48.471  4988  4988 E MTPRx   : mFirstTime: false
08-01 00:05:48.481  4988  4988 E MTPJNIInterface: Getting CryptionKey from JAVA
08-01 00:05:48.481  4988  4988 E MTPRx   : currentUserId is 0
08-01 00:05:48.481  4988  4988 E MTPRx   : mtpCurrentGlobalUserId is 0
08-01 00:05:48.481  4988  4988 E MTPRx   : Start observing USB_STATE_MATCH
08-01 00:05:48.491  4988  4988 E MTPRx   : usbMode is 0200
08-01 00:05:48.491  4988  4988 E MTPRx   : This is not guid
08-01 00:05:48.491  2969  4031 E ENGMODE : Failed to enable UD-Mode(lecagy)
08-01 00:05:48.491  2969  4031 E ENGMODE : Failed to parse stored token(-6)
08-01 00:05:48.491  2969  4031 E ENGMODE : the req mode is not allowed (-6)
08-01 00:05:48.491  4988  4988 E MTPRx   : skip to display MTP popup.
08-01 00:05:48.491  4988  4988 E MTPRx   : is_Privatemode is NOT 1
08-01 00:05:48.511  4988  4988 E MTPRx   : Sending NORMAL_BOOT to stack
08-01 00:05:48.511  4988  4988 E MTPJNIInterface: noti = 17
08-01 00:05:48.511  4988  4988 E MTPRx   : User is personal
08-01 00:05:48.511  4988  4988 E MTPRx   : sending MTP_ICON_ENABLED to stack
08-01 00:05:48.521  4988  4988 E MTPRx   : else part ... so first time!!!
08-01 00:05:48.521  4988  4988 E MTPPlaObsrvr: inside setContext()
08-01 00:05:48.521  4988  4988 E MTPPlaObsrvr: Inside registerContentObserver
08-01 00:05:48.521  4988  5007 E MTPPlaObsrvr:  inside createplafiles
08-01 00:05:48.531  4988  4988 E MtpAdbObserver: inside setContext()
08-01 00:05:48.531  4988  4988 E MtpAdbObserver: Inside registerContentObserver
08-01 00:05:48.531  4988  4988 E MtpService: onCreate.
08-01 00:05:48.541  4988  5007 E MTPPlaObsrvr: playlist count is0
08-01 00:05:48.541  4988  5007 E MTPPlaObsrvr:  inside try branch createplafiles
08-01 00:05:48.541  4988  5007 E MTPPlaObsrvr:  inside deleteing plas createplafiles
08-01 00:05:48.541  4988  4988 E MtpService: < MTP > Registering BroadCast receiver :::::
08-01 00:05:48.541  4988  4988 E MtpService: < MTP > Registering BroadCast registerBroadCastPolicyRec :::::
08-01 00:05:48.541  4988  4988 E MtpService: < MTP > Registering BroadCast registerBroadCastEmergencyRec :::::
08-01 00:05:48.541  4988  4988 E MtpService: onStartCommand.
08-01 00:05:48.541  4988  4988 E MTPJNIInterface: < MTP > Registering BroadCast receiver :::::
08-01 00:05:48.541  4988  5008 E MtpService: handleMessage. msg= { when=0 what=0 arg1=1 obj=Intent { cmp=com.samsung.android.MtpApplication/.MtpService VirtualScreenParam=Params{mDisplayId=-1, null, mFlags=0x00000000)} } target=com.samsung.android.MtpApplication.MtpService$ServiceHandler }
08-01 00:05:48.551  4988  4988 E MTPJNIInterface: < MTP > Registering BroadCast receiver :::::::
08-01 00:05:48.551  4988  4988 E MTPJNIInterface: noti = 10
08-01 00:05:48.551  4988  4988 E MTPRx   : Checking the driver time out
08-01 00:05:48.551  4988  4988 E MTPJNIInterface: noti = 2
08-01 00:05:48.561  4988  5009 E         : Unable to get Object Class and clearing cls 2 [int check_media_scanner_status() 594]
08-01 00:05:48.561  4988  5009 E MTPJNIInterface: Getting media scanner status0
08-01 00:05:48.561  4988  4988 E MTPRx   : called native method
08-01 00:05:48.561  4988  4988 E MTPJNIInterface: setting Media scanner status0
08-01 00:05:48.561  4988  4988 E MTPJNIInterface: After setting Media scanner status0
08-01 00:05:48.561  4988  4988 E MtpService: onStartCommand.
08-01 00:05:48.561  4988  5008 E MtpService: handleMessage. msg= { when=0 what=0 arg1=2 obj=Intent { cmp=com.samsung.android.MtpApplication/.MtpService VirtualScreenParam=Params{mDisplayId=-1, null, mFlags=0x00000000)} } target=com.samsung.android.MtpApplication.MtpService$ServiceHandler }
08-01 00:05:48.561  4988  5009 E MTPJNIInterface: DeviceName is Null in System
08-01 00:05:48.561  4988  5009 E MTPJNIInterface: DeviceName is Galaxy A5 (2017)
08-01 00:05:48.561  4988  5009 E         : memcpy failed [memCpy 111]
08-01 00:05:48.571  4988  5009 E MTPJNIInterface: Status for mount/Unmount :mounted
08-01 00:05:48.571  4988  5009 E MTPJNIInterface: SDcard is  available
08-01 00:05:48.571  4988  5009 E         : lstat failed! errno [13] [Permission denied] [mtp_ifind_next 452]
08-01 00:05:48.571  4988  5009 E MTPJNIInterface: Status for mount/Unmount :unknown
08-01 00:05:48.571  4988  5009 E MTPJNIInterface: SDcard is not available
08-01 00:05:48.571  4450  4450 E MtpServerJNI: could not open MTP driver, errno: 2
08-01 00:05:48.571  4988  5009 E MTPJNIInterface: Status for mount/Unmount :unknown
08-01 00:05:48.581  4988  5009 E MTPJNIInterface: SDcard is not available
08-01 00:05:48.581  4988  5009 E MTPJNIInterface: Status for mount/Unmount :unknown
08-01 00:05:48.581  4988  5009 E MTPJNIInterface: SDcard is not available
08-01 00:05:48.581  4450  4450 E MtpServerJNI: server is null in add_storage
08-01 00:05:48.581  4450  4450 E MtpServerJNI: server is null in add_storage
08-01 00:05:48.581  4450  5011 E MtpServerJNI: server is null in run
08-01 00:05:48.581  4450  5011 E MtpServerJNI: server is null in cleanup
08-01 00:05:48.581  4450  4450 E MtpServerJNI: server is null in send_object_removed
08-01 00:05:48.581  4988  5009 E MTPJNIInterface: Status for mount/Unmount :mounted
08-01 00:05:48.581  4988  5009 E MTPJNIInterface: SDcard is  available
08-01 00:05:48.581  4988  5009 E SQLiteLog: (21) API call with NULL database connection pointer
08-01 00:05:48.581  4988  5009 E SQLiteLog: (21) misuse at line 107973 of [2ef4f3a5b1]
08-01 00:05:48.581  4988  5009 E SQLiteLog: (21) API call with NULL database connection pointer
08-01 00:05:48.581  4988  5009 E SQLiteLog: (21) misuse at line 103022 of [2ef4f3a5b1]
08-01 00:05:48.581  4988  5009 E SQLiteLog: (21) API call with NULL database connection pointer
08-01 00:05:48.581  4988  5009 E SQLiteLog: (21) misuse at line 103022 of [2ef4f3a5b1]
08-01 00:05:48.581  4988  5009 E SQLiteLog: (21) API call with NULL database connection pointer
08-01 00:05:48.581  4988  5009 E SQLiteLog: (21) misuse at line 107973 of [2ef4f3a5b1]
08-01 00:05:48.581  4988  5012 E         : [mtp_init_device 746]  After open the MTP fd = 25 and line = 746...
08-01 00:05:48.581  4988  5012 E         :  [sua_support_present:1338] returning false
08-01 00:05:48.581  4988  4988 E MTPRx   : Open session has come  remove the  Message false
08-01 00:05:48.591  4988  4988 E MTPRx   : This is not guid
08-01 00:05:48.591  4988  4988 E MTPJNIInterface: noti = 13
08-01 00:05:48.591  4988  4988 E MTPRx   : in startDBupdate
08-01 00:05:48.591  4988  5013 E SQLiteLog: (1) no such table: system
08-01 00:05:48.591  4988  5013 E SQLiteLog: (1) no such table: global
08-01 00:05:48.591  4988  5013 E MTPJNIInterface: Value of device_name is Galaxy A5 (2017)
08-01 00:05:48.631  4988  5017 E MtpMediaDBManager: count : 260
08-01 00:05:48.641  4988  5013 E         : mtp_get_storage_ids_mtp_handle : START !!
08-01 00:05:48.651  4988  5017 E MTPJNIInterface: noti = 29
08-01 00:06:01.671  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 5ms lastUpdatedAfter : 60121 ms mFlush_time_threasold : 2000 mCurrentSize : 303
08-01 00:07:01.791  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 4ms lastUpdatedAfter : 60112 ms mFlush_time_threasold : 2000 mCurrentSize : 303
08-01 00:08:01.911  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 4ms lastUpdatedAfter : 60126 ms mFlush_time_threasold : 2000 mCurrentSize : 303
08-01 00:09:01.991  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 4ms lastUpdatedAfter : 60082 ms mFlush_time_threasold : 2000 mCurrentSize : 303
08-01 00:09:18.391 21186 21212 E SQLiteCastStore: End saving paired guest mode devices
08-01 00:10:02.121  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 3ms lastUpdatedAfter : 60125 ms mFlush_time_threasold : 2000 mCurrentSize : 303
08-01 00:10:09.261  4450  4450 E MtpServerJNI: server is null in send_object_removed
08-01 00:11:02.201  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 5ms lastUpdatedAfter : 60079 ms mFlush_time_threasold : 2000 mCurrentSize : 303
--------- beginning of system
08-01 00:11:11.861  2969  3795 E Watchdog: !@Sync 481 [07-31 20:11:11.871]
08-01 00:11:15.401  2455  2960 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'LABEL' not found
08-01 00:11:20.361  2455  2960 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'LABEL' not found
08-01 00:11:25.691 31722  4726 E AudioRecord-JNI: Error -4 during AudioRecord native read
08-01 00:11:25.721  2463  4105 E audio_hw_primary: adev_close_input_stream, set jack_in to null
08-01 00:11:27.191 31722 31722 E PBSessionCacheImpl: sessionId[139516332952992903] not persisted.
08-01 00:11:27.491 31722  5140 E AudioRecord-JNI: Error -4 during AudioRecord native read
08-01 00:11:27.531  5156  5156 E Zygote  : v2
08-01 00:11:27.531  5156  5156 E Zygote  : accessInfo : 0
08-01 00:11:27.681  2463  4105 E audio_hw_primary: adev_close_input_stream, set jack_in to null
08-01 00:11:30.181 31722 31722 E PBSessionCacheImpl: sessionId[139516332952992903] not persisted.
08-01 00:11:30.191  5170  5170 E Zygote  : v2
08-01 00:11:30.191  5170  5170 E Zygote  : accessInfo : 0
08-01 00:11:30.201  2969  3061 E Qmage   : isQIO : stream is not a QIO file
08-01 00:11:30.221 31722  5141 E AudioRecord-JNI: Error -4 during AudioRecord native read
08-01 00:11:30.531  5170  5170 E Qmage   : isQIO : stream is not a QIO file
08-01 00:11:30.641  2463  3254 E audio_hw_primary: adev_close_input_stream, set jack_in to null
08-01 00:11:30.741  5170  5170 E AccessibilityManager: assistantMenuUpdate invoking from manager:
08-01 00:11:33.221  5170  5170 E AccessibilityManager: assistantMenuUpdate invoking from manager:
08-01 00:11:33.261  5170  5170 E Qmage   : isQIO : stream is not a QIO file
08-01 00:11:33.261  5170  5170 E Qmage   : isQIO : stream is not a QIO file
08-01 00:11:33.291  5170  5170 E Qmage   : isQIO : stream is not a QIO file
08-01 00:11:33.301  5170  5170 E Qmage   : isQIO : stream is not a QIO file
08-01 00:11:33.361  5170  5170 E MotionRecognitionManager: mSContextService = android.hardware.scontext.ISContextService$Stub$Proxy@92817b5
08-01 00:11:33.361  5170  5170 E MotionRecognitionManager: motionService = com.samsung.android.motion.IMotionRecognitionService$Stub$Proxy@8496e4a
08-01 00:11:33.361  5170  5170 E MotionRecognitionManager: motionService = com.samsung.android.motion.IMotionRecognitionService$Stub$Proxy@8496e4a
08-01 00:11:33.461  5170  5170 E Qmage   : isQIO : stream is not a QIO file
08-01 00:11:33.531  5170  5170 E AccessibilityManager: assistantMenuUpdate invoking from manager:
08-01 00:11:35.401  2455  2960 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'LABEL' not found
08-01 00:11:35.711  5170  5170 E AccessibilityManager: assistantMenuUpdate invoking from manager:
08-01 00:11:35.761  5170  5170 E MotionRecognitionManager: mSContextService = android.hardware.scontext.ISContextService$Stub$Proxy@edcf90e
08-01 00:11:35.761  5170  5170 E MotionRecognitionManager: motionService = com.samsung.android.motion.IMotionRecognitionService$Stub$Proxy@6cc7f2f
08-01 00:11:35.761  5170  5170 E MotionRecognitionManager: motionService = com.samsung.android.motion.IMotionRecognitionService$Stub$Proxy@6cc7f2f
08-01 00:11:38.531  5170  5170 E Index   : Cannot find SearchIndexableResources for class name: com.android.settings.DevelopmentSettings
08-01 00:11:39.481  5170  5170 E AccessibilityManager: assistantMenuUpdate invoking from manager:
08-01 00:11:40.361  2455  2960 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'LABEL' not found
08-01 00:11:41.181  5170  5170 E AccessibilityManager: assistantMenuUpdate invoking from manager:
08-01 00:11:41.361  5170  5170 E AccessibilityManager: assistantMenuUpdate invoking from manager:
08-01 00:11:41.861  2969  3795 E Watchdog: !@Sync 482 [07-31 20:11:41.872]
08-01 00:11:42.381  5170  5170 E AccessibilityManager: assistantMenuUpdate invoking from manager:
08-01 00:11:42.471  5170  5170 E MotionRecognitionManager: mSContextService = android.hardware.scontext.ISContextService$Stub$Proxy@7223eb5
08-01 00:11:42.471  5170  5170 E MotionRecognitionManager: motionService = com.samsung.android.motion.IMotionRecognitionService$Stub$Proxy@dae094a
08-01 00:11:42.471  5170  5170 E MotionRecognitionManager: motionService = com.samsung.android.motion.IMotionRecognitionService$Stub$Proxy@dae094a
08-01 00:11:42.711  5170  5170 E AccessibilityManager: assistantMenuUpdate invoking from manager:
08-01 00:11:46.941  5170  5170 E AccessibilityManager: assistantMenuUpdate invoking from manager:
08-01 00:11:47.641  4988  4988 E MtpAdbObserver: onChange is called
08-01 00:11:47.641  4988  4988 E MtpAdbObserver: ADB_CHANGED sent to MtpReceiver
08-01 00:11:47.641  4988  4988 E MTPRx   :  sendbooster is false!
08-01 00:11:47.641  4988  4988 E MTPRx   : In usbRemoved Status bar enabled
08-01 00:11:47.641  2969  3020 E UsbDeviceManager: customer.xml file not found
08-01 00:11:47.651  4988  4988 E MtpMediaDBManager: updateMyfilesDB Count :0
08-01 00:11:47.661  4988  5015 E         : [mtp_simple_sink_thread, 334] !!!!!! read failed errno [5], error [I/O error]
08-01 00:11:47.661  2450  2485 E DataRouter: USB Interface is open with 0xa
08-01 00:11:47.661  4988  5015 E         : [mtp_simple_sink_thread 381] read error [0] [Success]
08-01 00:11:47.691  5170  5170 E AccessibilityManager: assistantMenuUpdate invoking from manager:
08-01 00:11:47.711  4988  4988 E MTPRx   : Sending Broadcast finish
08-01 00:11:47.721  5170  5170 E ViewRootImpl: sendUserActionEvent() mView == null
08-01 00:11:47.741  5246  5246 E Zygote  : v2
08-01 00:11:47.751  4988  4988 E MTPRx   : Read Error Came false
08-01 00:11:47.751  4988  4988 E MTPRx   : Read Error Came so calling usbRemoved()
08-01 00:11:47.751  5246  5246 E Zygote  : accessInfo : 0
08-01 00:11:47.751  4988  4988 E MTPRx   :  sendbooster is false!
08-01 00:11:47.751  4988  4988 E MtpService: onDestroy.
08-01 00:11:47.751  4988  4988 E MtpService: Unregister Mtp disable Receiver
08-01 00:11:47.751  4988  4988 E MtpService: Receiver not registered: com.samsung.android.MtpApplication.MtpService$1@5f97125
08-01 00:11:47.751  4988  4988 E MtpService: Unregister mtpEmergencyReceiver
08-01 00:11:47.751  4988  4988 E MtpService: Receiver not registered: com.samsung.android.MtpApplication.MtpService$2@34ca2fa
08-01 00:11:47.751  4988  4988 E MtpService: unregistering mtpMediaReceiver in UnregisterAllIntent
08-01 00:11:47.751  4988  4988 E MtpService: Receiver not registered: com.samsung.android.MtpApplication.MtpService$3@c7b411c
08-01 00:11:47.751  4988  4988 E MTPJNIInterface: noti = 3
08-01 00:11:47.751  4988  4988 E         : ****** [mtp_usb_mtp_finalize 1282] mtp_close_fd Calling
08-01 00:11:47.751  4988  4988 E         : [mtp_close_fd 140]  fd = 25...
08-01 00:11:47.751  4988  4988 E         : [mtp_close_fd 145] USB endpoint [25] closed...
08-01 00:11:47.751  4988  4988 E         : ****** [mtp_usb_mtp_finalize 1285] Updating the gInitializeFlag Flag to FALSE
08-01 00:11:47.751  4988  4988 E         : ****** [mtp_usb_mtp_finalize 1288] Calling mtp_stop_io
08-01 00:11:47.821  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 4ms lastUpdatedAfter : 45618 ms mFlush_time_threasold : 2000 mCurrentSize : 227
08-01 00:11:47.851  5260  5260 E Zygote  : v2
08-01 00:11:47.851  5260  5260 E Zygote  : accessInfo : 0
08-01 00:11:47.941  5274  5274 E Zygote  : v2
08-01 00:11:47.941  5274  5274 E Zygote  : accessInfo : 0
08-01 00:11:47.961  5286  5286 E Zygote  : v2
08-01 00:11:47.961  5286  5286 E Zygote  : accessInfo : 0
08-01 00:11:47.971 10815 10815 E Launcher.Model: onPackageChanged :com.android.shell
08-01 00:11:48.011  5274  5274 E MTPRx   : In MtpReceiverandroid.hardware.usb.action.USB_STATE
08-01 00:11:48.011  5274  5274 E MTPRx   : check value of boot_completed is1
08-01 00:11:48.021  5274  5274 E MTPRx   : Sd-Card path/storage/7B0B-13FC
08-01 00:11:48.021  5274  5274 E MTPRx   : Status for mount/Unmount :mounted
08-01 00:11:48.021  5274  5274 E MTPRx   : SDcard is  available
08-01 00:11:48.031  5274  5274 E MTPRx   : check booting is completed_sys.boot_completed
08-01 00:11:48.031  5274  5274 E MTPRx   : Sd-Card path/storage/7B0B-13FC
08-01 00:11:48.031  5274  5274 E MTPRx   : Status for mount/Unmount :mounted
08-01 00:11:48.031  5274  5274 E MTPRx   : SDcard is  available
08-01 00:11:48.031  5274  5274 E MTPRx   : Received USB_STATE with sdCardLaunch = 0
08-01 00:11:48.031  5274  5274 E MTPRx   : configured is false
08-01 00:11:48.471  5274  5274 E MTPRx   : In MtpReceiverandroid.hardware.usb.action.USB_STATE
08-01 00:11:48.481  5274  5274 E MTPRx   : check value of boot_completed is1
08-01 00:11:48.481  5274  5274 E MTPRx   : check booting is completed_sys.boot_completed
08-01 00:11:48.481  5274  5274 E MTPRx   : Sd-Card path/storage/7B0B-13FC
08-01 00:11:48.481  5274  5274 E MTPRx   : Status for mount/Unmount :mounted
08-01 00:11:48.481  5274  5274 E MTPRx   : SDcard is  available
08-01 00:11:48.481  5274  5274 E MTPRx   : Received USB_STATE with sdCardLaunch = 0
08-01 00:11:48.491  5274  5274 E MTPRx   : mFirstTime: false
08-01 00:11:48.501  5274  5274 E MTPJNIInterface: Getting CryptionKey from JAVA
08-01 00:11:48.501  5274  5274 E MTPRx   : currentUserId is 0
08-01 00:11:48.501  4646  4646 E Controller: [#CMH#] FINISHED  EVENT_MEDIA_SCAN_FINISHED
08-01 00:11:48.511  5274  5274 E MTPRx   : mtpCurrentGlobalUserId is 0
08-01 00:11:48.511  5274  5274 E MTPRx   : Start observing USB_STATE_MATCH
08-01 00:11:48.521  5274  5274 E MTPRx   : usbMode is 0200
08-01 00:11:48.521  5274  5274 E MTPRx   : This is not guid
08-01 00:11:48.521  2969  4032 E ENGMODE : Failed to enable UD-Mode(lecagy)
08-01 00:11:48.531  2969  4032 E ENGMODE : Failed to parse stored token(-6)
08-01 00:11:48.531  2969  4032 E ENGMODE : the req mode is not allowed (-6)
08-01 00:11:48.541  5274  5274 E MTPJNIInterface: noti = 12
08-01 00:11:48.541  5274  5274 E MTPRx   : is_Privatemode is NOT 1
08-01 00:11:48.561  5274  5274 E MTPRx   : Sending NORMAL_BOOT to stack
08-01 00:11:48.561  5274  5274 E MTPJNIInterface: noti = 17
08-01 00:11:48.571  5274  5274 E MTPRx   : User is personal
08-01 00:11:48.571  5274  5274 E MTPRx   : sending MTP_ICON_ENABLED to stack
08-01 00:11:48.571  5274  5274 E MTPRx   : else part ... so first time!!!
08-01 00:11:48.571  5274  5274 E MTPPlaObsrvr: inside setContext()
08-01 00:11:48.571  5274  5274 E MTPPlaObsrvr: Inside registerContentObserver
08-01 00:11:48.571  5274  5323 E MTPPlaObsrvr:  inside createplafiles
08-01 00:11:48.581  5274  5274 E MtpAdbObserver: inside setContext()
08-01 00:11:48.581  5274  5274 E MtpAdbObserver: Inside registerContentObserver
08-01 00:11:48.591  5274  5274 E MtpService: onCreate.
08-01 00:11:48.591  5274  5274 E MtpService: < MTP > Registering BroadCast receiver :::::
08-01 00:11:48.591  5274  5323 E MTPPlaObsrvr: playlist count is0
08-01 00:11:48.591  5274  5323 E MTPPlaObsrvr:  inside try branch createplafiles
08-01 00:11:48.591  5274  5323 E MTPPlaObsrvr:  inside deleteing plas createplafiles
08-01 00:11:48.601  5274  5274 E MtpService: Calling registerBroadCastuserPresentRec()
08-01 00:11:48.601  5274  5274 E MtpService: < MTP > Registering BroadCast receiver for USER Present:::::
08-01 00:11:48.601  5274  5274 E MtpService: < MTP > Registering BroadCast registerBroadCastPolicyRec :::::
08-01 00:11:48.601  5274  5274 E MtpService: < MTP > Registering BroadCast registerBroadCastEmergencyRec :::::
08-01 00:11:48.611  5274  5274 E MtpService: onStartCommand.
08-01 00:11:48.611  5274  5274 E MTPJNIInterface: < MTP > Registering BroadCast receiver :::::
08-01 00:11:48.611  5274  5324 E MtpService: handleMessage. msg= { when=0 what=0 arg1=1 obj=Intent { cmp=com.samsung.android.MtpApplication/.MtpService VirtualScreenParam=Params{mDisplayId=-1, null, mFlags=0x00000000)} } target=com.samsung.android.MtpApplication.MtpService$ServiceHandler }
08-01 00:11:48.611  5274  5274 E MTPJNIInterface: < MTP > Registering BroadCast receiver :::::::
08-01 00:11:48.621  5274  5274 E MTPJNIInterface: noti = 10
08-01 00:11:48.621  5274  5274 E MtpService: onStartCommand.
08-01 00:11:48.621  5274  5274 E MTPRx   : Checking the driver time out
08-01 00:11:48.621  5274  5274 E MTPJNIInterface: noti = 2
08-01 00:11:48.621  5274  5274 E MTPRx   : called native method
08-01 00:11:48.621  5274  5274 E MTPJNIInterface: setting Media scanner status0
08-01 00:11:48.621  5274  5274 E MTPJNIInterface: After setting Media scanner status0
08-01 00:11:48.621  5274  5326 E         : Unable to get Object Class and clearing cls 2 [int check_media_scanner_status() 594]
08-01 00:11:48.621  5274  5324 E MtpService: handleMessage. msg= { when=-1ms what=0 arg1=2 obj=Intent { cmp=com.samsung.android.MtpApplication/.MtpService VirtualScreenParam=Params{mDisplayId=-1, null, mFlags=0x00000000)} } target=com.samsung.android.MtpApplication.MtpService$ServiceHandler }
08-01 00:11:48.621  5274  5326 E MTPJNIInterface: Getting media scanner status0
08-01 00:11:48.621  5274  5326 E MTPJNIInterface: DeviceName is Null in System
08-01 00:11:48.621  5274  5326 E MTPJNIInterface: DeviceName is Galaxy A5 (2017)
08-01 00:11:48.621  5274  5326 E         : memcpy failed [memCpy 111]
08-01 00:11:48.621  4450  4450 E MtpServerJNI: could not open MTP driver, errno: 2
08-01 00:11:48.631  5274  5326 E MTPJNIInterface: Status for mount/Unmount :mounted
08-01 00:11:48.631  5274  5326 E MTPJNIInterface: SDcard is  available
08-01 00:11:48.631  4450  4450 E MtpServerJNI: server is null in add_storage
08-01 00:11:48.631  4450  4450 E MtpServerJNI: server is null in add_storage
08-01 00:11:48.631  4450  5327 E MtpServerJNI: server is null in run
08-01 00:11:48.631  4450  5327 E MtpServerJNI: server is null in cleanup
08-01 00:11:48.631  5274  5326 E         : lstat failed! errno [13] [Permission denied] [mtp_ifind_next 452]
08-01 00:11:48.641  4450  4450 E MtpServerJNI: server is null in send_object_removed
08-01 00:11:48.641  5274  5326 E MTPJNIInterface: Status for mount/Unmount :unknown
08-01 00:11:48.641  5274  5326 E MTPJNIInterface: SDcard is not available
08-01 00:11:48.641  5274  5326 E MTPJNIInterface: Status for mount/Unmount :unknown
08-01 00:11:48.641  5274  5326 E MTPJNIInterface: SDcard is not available
08-01 00:11:48.651  5274  5326 E MTPJNIInterface: Status for mount/Unmount :unknown
08-01 00:11:48.651  5274  5326 E MTPJNIInterface: SDcard is not available
08-01 00:11:48.661  5274  5326 E MTPJNIInterface: Status for mount/Unmount :mounted
08-01 00:11:48.661  5274  5326 E MTPJNIInterface: SDcard is  available
08-01 00:11:48.661  5274  5326 E SQLiteLog: (21) API call with NULL database connection pointer
08-01 00:11:48.661  5274  5326 E SQLiteLog: (21) misuse at line 107973 of [2ef4f3a5b1]
08-01 00:11:48.661  5274  5326 E SQLiteLog: (21) API call with NULL database connection pointer
08-01 00:11:48.661  5274  5326 E SQLiteLog: (21) misuse at line 103022 of [2ef4f3a5b1]
08-01 00:11:48.661  5274  5326 E SQLiteLog: (21) API call with NULL database connection pointer
08-01 00:11:48.661  5274  5326 E SQLiteLog: (21) misuse at line 103022 of [2ef4f3a5b1]
08-01 00:11:48.661  5274  5326 E SQLiteLog: (21) API call with NULL database connection pointer
08-01 00:11:48.661  5274  5326 E SQLiteLog: (21) misuse at line 107973 of [2ef4f3a5b1]
08-01 00:11:48.661  5274  5328 E         : [mtp_init_device 746]  After open the MTP fd = 25 and line = 746...
08-01 00:11:48.661  5274  5328 E         :  [sua_support_present:1338] returning false
08-01 00:11:48.661  5274  5274 E MTPRx   : Open session has come  remove the  Message false
08-01 00:11:48.671  5274  5274 E MTPRx   : This is not guid
08-01 00:11:48.671  5274  5274 E MTPRx   : Show popup for trust mtp
08-01 00:11:48.681  5274  5329 E SQLiteLog: (1) no such table: system
08-01 00:11:48.681  5274  5329 E SQLiteLog: (1) no such table: global
08-01 00:11:48.681  5274  5329 E MTPJNIInterface: Value of device_name is Galaxy A5 (2017)
08-01 00:11:48.711  5170  5170 E AccessibilityManager: assistantMenuUpdate invoking from manager:
08-01 00:11:48.731  5274  5274 E MTPUSBConnection: AlertDialog Mode is : TRUSTMTP
08-01 00:11:51.831  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 2ms lastUpdatedAfter : 4011 ms mFlush_time_threasold : 2000 mCurrentSize : 227
08-01 00:11:52.681  5274  5274 E SystemFW: setCurrentFunction
08-01 00:11:52.681  5274  5274 E SystemFW: java.lang.Exception: who's calling?
08-01 00:11:52.681  5274  5274 E SystemFW:      at android.hardware.usb.UsbManager.setCurrentFunction(UsbManager.java:633)
08-01 00:11:52.681  5274  5274 E SystemFW:      at com.samsung.android.MtpApplication.MtpReceiver.changeMtpMode(MtpReceiver.java:391)
08-01 00:11:52.681  5274  5274 E SystemFW:      at com.samsung.android.MtpApplication.USBConnection$6.onClick(USBConnection.java:299)
08-01 00:11:52.681  5274  5274 E SystemFW:      at com.android.internal.app.AlertController$ButtonHandler.handleMessage(AlertController.java:174)
08-01 00:11:52.681  5274  5274 E SystemFW:      at android.os.Handler.dispatchMessage(Handler.java:102)
08-01 00:11:52.681  5274  5274 E SystemFW:      at android.os.Looper.loop(Looper.java:148)
08-01 00:11:52.681  5274  5274 E SystemFW:      at android.app.ActivityThread.main(ActivityThread.java:7407)
08-01 00:11:52.681  5274  5274 E SystemFW:      at java.lang.reflect.Method.invoke(Native Method)
08-01 00:11:52.681  5274  5274 E SystemFW:      at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1230)
08-01 00:11:52.681  5274  5274 E SystemFW:      at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1120)
08-01 00:11:52.681  5274  5331 E         : [mtp_simple_sink_thread, 334] !!!!!! read failed errno [5], error [I/O error]
08-01 00:11:52.681  5274  5274 E SystemFW: setCurrentFunction
08-01 00:11:52.681  5274  5274 E SystemFW: java.lang.Exception: who's calling?
08-01 00:11:52.681  5274  5274 E SystemFW:      at android.hardware.usb.UsbManager.setCurrentFunction(UsbManager.java:633)
08-01 00:11:52.681  5274  5274 E SystemFW:      at com.samsung.android.MtpApplication.MtpReceiver.changeMtpMode(MtpReceiver.java:393)
08-01 00:11:52.681  5274  5274 E SystemFW:      at com.samsung.android.MtpApplication.USBConnection$6.onClick(USBConnection.java:299)
08-01 00:11:52.681  5274  5274 E SystemFW:      at com.android.internal.app.AlertController$ButtonHandler.handleMessage(AlertController.java:174)
08-01 00:11:52.681  5274  5274 E SystemFW:      at android.os.Handler.dispatchMessage(Handler.java:102)
08-01 00:11:52.681  5274  5274 E SystemFW:      at android.os.Looper.loop(Looper.java:148)
08-01 00:11:52.681  5274  5274 E SystemFW:      at android.app.ActivityThread.main(ActivityThread.java:7407)
08-01 00:11:52.681  5274  5274 E SystemFW:      at java.lang.reflect.Method.invoke(Native Method)
08-01 00:11:52.681  5274  5274 E SystemFW:      at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1230)
08-01 00:11:52.681  5274  5274 E SystemFW:      at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1120)
08-01 00:11:52.681  5274  5331 E         : [mtp_simple_sink_thread 381] read error [0] [Success]
08-01 00:11:52.691  2450  2485 E DataRouter: USB Interface is open with 0xa
08-01 00:11:52.721  5274  5274 E MTPRx   : Read Error Came false
08-01 00:11:52.721  5274  5274 E MTPRx   : Read Error Came so calling usbRemoved()
08-01 00:11:52.721  5274  5274 E MTPRx   :  sendbooster is false!
08-01 00:11:52.721  5274  5274 E MTPRx   : In usbRemoved Status bar enabled
08-01 00:11:52.721  5170  5170 E AccessibilityManager: assistantMenuUpdate invoking from manager:
08-01 00:11:52.731  5274  5274 E MTPRx   : nousbdriverReset case, so do not send MTP_FILE_SCAN
08-01 00:11:52.751  5274  5274 E ViewRootImpl: sendUserActionEvent() mView == null
08-01 00:11:52.751  5274  5274 E MtpService: onDestroy.
08-01 00:11:52.751  5274  5274 E MtpService: Unregister Mtp disable Receiver
08-01 00:11:52.751  5274  5274 E MtpService: Receiver not registered: com.samsung.android.MtpApplication.MtpService$1@34ca2fa
08-01 00:11:52.751  5274  5274 E MtpService: Unregister mtpEmergencyReceiver
08-01 00:11:52.761  5274  5274 E MtpService: Receiver not registered: com.samsung.android.MtpApplication.MtpService$2@8a5c0ab
08-01 00:11:52.761  5274  5274 E MtpService: unregistering mtpUserPresentReceiver in UnregisterAllIntent
08-01 00:11:52.761  5274  5274 E MtpService: Receiver not registered: com.samsung.android.MtpApplication.MtpService$4@5f97125
08-01 00:11:52.761  5274  5274 E MtpService: unregistering mtpMediaReceiver in UnregisterAllIntent
08-01 00:11:52.761  5274  5274 E MtpService: Receiver not registered: com.samsung.android.MtpApplication.MtpService$3@c7b411c
08-01 00:11:52.761  5274  5274 E MTPJNIInterface: noti = 3
08-01 00:11:52.761  5274  5274 E         : ****** [mtp_usb_mtp_finalize 1282] mtp_close_fd Calling
08-01 00:11:52.761  5274  5274 E         : [mtp_close_fd 140]  fd = 25...
08-01 00:11:52.761  5274  5274 E         : [mtp_close_fd 145] USB endpoint [25] closed...
08-01 00:11:52.761  5274  5274 E         : ****** [mtp_usb_mtp_finalize 1285] Updating the gInitializeFlag Flag to FALSE
08-01 00:11:52.761  5274  5274 E         : ****** [mtp_usb_mtp_finalize 1288] Calling mtp_stop_io
08-01 00:11:52.771  2969  3316 E InputDispatcher: channel ~ Channel is unrecoverably broken and will be disposed!
08-01 00:11:53.051  5348  5348 E Zygote  : v2
08-01 00:11:53.051  5348  5348 E Zygote  : accessInfo : 0
08-01 00:11:53.111  5348  5348 E MTPRx   : In MtpReceiverandroid.hardware.usb.action.USB_STATE
08-01 00:11:53.111  5348  5348 E MTPRx   : check value of boot_completed is1
08-01 00:11:53.121  5348  5348 E MTPRx   : Sd-Card path/storage/7B0B-13FC
08-01 00:11:53.121  5348  5348 E MTPRx   : Status for mount/Unmount :mounted
08-01 00:11:53.121  5348  5348 E MTPRx   : SDcard is  available
08-01 00:11:53.131  5348  5348 E MTPRx   : check booting is completed_sys.boot_completed
08-01 00:11:53.131  5348  5348 E MTPRx   : Sd-Card path/storage/7B0B-13FC
08-01 00:11:53.131  5348  5348 E MTPRx   : Status for mount/Unmount :mounted
08-01 00:11:53.131  5348  5348 E MTPRx   : SDcard is  available
08-01 00:11:53.131  5348  5348 E MTPRx   : Received USB_STATE with sdCardLaunch = 0
08-01 00:11:53.131  5348  5348 E MTPRx   : configured is false
08-01 00:11:53.361  5348  5348 E MTPRx   : In MtpReceiverandroid.hardware.usb.action.USB_STATE
08-01 00:11:53.361  5348  5348 E MTPRx   : check value of boot_completed is1
08-01 00:11:53.361  5348  5348 E MTPRx   : check booting is completed_sys.boot_completed
08-01 00:11:53.371  5348  5348 E MTPRx   : Sd-Card path/storage/7B0B-13FC
08-01 00:11:53.371  5348  5348 E MTPRx   : Status for mount/Unmount :mounted
08-01 00:11:53.371  5348  5348 E MTPRx   : SDcard is  available
08-01 00:11:53.371  5348  5348 E MTPRx   : Received USB_STATE with sdCardLaunch = 0
08-01 00:11:53.371  5348  5348 E MTPRx   : mFirstTime: false
08-01 00:11:53.371  5348  5348 E MTPJNIInterface: Getting CryptionKey from JAVA
08-01 00:11:53.381  5348  5348 E MTPRx   : currentUserId is 0
08-01 00:11:53.381  5348  5348 E MTPRx   : mtpCurrentGlobalUserId is 0
08-01 00:11:53.381  5348  5348 E MTPRx   : Start observing USB_STATE_MATCH
08-01 00:11:53.381  5348  5348 E MTPRx   : usbMode is 0200
08-01 00:11:53.381  5348  5348 E MTPRx   : This is not guid
08-01 00:11:53.391  2969  3762 E ENGMODE : Failed to enable UD-Mode(lecagy)
08-01 00:11:53.391  2969  3762 E ENGMODE : Failed to parse stored token(-6)
08-01 00:11:53.391  2969  3762 E ENGMODE : the req mode is not allowed (-6)
08-01 00:11:53.391  5348  5348 E MTPRx   : skip to display MTP popup.
08-01 00:11:53.391  5348  5348 E MTPRx   : is_Privatemode is NOT 1
08-01 00:11:53.401  5348  5348 E MTPRx   : Sending NORMAL_BOOT to stack
08-01 00:11:53.401  5348  5348 E MTPJNIInterface: noti = 17
08-01 00:11:53.411  5348  5348 E MTPRx   : User is personal
08-01 00:11:53.411  5348  5348 E MTPRx   : sending MTP_ICON_ENABLED to stack
08-01 00:11:53.421  5348  5348 E MTPRx   : else part ... so first time!!!
08-01 00:11:53.421  5348  5348 E MTPPlaObsrvr: inside setContext()
08-01 00:11:53.421  5348  5348 E MTPPlaObsrvr: Inside registerContentObserver
08-01 00:11:53.421  5348  5365 E MTPPlaObsrvr:  inside createplafiles
08-01 00:11:53.421  5348  5348 E MtpAdbObserver: inside setContext()
08-01 00:11:53.421  5348  5348 E MtpAdbObserver: Inside registerContentObserver
08-01 00:11:53.431  5348  5365 E MTPPlaObsrvr: playlist count is0
08-01 00:11:53.431  5348  5365 E MTPPlaObsrvr:  inside try branch createplafiles
08-01 00:11:53.431  5348  5365 E MTPPlaObsrvr:  inside deleteing plas createplafiles
08-01 00:11:53.431  5348  5348 E MtpService: onCreate.
08-01 00:11:53.431  5348  5348 E MtpService: < MTP > Registering BroadCast receiver :::::
08-01 00:11:53.441  5348  5348 E MtpService: < MTP > Registering BroadCast registerBroadCastPolicyRec :::::
08-01 00:11:53.451  5348  5348 E MtpService: < MTP > Registering BroadCast registerBroadCastEmergencyRec :::::
08-01 00:11:53.451  5348  5348 E MtpService: onStartCommand.
08-01 00:11:53.451  5348  5348 E MTPJNIInterface: < MTP > Registering BroadCast receiver :::::
08-01 00:11:53.451  5348  5366 E MtpService: handleMessage. msg= { when=-1ms what=0 arg1=1 obj=Intent { cmp=com.samsung.android.MtpApplication/.MtpService VirtualScreenParam=Params{mDisplayId=-1, null, mFlags=0x00000000)} } target=com.samsung.android.MtpApplication.MtpService$ServiceHandler }
08-01 00:11:53.461  5348  5348 E MTPJNIInterface: < MTP > Registering BroadCast receiver :::::::
08-01 00:11:53.461  5348  5348 E MTPJNIInterface: noti = 10
08-01 00:11:53.461  5348  5348 E MTPRx   : Checking the driver time out
08-01 00:11:53.461  5348  5348 E MTPJNIInterface: noti = 2
08-01 00:11:53.461  5348  5348 E MTPRx   : called native method
08-01 00:11:53.461  5348  5348 E MTPJNIInterface: setting Media scanner status0
08-01 00:11:53.461  5348  5348 E MTPJNIInterface: After setting Media scanner status0
08-01 00:11:53.461  5348  5369 E         : Unable to get Object Class and clearing cls 2 [int check_media_scanner_status() 594]
08-01 00:11:53.461  5348  5348 E MtpService: onStartCommand.
08-01 00:11:53.461  5348  5369 E MTPJNIInterface: Getting media scanner status0
08-01 00:11:53.461  5348  5369 E MTPJNIInterface: DeviceName is Null in System
08-01 00:11:53.461  5348  5369 E MTPJNIInterface: DeviceName is Galaxy A5 (2017)
08-01 00:11:53.461  5348  5369 E         : memcpy failed [memCpy 111]
08-01 00:11:53.471  5348  5366 E MtpService: handleMessage. msg= { when=-4ms what=0 arg1=2 obj=Intent { cmp=com.samsung.android.MtpApplication/.MtpService VirtualScreenParam=Params{mDisplayId=-1, null, mFlags=0x00000000)} } target=com.samsung.android.MtpApplication.MtpService$ServiceHandler }
08-01 00:11:53.471  4450  4450 E MtpServerJNI: could not open MTP driver, errno: 2
08-01 00:11:53.471  4450  4450 E MtpServerJNI: server is null in add_storage
08-01 00:11:53.471  4450  4450 E MtpServerJNI: server is null in add_storage
08-01 00:11:53.471  4450  5370 E MtpServerJNI: server is null in run
08-01 00:11:53.471  4450  5370 E MtpServerJNI: server is null in cleanup
08-01 00:11:53.471  4450  4450 E MtpServerJNI: server is null in send_object_removed
08-01 00:11:53.481  5348  5369 E MTPJNIInterface: Status for mount/Unmount :mounted
08-01 00:11:53.481  5348  5369 E MTPJNIInterface: SDcard is  available
08-01 00:11:53.481  5348  5369 E         : lstat failed! errno [13] [Permission denied] [mtp_ifind_next 452]
08-01 00:11:53.481  5348  5369 E MTPJNIInterface: Status for mount/Unmount :unknown
08-01 00:11:53.481  5348  5369 E MTPJNIInterface: SDcard is not available
08-01 00:11:53.481  5348  5369 E MTPJNIInterface: Status for mount/Unmount :unknown
08-01 00:11:53.481  5348  5369 E MTPJNIInterface: SDcard is not available
08-01 00:11:53.481  5348  5369 E MTPJNIInterface: Status for mount/Unmount :unknown
08-01 00:11:53.481  5348  5369 E MTPJNIInterface: SDcard is not available
08-01 00:11:53.481  5348  5369 E MTPJNIInterface: Status for mount/Unmount :mounted
08-01 00:11:53.481  5348  5369 E MTPJNIInterface: SDcard is  available
08-01 00:11:53.481  5348  5369 E SQLiteLog: (21) API call with NULL database connection pointer
08-01 00:11:53.481  5348  5369 E SQLiteLog: (21) misuse at line 107973 of [2ef4f3a5b1]
08-01 00:11:53.481  5348  5369 E SQLiteLog: (21) API call with NULL database connection pointer
08-01 00:11:53.481  5348  5369 E SQLiteLog: (21) misuse at line 103022 of [2ef4f3a5b1]
08-01 00:11:53.481  5348  5369 E SQLiteLog: (21) API call with NULL database connection pointer
08-01 00:11:53.481  5348  5369 E SQLiteLog: (21) misuse at line 103022 of [2ef4f3a5b1]
08-01 00:11:53.481  5348  5369 E SQLiteLog: (21) API call with NULL database connection pointer
08-01 00:11:53.481  5348  5369 E SQLiteLog: (21) misuse at line 107973 of [2ef4f3a5b1]
08-01 00:11:53.491  5348  5371 E         : [mtp_init_device 746]  After open the MTP fd = 25 and line = 746...
08-01 00:11:53.491  5348  5371 E         :  [sua_support_present:1338] returning false
08-01 00:11:53.491  5348  5348 E MTPRx   : Open session has come  remove the  Message false
08-01 00:11:53.491  5348  5348 E MTPRx   : This is not guid
08-01 00:11:53.491  5348  5348 E MTPJNIInterface: noti = 13
08-01 00:11:53.491  5348  5348 E MTPRx   : in startDBupdate
08-01 00:11:53.501  5348  5372 E SQLiteLog: (1) no such table: system
08-01 00:11:53.501  5348  5372 E SQLiteLog: (1) no such table: global
08-01 00:11:53.501  5348  5372 E MTPJNIInterface: Value of device_name is Galaxy A5 (2017)
08-01 00:11:53.521  5348  5376 E MtpMediaDBManager: count : 260
08-01 00:11:53.531  5348  5372 E         : mtp_get_storage_ids_mtp_handle : START !!
08-01 00:11:53.551  5348  5376 E MTPJNIInterface: noti = 29
08-01 00:11:56.071  5377  5377 E AffinityControl: AffinityControl: registerfunction enter
08-01 00:11:57.181  5395  5395 E AffinityControl: AffinityControl: registerfunction enter
08-01 00:11:57.201  2969  4196 E ActivityManager: getPackageFromAppProcesses, return null
08-01 00:11:57.421  5395  5395 E Pm      : Failure details: Bundle[{android.content.pm.extra.STATUS=1, android.content.pm.extra.PACKAGE_NAME=com.koushikdutta.vysor, android.content.pm.extra.LEGACY_STATUS=-1, android.content.pm.extra.STATUS_MESSAGE=DELETE_FAILED_INTERNAL_ERROR}]
08-01 00:11:58.801  5413  5413 E AffinityControl: AffinityControl: registerfunction enter
08-01 00:11:58.831  5422  5422 E Zygote  : v2
08-01 00:11:58.831  5422  5422 E Zygote  : accessInfo : 0
08-01 00:11:58.831  5422  5422 E libpersona: scanKnoxPersonas
08-01 00:11:58.831  5422  5422 E libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
08-01 00:11:58.831  5422  5422 E libpersona: scanManagedProfiles
08-01 00:11:58.831  5422  5422 E libpersona: scanKnoxPersonas
08-01 00:11:58.831  5422  5422 E libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
08-01 00:11:58.831  5422  5422 E libpersona: scanManagedProfiles
08-01 00:11:58.921  5422  5434 E NativeLibraryHelper: Failed to load assets verifier: 0
08-01 00:11:58.931  5422  5433 E NativeLibraryHelper: Failed to load assets verifier: 0
08-01 00:12:01.371  2969  3120 E NativeLibraryHelper: Failed to load assets verifier: 0
08-01 00:12:01.601  2969  3120 E NativeLibraryHelper: Failed to load assets verifier: 0
08-01 00:12:01.601  2466  2466 E installd: Couldn't opendir /data/app/vmdl199842113.tmp/oat/arm: No such file or directory
08-01 00:12:02.231  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 2ms lastUpdatedAfter : 10407 ms mFlush_time_threasold : 2000 mCurrentSize : 303
08-01 00:12:05.471  2969  3120 E SecureStorageService: Process failed status=0x0200
08-01 00:12:05.771  5455  5455 E Zygote  : v2
08-01 00:12:05.771  5455  5455 E Zygote  : accessInfo : 0
08-01 00:12:05.851  2969  2969 E SDAgentPackageStateReceiver: Not going to handle 'com.koushikdutta.vysor'!
08-01 00:12:05.971  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 2ms lastUpdatedAfter : 3734 ms mFlush_time_threasold : 2000 mCurrentSize : 454
08-01 00:12:05.981  5455  5455 E AASAservice-TokenRule: parseToken() : TokenFile is null
08-01 00:12:05.981  5455  5455 E AASAservice-UpdateReceiver: AASAUpdateReceiver : myrule is null.
08-01 00:12:05.981  2969  3056 E MARsDBManager: insertPackage com.koushikdutta.vysor uri = content://com.samsung.android.sm/AppFreezer/305
08-01 00:12:06.011  5473  5473 E Zygote  : v2
08-01 00:12:06.011  5473  5473 E Zygote  : accessInfo : 0
08-01 00:12:06.011 10815 10815 E Launcher.Model: onPackageAdded :com.koushikdutta.vysor
08-01 00:12:06.091  5485  5485 E Zygote  : v2
08-01 00:12:06.101  5485  5485 E Zygote  : accessInfo : 0
08-01 00:12:06.181  5497  5497 E Zygote  : v2
08-01 00:12:06.191  5497  5497 E Zygote  : accessInfo : 0
08-01 00:12:06.561  5521  5521 E Zygote  : v2
08-01 00:12:06.571  5521  5521 E Zygote  : accessInfo : 0
08-01 00:12:06.641  5535  5535 E Zygote  : v2
08-01 00:12:06.641  5535  5535 E Zygote  : accessInfo : 0
08-01 00:12:06.721  5550  5550 E Zygote  : v2
08-01 00:12:06.721  5550  5550 E Zygote  : accessInfo : 0
08-01 00:12:06.901  5571  5571 E Zygote  : v2
08-01 00:12:06.901  5571  5571 E Zygote  : accessInfo : 0
08-01 00:12:06.971  5550  5569 E [SC]SCLOUD_ERR-CommonUtil: getCertificateSHA1Fingerprint err :com.samsung.android.scloud.backupsamplecode
08-01 00:12:06.971  5550  5569 E [SC]SCLOUD_ERR-ModelManager: loadExternalModelsFromPkg pkg:com.samsung.android.scloud.backupsamplecode   ex:COM.SAMSUNG.ANDROID.SCLOUD.BACKUPSAMPLECODE
08-01 00:12:06.971  5584  5584 E Zygote  : v2
08-01 00:12:06.971  5584  5584 E Zygote  : accessInfo : 0
08-01 00:12:07.131  5602  5602 E Zygote  : v2
08-01 00:12:07.131  5602  5602 E Zygote  : accessInfo : 0
08-01 00:12:07.271  5584  5620 E ActivityThread: Failed to find provider info for com.facebook.appmanager.oxygen.nekodirect.progress
08-01 00:12:07.481  2598  2598 E Finsky  : [1] com.google.android.finsky.wear.bl.a(3): onConnectionFailed: ConnectionResult{statusCode=API_UNAVAILABLE, resolution=null, message=null}
08-01 00:12:07.491  5633  5633 E Zygote  : v2
08-01 00:12:07.491  5633  5633 E Zygote  : accessInfo : 0
08-01 00:12:07.581  2969  3756 E PackageManager: Failed to generatePackageInfoFromSettingsLPw, There isn't package setting object for
08-01 00:12:07.581  2969  2979 E PackageManager: Failed to generatePackageInfoFromSettingsLPw, There isn't package setting object for
08-01 00:12:07.701  5662  5662 E Zygote  : v2
08-01 00:12:07.701  5662  5662 E Zygote  : isSdpEnabledProcess - SDP enabled
08-01 00:12:07.701  5662  5662 E Zygote  : accessInfo : 64
08-01 00:12:07.701  5662  5662 E Zygote  : isSdpEnabledProcess - SDP enabled
08-01 00:12:07.701  5662  5662 E Zygote  : setSDPgroupsIntarray[pid]: 0 / [gid]: 10126 / [uid]: 10126
08-01 00:12:07.771  5662  5662 E ReflectField: Incorrect type : Fallback exception
08-01 00:12:07.781  5662  5662 E ReflectMethod: Cannot load method: getBoolean [class java.lang.String]
08-01 00:12:07.781  5662  5662 E ReflectMethod: Cannot load method: getBoolean [class java.lang.String, boolean]
08-01 00:12:07.781  5662  5662 E ReflectMethod: Cannot load method: getBoolean [class java.lang.String]
08-01 00:12:07.841  5677  5677 E Zygote  : v2
08-01 00:12:07.841  5677  5677 E Zygote  : accessInfo : 0
08-01 00:12:07.901  2969  4198 E PackageManager: Failed to generatePackageInfoFromSettingsLPw, There isn't package setting object for
08-01 00:12:07.911  2969  4271 E PackageManager: Failed to generatePackageInfoFromSettingsLPw, There isn't package setting object for
08-01 00:12:08.011  5697  5697 E Zygote  : v2
08-01 00:12:08.011  5697  5697 E Zygote  : accessInfo : 0
08-01 00:12:08.081 21186 21233 E Publisher: ProcessDatabaseInternal start
08-01 00:12:08.081 21186 21233 E Publisher: ProcessDatabaseInternal start
08-01 00:12:08.291  5697  5715 E linker  : "/system/bin/app_process32": ignoring 2-entry DT_PREINIT_ARRAY in shared library!
08-01 00:12:08.791  5749  5749 E Zygote  : v2
08-01 00:12:08.791  5749  5749 E Zygote  : accessInfo : 0
08-01 00:12:08.841  2969  4271 E PackageManager: Failed to generatePackageInfoFromSettingsLPw, There isn't package setting object for
08-01 00:12:08.841  2969  4198 E PackageManager: Failed to generatePackageInfoFromSettingsLPw, There isn't package setting object for
08-01 00:12:11.871  2969  3795 E Watchdog: !@Sync 483 [07-31 20:12:11.873]
08-01 00:12:13.321  5697  5794 E SingleFileAttributeStore.cpp: Could not read data from the disk
08-01 00:12:13.481  5811  5811 E Zygote  : v2
08-01 00:12:13.481  5811  5811 E Zygote  : accessInfo : 0
08-01 00:12:23.601  2455  2960 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'LABEL' not found
08-01 00:12:28.191  5170  5170 E AccessibilityManager: assistantMenuUpdate invoking from manager:
08-01 00:12:28.381  5170  5170 E AccessibilityManager: assistantMenuUpdate invoking from manager:
08-01 00:12:28.381  5170  5170 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:12:28.561  5170  5170 E AccessibilityManager: assistantMenuUpdate invoking from manager:
08-01 00:12:28.591 10815 10815 E Qmage   : isQIO : stream is not a QIO file
08-01 00:12:28.621 10815 10815 E Qmage   : isQIO : stream is not a QIO file
08-01 00:12:28.631 10815 10815 E Qmage   : isQIO : stream is not a QIO file
08-01 00:12:28.821 10815 10815 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:12:28.851 10815 10815 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:12:28.851 10815 10815 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:12:28.851 10815 10815 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:12:28.851 10815 10815 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:12:28.851 10815 10815 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:12:28.851 10815 10815 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:12:28.851 10815 10815 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:12:28.851 10815 10815 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:12:28.851 10815 10815 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:12:28.871 31722 31722 E PBSessionCacheImpl: sessionId[139516332952992903] not persisted.
08-01 00:12:29.821 31722  5139 E AudioRecord-JNI: Error -4 during AudioRecord native read
08-01 00:12:29.841  2463  2463 E audio_hw_primary: adev_close_input_stream, set jack_in to null
08-01 00:12:41.871  2969  3795 E Watchdog: !@Sync 484 [07-31 20:12:41.875]
08-01 00:13:02.261  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 5ms lastUpdatedAfter : 56296 ms mFlush_time_threasold : 2000 mCurrentSize : 303
08-01 00:13:08.091 21186 21212 E SQLiteCastStore: End saving paired guest mode devices
08-01 00:13:09.141  2455  2960 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'LABEL' not found
08-01 00:13:11.871  2969  3795 E Watchdog: !@Sync 485 [07-31 20:13:11.877]
08-01 00:13:22.931  5865  5865 E Zygote  : v2
08-01 00:13:22.941  5865  5865 E Zygote  : accessInfo : 0
08-01 00:13:29.201  2455  2960 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'LABEL' not found
08-01 00:13:31.011  2455  2960 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'LABEL' not found
08-01 00:13:32.531  5865  5910 E AndroidRuntime: FATAL EXCEPTION: Thread-6857
08-01 00:13:32.531  5865  5910 E AndroidRuntime: Process: appinventor.ai_j777fontaine.MonEntretien, PID: 5865
08-01 00:13:32.531  5865  5910 E AndroidRuntime: java.lang.OutOfMemoryError: Failed to allocate a 19353612 byte allocation with 16385488 free bytes and 15MB until OOM
08-01 00:13:32.531  5865  5910 E AndroidRuntime:        at dalvik.system.VMRuntime.newNonMovableArray(Native Method)
08-01 00:13:32.531  5865  5910 E AndroidRuntime:        at android.graphics.Bitmap.nativeCreate(Native Method)
08-01 00:13:32.531  5865  5910 E AndroidRuntime:        at android.graphics.Bitmap.createBitmap(Bitmap.java:975)
08-01 00:13:32.531  5865  5910 E AndroidRuntime:        at android.graphics.Bitmap.createBitmap(Bitmap.java:946)
08-01 00:13:32.531  5865  5910 E AndroidRuntime:        at android.graphics.Bitmap.createBitmap(Bitmap.java:877)
08-01 00:13:32.531  5865  5910 E AndroidRuntime:        at android.graphics.Bitmap.createScaledBitmap(Bitmap.java:753)
08-01 00:13:32.531  5865  5910 E AndroidRuntime:        at com.google.appinventor.components.runtime.util.MediaUtil$2.run(MediaUtil.java:476)
08-01 00:13:32.531  5865  5910 E AndroidRuntime:        at java.lang.Thread.run(Thread.java:818)
08-01 00:13:32.541  2969  5912 E android.os.Debug: ro.product_ship = true
08-01 00:13:32.541  2969  5912 E android.os.Debug: ro.debug_level = 0x4f4c
08-01 00:13:32.541  2969  5912 E android.os.Debug: sys.mobilecare.preload = false
08-01 00:13:32.551  5913  5913 E Zygote  : v2
08-01 00:13:32.551  5913  5913 E Zygote  : accessInfo : 0
08-01 00:13:41.871  2969  3795 E Watchdog: !@Sync 486 [07-31 20:13:41.878]
08-01 00:13:46.411  2969  3016 E ViewRootImpl: sendUserActionEvent() mView == null
08-01 00:13:46.451  2969  3316 E InputDispatcher: channel ~ Channel is unrecoverably broken and will be disposed!
08-01 00:13:46.451  2969  3316 E InputDispatcher: channel ~ Channel is unrecoverably broken and will be disposed!
08-01 00:13:46.471  5935  5935 E Zygote  : v2
08-01 00:13:46.471  5935  5935 E Zygote  : accessInfo : 0
08-01 00:13:50.641  2455  2960 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'LABEL' not found
08-01 00:14:02.381  3643  3674 E ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 4ms lastUpdatedAfter : 60113 ms mFlush_time_threasold : 2000 mCurrentSize : 303
08-01 00:14:10.131  5935  5935 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:10.131  5935  5935 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:10.131  5935  5935 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:10.131  5935  5935 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:10.131  5935  5935 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:10.131  5935  5935 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:10.551  5935  5935 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:10.551  5935  5935 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:10.551  5935  5935 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:10.551  5935  5935 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:10.551  5935  5935 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:10.551  5935  5935 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:10.551  5935  5935 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:10.551  5935  5935 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:10.551  5935  5935 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:11.871  2969  3795 E Watchdog: !@Sync 487 [07-31 20:14:11.879]
08-01 00:14:20.561 10815 10815 E Qmage   : isQIO : stream is not a QIO file
08-01 00:14:20.591 10815 10815 E Qmage   : isQIO : stream is not a QIO file
08-01 00:14:20.591 10815 10815 E Qmage   : isQIO : stream is not a QIO file
08-01 00:14:20.641 10815 10815 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:20.641 10815 10815 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:20.641 10815 10815 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:20.641 10815 10815 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:20.641 10815 10815 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:20.641 10815 10815 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:20.641 10815 10815 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:20.641 10815 10815 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:20.641 10815 10815 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:20.641 10815 10815 E ViewRootImpl: mStopped=false mHasWindowFocus=false mPausedForTransition=false
08-01 00:14:23.091 31722 31722 E PBSessionCacheImpl: sessionId[139516332952992903] not persisted.</spoiler>

JeremSpy

unread,
Jul 31, 2017, 4:24:05 PM7/31/17
to MIT App Inventor Forum
this is a mistake most people make when using arrangements as "virtual screens": They set different image components with their images loaded but hidden, instead of having only one image component and changing the picture according to the user's selection or app events

That's not a bad advice, I'll try this, thanks a lot!

Taifun

unread,
Jul 31, 2017, 6:02:37 PM7/31/17
to MIT App Inventor Forum
07-31 23:58:16.051  3521  3981 E AndroidRuntime: java.lang.OutOfMemoryError: Failed to allocate a 9972732 byte allocation with 8991200 free bytes and 8MB until OOM

here is your Out of Memory error...
Taifun

JeremSpy

unread,
Jul 31, 2017, 6:14:57 PM7/31/17
to MIT App Inventor Forum
I'm so dumb.. files in my project folders are the original pics, going to resize all of them, sorry for wasting your time (in fact not, I've learn a lot, thanks).

Regards.

Abraham Getzler

unread,
Aug 1, 2017, 11:18:22 AM8/1/17
to MIT App Inventor Forum

Italo

unread,
Aug 1, 2017, 12:36:01 PM8/1/17
to mitappinv...@googlegroups.com
Thanks Abraham. I hope it helps more people to understand why their apps keeps failing even after reducing the file size of their images.
Reply all
Reply to author
Forward
0 new messages