Closed smclinden closed 2 years ago
1) The spec file for Python 10 has to be changed due to pyinstaller not accepting the - - noconsole argument anymore. It has to be placed in the spec file.
If you could share your spec file please do.
2) Check the source file. Not sure how Acquire presents the data. As an FYI the tool will not look into a zip inside a zip or a tar inside a tar. The tool should be able to get to the data (paths) from the root of the container (zip) file.
3) The reason for the no files found log entry is because the tool is looking where the data is not. See #2.
4) Might sound stupid but it has happened before. Make sure you use ALEAPP for Android extractions and iLEAPP for iOS extractions.
On Sun, Jul 10, 2022, 10:41 AM Sean McLinden @.***> wrote:
I've been having issues building aleappGUI on Windows 11 Developer Preview with Python 3.10.
I had to rebuild the .spec files because the GitHub versions didn't parse properly.
Then when I ran the GUI from the dist directory, it couldn't find python310.dll even though it was in the PATH. So I copied it from the Program Files folder into the aleapp.GUI dist folder
This time it worked but the output was a bunch of lines like the following:
No files found for firefox -> /data/data/org.mozilla.firefox/files/places.sqlite
The images were zip files aquired using Magnet Acquire.
Suggestions are appreciated.
— Reply to this email directly, view it on GitHub https://github.com/abrignoni/ALEAPP/issues/260, or unsubscribe https://github.com/notifications/unsubscribe-auth/AG3DPCZI4EQ4QCXR7HBKO23VTLOK7ANCNFSM53FDYNBQ . You are receiving this because you are subscribed to this thread.Message ID: @.***>
aleappGUI.spec
# -*- mode: python ; coding: utf-8 -*-
block_cipher = None
a = Analysis(
['aleappGUI.py'],
pathex=[],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False,
)
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
exe = EXE(
pyz,
a.scripts,
[],
exclude_binaries=True,
name='aleappGUI',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=True,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)
coll = COLLECT(
exe,
a.binaries,
a.zipfiles,
a.datas,
strip=False,
upx=True,
upx_exclude=[],
name='aleappGUI',
)
And aleapp.spec
# -*- mode: python ; coding: utf-8 -*-
block_cipher = None
a = Analysis(
['aleapp.py'],
pathex=[],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False,
)
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='aleapp',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)
It might be the console= argument
Also, the log from Magnet Acquire ("Walter" is a fake name):
2022-05-22 12:22:35 Info: Magnet ACQUIRE v2.51.0.29844
2022-05-22 12:22:35 Info: Operating System Version: 6.2.9200.0
2022-05-22 12:22:35 Info: Operating System Platform: Win32NT
2022-05-22 12:22:35 Info: Service Pack:
2022-05-22 12:22:35 Info: 64-Bit Operating System: True
2022-05-22 12:22:35 Info: 64-Bit Process: True
2022-05-22 12:22:35 Info: CLR Version: 4.0.30319.42000
2022-05-22 12:22:35 Info: Working Set: 202649600
2022-05-22 12:22:42 Warn: An exception was caught querying devices with plugin 'Magnet.Imager.Devices.Plugins.Android.Detection.Twrp.Plugin'.
System.InvalidOperationException: Cannot process request because the process (12860) has exited.
at System.Diagnostics.Process.GetProcessHandle(Int32 access, Boolean throwIfExited)
at System.Diagnostics.Process.OpenProcessHandle(Int32 access)
at System.Diagnostics.Process.get_Handle()
at Magnet.AdbWrapper.AdbServiceProcessManager.CreateOrLeaseService()
at Magnet.Imager.Devices.Plugins.Android.Detection.Twrp.TwrpDeviceFinder.GetDevices(ICancellationToken token)
at Magnet.Imager.Application.Devices.ParallelDeviceQuerier.<>c__DisplayClass4_1.<GetDevices>b__4()
2022-05-22 13:10:14 Info: Pulling live data from device ''...
2022-05-22 13:10:28 Info: Dumping system service 'DockObserver' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\DockObserver.txt'.
2022-05-22 13:10:28 Info: No data for dump of system service 'HMDEnterpriseService'.
2022-05-22 13:10:28 Info: Dumping system service 'SurfaceFlinger' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\SurfaceFlinger.txt'.
2022-05-22 13:10:28 Info: Dumping system service 'accessibility' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\accessibility.txt'.
2022-05-22 13:10:28 Info: Dumping system service 'account' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\account.txt'.
2022-05-22 13:10:28 Info: Dumping system service 'activity' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\activity.txt'.
2022-05-22 13:10:29 Info: No data for dump of system service 'activity_task'.
2022-05-22 13:10:29 Info: Dumping system service 'adb' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\adb.txt'.
2022-05-22 13:10:29 Info: Dumping system service 'alarm' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\alarm.txt'.
2022-05-22 13:10:29 Info: Dumping system service 'android.hardware.light.ILights/default' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\android.hardware.light.ILights/default.txt'.
2022-05-22 13:10:29 Warn: An exception was caught writing live data 'dumpsys android.hardware.light.ILights/default' for device 'PT99652EA1222400797'.
System.IO.DirectoryNotFoundException: Could not find a part of the path 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\android.hardware.light.ILights\default.txt'.
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
at System.IO.StreamWriter.CreateFile(String path, Boolean append, Boolean checkHost)
at System.IO.StreamWriter..ctor(String path, Boolean append, Encoding encoding, Int32 bufferSize, Boolean checkHost)
at System.IO.StreamWriter..ctor(String path, Boolean append, Encoding encoding)
at System.IO.File.WriteAllLines(String path, IEnumerable`1 contents)
at Magnet.Imager.Imaging.Plugins.Android.Quick.Actions.DumpsysDataPuller.PullData(IAndroidQuickImagerStepContext context, String liveDataFolder, IAndroidDebugBridge androidDebugBridge)
2022-05-22 13:10:29 Info: Dumping system service 'android.hardware.power.IPower/default' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\android.hardware.power.IPower/default.txt'.
2022-05-22 13:10:29 Warn: An exception was caught writing live data 'dumpsys android.hardware.power.IPower/default' for device ''.
System.IO.DirectoryNotFoundException: Could not find a part of the path 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\android.hardware.power.IPower\default.txt'.
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
at System.IO.StreamWriter.CreateFile(String path, Boolean append, Boolean checkHost)
at System.IO.StreamWriter..ctor(String path, Boolean append, Encoding encoding, Int32 bufferSize, Boolean checkHost)
at System.IO.StreamWriter..ctor(String path, Boolean append, Encoding encoding)
at System.IO.File.WriteAllLines(String path, IEnumerable`1 contents)
at Magnet.Imager.Imaging.Plugins.Android.Quick.Actions.DumpsysDataPuller.PullData(IAndroidQuickImagerStepContext context, String liveDataFolder, IAndroidDebugBridge androidDebugBridge)
2022-05-22 13:10:29 Info: Dumping system service 'android.hardware.vibrator.IVibrator/default' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\android.hardware.vibrator.IVibrator/default.txt'.
2022-05-22 13:10:29 Warn: An exception was caught writing live data 'dumpsys android.hardware.vibrator.IVibrator/default' for device 'PT99652EA1222400797'.
System.IO.DirectoryNotFoundException: Could not find a part of the path 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\android.hardware.vibrator.IVibrator\default.txt'.
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
at System.IO.StreamWriter.CreateFile(String path, Boolean append, Boolean checkHost)
at System.IO.StreamWriter..ctor(String path, Boolean append, Encoding encoding, Int32 bufferSize, Boolean checkHost)
at System.IO.StreamWriter..ctor(String path, Boolean append, Encoding encoding)
at System.IO.File.WriteAllLines(String path, IEnumerable`1 contents)
at Magnet.Imager.Imaging.Plugins.Android.Quick.Actions.DumpsysDataPuller.PullData(IAndroidQuickImagerStepContext context, String liveDataFolder, IAndroidDebugBridge androidDebugBridge)
2022-05-22 13:10:29 Info: Dumping system service 'android.os.UpdateEngineService' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\android.os.UpdateEngineService.txt'.
2022-05-22 13:10:29 Info: No data for dump of system service 'android.security.identity'.
2022-05-22 13:10:29 Info: No data for dump of system service 'android.security.keystore'.
2022-05-22 13:10:29 Info: No data for dump of system service 'anrmanager'.
2022-05-22 13:10:29 Info: Dumping system service 'app_binding' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\app_binding.txt'.
2022-05-22 13:10:30 Info: No data for dump of system service 'app_integrity'.
2022-05-22 13:10:30 Info: No data for dump of system service 'app_prediction'.
2022-05-22 13:10:30 Info: Dumping system service 'appops' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\appops.txt'.
2022-05-22 13:10:30 Info: Dumping system service 'appwidget' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\appwidget.txt'.
2022-05-22 13:10:30 Info: Dumping system service 'audio' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\audio.txt'.
2022-05-22 13:10:30 Info: No data for dump of system service 'auth'.
2022-05-22 13:10:30 Info: No data for dump of system service 'autoboot'.
2022-05-22 13:10:30 Info: Dumping system service 'autofill' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\autofill.txt'.
2022-05-22 13:10:31 Info: Dumping system service 'backup' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\backup.txt'.
2022-05-22 13:10:31 Info: Dumping system service 'battery' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\battery.txt'.
2022-05-22 13:10:31 Info: No data for dump of system service 'batteryproperties'.
2022-05-22 13:10:31 Info: Dumping system service 'batterystats' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\batterystats.txt'.
2022-05-22 13:10:31 Info: Dumping system service 'binder_calls_stats' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\binder_calls_stats.txt'.
2022-05-22 13:10:31 Info: No data for dump of system service 'biometric'.
2022-05-22 13:10:32 Info: Dumping system service 'blob_store' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\blob_store.txt'.
2022-05-22 13:10:32 Info: Dumping system service 'bluetooth_manager' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\bluetooth_manager.txt'.
2022-05-22 13:10:32 Info: No data for dump of system service 'bugreport'.
2022-05-22 13:10:32 Info: Dumping system service 'cacheinfo' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\cacheinfo.txt'.
2022-05-22 13:10:33 Info: Dumping system service 'carrier_config' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\carrier_config.txt'.
2022-05-22 13:10:33 Info: No data for dump of system service 'clipboard'.
2022-05-22 13:10:33 Info: Dumping system service 'color_display' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\color_display.txt'.
2022-05-22 13:10:33 Info: No data for dump of system service 'com.wos.android.face.IFaceDaemon'.
2022-05-22 13:10:33 Info: No data for dump of system service 'companiondevice'.
2022-05-22 13:10:33 Info: Dumping system service 'connectivity' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\connectivity.txt'.
2022-05-22 13:10:33 Info: Dumping system service 'connmetrics' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\connmetrics.txt'.
2022-05-22 13:10:33 Info: No data for dump of system service 'consumer_ir'.
2022-05-22 13:10:33 Info: Dumping system service 'content' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\content.txt'.
2022-05-22 13:10:34 Info: No data for dump of system service 'country_detector'.
2022-05-22 13:10:34 Info: Dumping system service 'cpuinfo' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\cpuinfo.txt'.
2022-05-22 13:10:34 Info: No data for dump of system service 'crossprofileapps'.
2022-05-22 13:10:34 Info: No data for dump of system service 'dataloader_manager'.
2022-05-22 13:10:35 Info: Dumping system service 'dbinfo' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\dbinfo.txt'.
2022-05-22 13:10:36 Info: No data for dump of system service 'device_config'.
2022-05-22 13:10:36 Info: No data for dump of system service 'device_identifiers'.
2022-05-22 13:10:36 Info: Dumping system service 'device_policy' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\device_policy.txt'.
2022-05-22 13:10:36 Info: Dumping system service 'deviceidle' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\deviceidle.txt'.
2022-05-22 13:10:36 Info: Dumping system service 'devicestoragemonitor' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\devicestoragemonitor.txt'.
2022-05-22 13:10:36 Info: Dumping system service 'diskstats' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\diskstats.txt'.
2022-05-22 13:10:36 Info: Dumping system service 'display' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\display.txt'.
2022-05-22 13:10:36 Info: Dumping system service 'dreams' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\dreams.txt'.
2022-05-22 13:10:36 Info: No data for dump of system service 'drm.drmManager'.
2022-05-22 13:10:37 Info: Dumping system service 'dropbox' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\dropbox.txt'.
2022-05-22 13:10:37 Info: No data for dump of system service 'dynamic_system'.
2022-05-22 13:10:37 Info: Dumping system service 'emergency_affordance' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\emergency_affordance.txt'.
2022-05-22 13:10:37 Info: Dumping system service 'ethernet' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\ethernet.txt'.
2022-05-22 13:10:37 Info: No data for dump of system service 'external_vibrator_service'.
2022-05-22 13:10:37 Info: No data for dump of system service 'file_integrity'.
2022-05-22 13:10:37 Info: Dumping system service 'fingerprint' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\fingerprint.txt'.
2022-05-22 13:10:37 Info: Dumping system service 'gfxinfo' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\gfxinfo.txt'.
2022-05-22 13:10:38 Info: Dumping system service 'gpu' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\gpu.txt'.
2022-05-22 13:10:39 Info: Dumping system service 'graphicsstats' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\graphicsstats.txt'.
2022-05-22 13:10:39 Info: Dumping system service 'hardware_properties' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\hardware_properties.txt'.
2022-05-22 13:10:39 Info: No data for dump of system service 'imms'.
2022-05-22 13:10:39 Info: No data for dump of system service 'imtksms'.
2022-05-22 13:10:39 Info: Dumping system service 'incidentcompanion' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\incidentcompanion.txt'.
2022-05-22 13:10:39 Info: Dumping system service 'incremental' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\incremental.txt'.
2022-05-22 13:10:39 Info: Dumping system service 'input' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\input.txt'.
2022-05-22 13:10:40 Info: Dumping system service 'input_method' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\input_method.txt'.
2022-05-22 13:10:40 Info: No data for dump of system service 'inputflinger'.
2022-05-22 13:10:40 Info: No data for dump of system service 'ions'.
2022-05-22 13:10:40 Info: No data for dump of system service 'iphonesubinfo'.
2022-05-22 13:10:41 Info: No data for dump of system service 'iphonesubinfoEx'.
2022-05-22 13:10:41 Info: Dumping system service 'ipsec' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\ipsec.txt'.
2022-05-22 13:10:41 Info: Dumping system service 'isms' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\isms.txt'.
2022-05-22 13:10:41 Info: Dumping system service 'isub' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\isub.txt'.
2022-05-22 13:10:41 Info: No data for dump of system service 'isubstub'.
2022-05-22 13:10:41 Info: Dumping system service 'jobscheduler' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\jobscheduler.txt'.
2022-05-22 13:10:42 Info: No data for dump of system service 'launcherapps'.
2022-05-22 13:10:42 Info: Dumping system service 'lights' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\lights.txt'.
2022-05-22 13:10:42 Info: Dumping system service 'location' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\location.txt'.
2022-05-22 13:10:42 Info: Dumping system service 'lock_settings' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\lock_settings.txt'.
2022-05-22 13:10:42 Info: Dumping system service 'looper_stats' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\looper_stats.txt'.
2022-05-22 13:10:42 Info: Dumping system service 'manager' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\manager.txt'.
2022-05-22 13:10:42 Info: No data for dump of system service 'media.VTS'.
2022-05-22 13:10:42 Info: Dumping system service 'media.audio_flinger' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.audio_flinger.txt'.
2022-05-22 13:10:42 Info: Dumping system service 'media.audio_policy' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.audio_policy.txt'.
2022-05-22 13:10:43 Info: Dumping system service 'media.camera' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.camera.txt'.
2022-05-22 13:10:43 Info: No data for dump of system service 'media.camera.proxy'.
2022-05-22 13:10:43 Info: Dumping system service 'media.extractor' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.extractor.txt'.
2022-05-22 13:10:43 Info: Dumping system service 'media.metrics' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.metrics.txt'.
2022-05-22 13:10:43 Info: Dumping system service 'media.player' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.player.txt'.
2022-05-22 13:10:43 Info: Dumping system service 'media.resource_manager' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.resource_manager.txt'.
2022-05-22 13:10:44 Info: Dumping system service 'media_projection' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media_projection.txt'.
2022-05-22 13:10:44 Info: No data for dump of system service 'media_resource_monitor'.
2022-05-22 13:10:44 Info: Dumping system service 'media_router' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media_router.txt'.
2022-05-22 13:10:44 Info: Dumping system service 'media_session' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media_session.txt'.
2022-05-22 13:10:49 Info: Dumping system service 'meminfo' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\meminfo.txt'.
2022-05-22 13:10:49 Info: Dumping system service 'midi' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\midi.txt'.
2022-05-22 13:10:49 Info: Dumping system service 'mount' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\mount.txt'.
2022-05-22 13:10:50 Info: No data for dump of system service 'mtkIms'.
2022-05-22 13:10:50 Info: No data for dump of system service 'mtk_telecom'.
2022-05-22 13:10:50 Info: No data for dump of system service 'mtkconnmetrics'.
2022-05-22 13:10:50 Info: No data for dump of system service 'mtksimphonebook'.
2022-05-22 13:10:50 Info: No data for dump of system service 'mwis'.
2022-05-22 13:10:50 Info: No data for dump of system service 'netd_listener'.
2022-05-22 13:10:50 Info: Dumping system service 'netpolicy' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\netpolicy.txt'.
2022-05-22 13:10:50 Info: Dumping system service 'netstats' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\netstats.txt'.
2022-05-22 13:10:50 Info: Dumping system service 'network_management' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\network_management.txt'.
2022-05-22 13:10:50 Info: Dumping system service 'network_score' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\network_score.txt'.
2022-05-22 13:10:50 Info: Dumping system service 'network_stack' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\network_stack.txt'.
2022-05-22 13:10:51 Info: Dumping system service 'network_time_update_service' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\network_time_update_service.txt'.
2022-05-22 13:10:51 Info: Dumping system service 'network_watchlist' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\network_watchlist.txt'.
2022-05-22 13:10:51 Info: Dumping system service 'notification' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\notification.txt'.
2022-05-22 13:10:51 Info: No data for dump of system service 'oem_lock'.
2022-05-22 13:10:51 Info: No data for dump of system service 'otadexopt'.
2022-05-22 13:10:51 Info: Dumping system service 'overlay' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\overlay.txt'.
2022-05-22 13:10:54 Info: Dumping system service 'package' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\package.txt'.
2022-05-22 13:10:55 Info: No data for dump of system service 'package_native'.
2022-05-22 13:10:55 Info: No data for dump of system service 'permission'.
2022-05-22 13:10:55 Info: Dumping system service 'permissionmgr' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\permissionmgr.txt'.
2022-05-22 13:10:55 Info: No data for dump of system service 'permrecords'.
2022-05-22 13:10:55 Info: No data for dump of system service 'persistent_data_block'.
2022-05-22 13:10:56 Info: Dumping system service 'phone' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\phone.txt'.
2022-05-22 13:10:56 Info: No data for dump of system service 'phoneEx'.
2022-05-22 13:10:56 Info: Dumping system service 'pinner' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\pinner.txt'.
2022-05-22 13:10:56 Info: Dumping system service 'platform_compat' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\platform_compat.txt'.
2022-05-22 13:10:56 Info: No data for dump of system service 'platform_compat_native'.
2022-05-22 13:10:56 Info: Dumping system service 'power' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\power.txt'.
2022-05-22 13:10:56 Info: No data for dump of system service 'power_hal_mgr_service'.
2022-05-22 13:10:57 Info: Dumping system service 'print' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\print.txt'.
2022-05-22 13:10:57 Info: No data for dump of system service 'processinfo'.
2022-05-22 13:10:58 Info: Dumping system service 'procstats' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\procstats.txt'.
2022-05-22 13:10:58 Info: No data for dump of system service 'recovery'.
2022-05-22 13:10:58 Info: No data for dump of system service 'restrictions'.
2022-05-22 13:10:58 Info: Dumping system service 'role' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\role.txt'.
2022-05-22 13:10:58 Info: Dumping system service 'rollback' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\rollback.txt'.
2022-05-22 13:10:58 Info: Dumping system service 'runtime' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\runtime.txt'.
2022-05-22 13:10:58 Info: No data for dump of system service 'scheduling_policy'.
2022-05-22 13:10:58 Info: Dumping system service 'search' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\search.txt'.
2022-05-22 13:10:58 Info: No data for dump of system service 'search_engine_service'.
2022-05-22 13:10:58 Info: No data for dump of system service 'sec_key_att_app_id_provider'.
2022-05-22 13:10:58 Info: Dumping system service 'secure_element' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\secure_element.txt'.
2022-05-22 13:10:58 Info: No data for dump of system service 'sensor_privacy'.
2022-05-22 13:10:59 Info: Dumping system service 'sensorservice' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\sensorservice.txt'.
2022-05-22 13:10:59 Info: No data for dump of system service 'serial'.
2022-05-22 13:10:59 Info: Dumping system service 'servicediscovery' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\servicediscovery.txt'.
2022-05-22 13:10:59 Info: Dumping system service 'settings' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\settings.txt'.
2022-05-22 13:10:59 Info: Dumping system service 'shortcut' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\shortcut.txt'.
2022-05-22 13:10:59 Info: No data for dump of system service 'simphonebook'.
2022-05-22 13:10:59 Info: No data for dump of system service 'slice'.
2022-05-22 13:10:59 Info: No data for dump of system service 'soundtrigger'.
2022-05-22 13:10:59 Info: Dumping system service 'soundtrigger_middleware' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\soundtrigger_middleware.txt'.
2022-05-22 13:10:59 Info: Dumping system service 'stats' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\stats.txt'.
2022-05-22 13:10:59 Info: Dumping system service 'statscompanion' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\statscompanion.txt'.
2022-05-22 13:11:00 Info: No data for dump of system service 'statsmanager'.
2022-05-22 13:11:00 Info: Dumping system service 'statusbar' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\statusbar.txt'.
2022-05-22 13:11:00 Info: Dumping system service 'storaged' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\storaged.txt'.
2022-05-22 13:11:00 Info: No data for dump of system service 'storaged_pri'.
2022-05-22 13:11:00 Info: No data for dump of system service 'storagestats'.
2022-05-22 13:11:00 Info: No data for dump of system service 'system_config'.
2022-05-22 13:11:00 Info: No data for dump of system service 'system_update'.
2022-05-22 13:11:00 Info: Dumping system service 'telecom' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\telecom.txt'.
2022-05-22 13:11:00 Info: No data for dump of system service 'telephony.mtkregistry'.
2022-05-22 13:11:00 Info: Dumping system service 'telephony.registry' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\telephony.registry.txt'.
2022-05-22 13:11:01 Info: No data for dump of system service 'telephony_ims'.
2022-05-22 13:11:01 Info: No data for dump of system service 'testharness'.
2022-05-22 13:11:01 Info: Dumping system service 'tethering' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\tethering.txt'.
2022-05-22 13:11:01 Info: Dumping system service 'textclassification' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\textclassification.txt'.
2022-05-22 13:11:01 Info: Dumping system service 'textservices' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\textservices.txt'.
2022-05-22 13:11:01 Info: Dumping system service 'thermalservice' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\thermalservice.txt'.
2022-05-22 13:11:01 Info: Dumping system service 'time_detector' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\time_detector.txt'.
2022-05-22 13:11:01 Info: Dumping system service 'time_zone_detector' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\time_zone_detector.txt'.
2022-05-22 13:11:01 Info: Dumping system service 'trust' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\trust.txt'.
2022-05-22 13:11:01 Info: Dumping system service 'uimode' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\uimode.txt'.
2022-05-22 13:11:02 Info: Dumping system service 'updatelock' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\updatelock.txt'.
2022-05-22 13:11:02 Info: No data for dump of system service 'uri_grants'.
2022-05-22 13:11:02 Info: Dumping system service 'usagestats' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\usagestats.txt'.
2022-05-22 13:11:02 Info: Dumping system service 'usb' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\usb.txt'.
2022-05-22 13:11:02 Info: Dumping system service 'user' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\user.txt'.
2022-05-22 13:11:02 Info: Dumping system service 'vibrator' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\vibrator.txt'.
2022-05-22 13:11:03 Info: Dumping system service 'voiceinteraction' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\voiceinteraction.txt'.
2022-05-22 13:11:03 Info: No data for dump of system service 'vow_bridge'.
2022-05-22 13:11:03 Info: Dumping system service 'wallpaper' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wallpaper.txt'.
2022-05-22 13:11:03 Info: Dumping system service 'webviewupdate' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\webviewupdate.txt'.
2022-05-22 13:11:03 Info: Dumping system service 'wifi' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wifi.txt'.
2022-05-22 13:11:03 Info: Dumping system service 'wifinl80211' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wifinl80211.txt'.
2022-05-22 13:11:03 Info: Dumping system service 'wifip2p' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wifip2p.txt'.
2022-05-22 13:11:04 Info: Dumping system service 'wifiscanner' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wifiscanner.txt'.
2022-05-22 13:11:04 Info: Dumping system service 'window' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\window.txt'.
2022-05-22 13:11:04 Info: Dumping system service 'wos.face' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wos.face.txt'.
2022-05-22 13:11:04 Info: Finished pulling live data from device
'2022-05-22 13:11:04 Info: Finished pulling live data from device ''.
2022-05-22 13:11:04 Info: The device '' has device encryption turned on and requires a password. 'mag123' will be used for the backup password.
2022-05-22 13:11:04 Info: Uninstalling ACQUIRE agent from device ''...
2022-05-22 13:11:13 Info: Unable to uninstall ACQUIRE agent from device ''.
2022-05-22 13:11:04 Info: The device '' has device encryption turned on and requires a password. 'mag123' will be used for the backup password.
2022-05-22 13:11:04 Info: Uninstalling ACQUIRE agent from device ''...
2022-05-22 13:11:13 Info: Unable to uninstall ACQUIRE agent from device ''.
System.InvalidOperationException: The package 'com.magnetforensics.acquire' could not be uninstalled.
Parsed Result:Unknown
Failure [DELETE_FAILED_INTERNAL_ERROR]
2022-05-22 13:11:13 Info: Could not uninstall previous agent from ''. An exception here does not necessarily mean a concern.
System.InvalidOperationException: The package 'com.magnetforensics.acquire' could not be uninstalled.
Parsed Result:Unknown
Failure [DELETE_FAILED_INTERNAL_ERROR]
at Magnet.Imager.Imaging.Plugins.Android.Quick.Actions.UninstallPreviousAgentAction.Execute(IAndroidQuickImagerStepContext context)
2022-05-22 13:11:13 Info: Deploying ACQUIRE Agent to device ''.
2022-05-22 13:11:24 Info: ACQUIRE Agent successfully installed on device ''.
2022-05-22 13:11:26 Info: Waiting for device '' to be unlocked.
2022-05-22 13:11:34 Info: User confirmed device is unlocked.
2022-05-22 13:11:34 Info: Startin.
2022-05-22 13:11:40 Info: Backing up device '97' using ADB 'Adb7'...
2022-05-22 13:11:40 Info: Creating backup of device '' v11 at 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\backup.ab' with KeyValue flag.
2022-05-22 13:15:06 Info: Created backup of device '\' at 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\backup.ab'.
2022-05-22 13:15:06 Info: Extracting backup file 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\backup.ab' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\adb-data.tar'.
2022-05-22 13:15:06 Error: The backup created from device '' at 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\backup.ab' could not be extracted. Keeping original backup file.
System.Security.Cryptography.CryptographicException: A decryptor stream could not be created for the provided parameters.
at Magnet.AndroidBackupExtractor.CryptoStreamFactory.CreateCryptoStream(Stream inputStream, String password, Int32 androidBackupVersion)
at Magnet.AndroidBackupExtractor.AndroidBackupExtractor.Extract(Stream inputStream, Stream outStream, String password, ILogger logger)
at Magnet.AndroidBackupExtractor.AndroidBackupExtractor.Extract(String pathToAdbBackup, String outputFilePath, String password, ILogger logger)
at Magnet.Imager.Imaging.Plugins.Android.Quick.Backups.AdbBackupManager.Backup(IDevice device, ILogger logger, String outputFolderPath, ICancellationToken cancellationToken, IHelpTextTriggerSource helpTextTriggerSource, String appName, String backupPassword, String desktopBackupPassword)
System.Security.Cryptography.CryptographicException: Password was incorrect or the encryption method was not supported.
at Magnet.AndroidBackupExtractor.AesBytesDecryptor.DecryptBytes(String password, Byte[] salt, Int32 rounds, Byte[] iv, Byte[] data)
at Magnet.AndroidBackupExtractor.CryptoStreamFactory.CreateCryptoStream(Stream inputStream, String password, Int32 androidBackupVersion)
System.Security.Cryptography.CryptographicException: Padding is invalid and cannot be removed.
at System.Security.Cryptography.RijndaelManagedTransform.DecryptData(Byte[] inputBuffer, Int32 inputOffset, Int32 inputCount, Byte[]& outputBuffer, Int32 outputOffset, PaddingMode paddingMode, Boolean fLast)
at System.Security.Cryptography.RijndaelManagedTransform.TransformFinalBlock(Byte[] inputBuffer, Int32 inputOffset, Int32 inputCount)
at System.Security.Cryptography.CryptoStream.FlushFinalBlock()
at System.Security.Cryptography.CryptoStream.Dispose(Boolean disposing)
at System.IO.Stream.Close()
at Magnet.AndroidBackupExtractor.AesBytesDecryptor.AesDecrypt(Byte[] key, Byte[] iv, Byte[] data)
2022-05-22 13:15:06 Info: Waiting for device '' to be unlocked.
2022-05-22 13:25:06 Info: User did not confirmed that the device is unlocked.
2022-05-22 13:25:06 Info: Starting ACQUIRE Agent on device ''.
2022-05-22 13:26:12 Info: Successfully allowed 6 permissions on device ''.
2022-05-22 13:26:12 Info: Waiting for ACQUIRE Agent to finish on device ''.
2022-05-22 13:27:00 Info: Streaming data from device ''.
2022-05-22 13:27:04 Info: Streaming data over port 56052 to destination file 'D:\Walter\Android Image - 2022-05-22 09-08-
2022-05-22 13:31:34 Info: Compressing directory 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\HMD Global Nokia G10 Quick Image.zip'...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\backup.ab...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\adb-data.tar...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\sdcard.tar.gz...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\storage-sdcard0.tar.gz...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\storage-sdcard1.tar.gz...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\usage_stats.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\task_stats.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\wifi_stats.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\device_properties.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\device_datetime_utc.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\DockObserver.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\SurfaceFlinger.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\accessibility.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\account.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\activity.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\adb.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\alarm.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\android.os.UpdateEngineService.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\app_binding.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\appops.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\appwidget.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\audio.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\autofill.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\backup.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\battery.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\batterystats.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\binder_calls_stats.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\blob_store.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\bluetooth_manager.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\cacheinfo.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\carrier_config.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\color_display.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\connectivity.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\connmetrics.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\content.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\cpuinfo.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\dbinfo.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\device_policy.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\deviceidle.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\devicestoragemonitor.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\diskstats.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\display.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\dreams.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\dropbox.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\emergency_affordance.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\ethernet.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\fingerprint.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\gfxinfo.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\gpu.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\graphicsstats.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\hardware_properties.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\incidentcompanion.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\incremental.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\input.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\input_method.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\ipsec.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\isms.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\isub.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\jobscheduler.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\lights.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\location.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\lock_settings.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\looper_stats.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\manager.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.audio_flinger.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.audio_policy.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.camera.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.extractor.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.metrics.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.player.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.resource_manager.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media_projection.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media_router.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media_session.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\meminfo.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\midi.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\mount.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\netpolicy.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\netstats.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\network_management.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\network_score.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\network_stack.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\network_time_update_service.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\network_watchlist.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\notification.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\overlay.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\package.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\permissionmgr.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\phone.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\pinner.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\platform_compat.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\power.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\print.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\procstats.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\role.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\rollback.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\runtime.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\search.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\secure_element.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\sensorservice.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\servicediscovery.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\settings.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\shortcut.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\soundtrigger_middleware.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\stats.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\statscompanion.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\statusbar.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\storaged.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\telecom.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\telephony.registry.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\tethering.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\textclassification.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\textservices.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\thermalservice.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\time_detector.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\time_zone_detector.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\trust.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\uimode.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\updatelock.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\usagestats.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\usb.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\user.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\vibrator.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\voiceinteraction.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wallpaper.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\webviewupdate.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wifi.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wifinl80211.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wifip2p.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wifiscanner.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\window.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wos.face.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\Android AD ID.txt...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\agent_accounts.db...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\contacts3.db-journal...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\agent_accounts.db-journal...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\contacts2.db-journal...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\agent_mmssms.db-journal...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\contacts2.db...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\agent_mmssms.db...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\contacts3.db...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\calendar.db-journal...
2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\calendar.db...
2022-05-22 13:31:34 Debug: saving....
2022-05-22 13:32:38 Info: Compressed directory 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\HMD Global Nokia G10 Quick Image.zip'.
2022-05-22 13:32:38 Info: Compressed acquired data from device '' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\HMD Global Nokia G10 Quick Image.zip'.
2022-05-22 13:32:38 Info: Uninstalling ACQUIRE agent from device ''...
2022-05-22 13:32:59 Info: Logcat dump:
--------- beginning of main
--------- beginning of system
05-22 09:30:28.205 1219 1252 E KernelCpuSpeedReader: Failed to read cpu-freq: /sys/devices/system/cpu/cpu4/cpufreq/stats/time_in_state: open failed: ENOENT (No such file or directory)
05-22 09:30:28.206 1219 1252 E KernelCpuSpeedReader: Failed to read cpu-freq: /sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state: open failed: ENOENT (No such file or directory)
05-22 09:30:28.220 446 446 W Binder:446_1: type=1400 audit(0.0:12657): avc: denied { read } for name="wakeup114" dev="sysfs" ino=36982 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs_batteryinfo:s0 tclass=dir permissive=0
05-22 09:30:28.224 446 446 W Binder:446_1: type=1400 audit(0.0:12658): avc: denied { read } for name="wakeup24" dev="sysfs" ino=30435 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs:s0 tclass=dir permissive=0
05-22 09:30:28.224 446 452 E android.system.suspend@1.0-service: Error opening kernel wakelock stats for: wakeup114: Permission denied
05-22 09:30:28.229 446 452 E android.system.suspend@1.0-service: Error opening kernel wakelock stats for: wakeup24: Permission denied
05-22 09:30:28.268 446 446 W Binder:446_1: type=1400 audit(0.0:12659): avc: denied { read } for name="wakeup113" dev="sysfs" ino=36941 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs_batteryinfo:s0 tclass=dir permissive=0
05-22 09:30:28.270 446 452 E android.system.suspend@1.0-service: Error opening kernel wakelock stats for: wakeup113: Permission denied
05-22 09:30:28.287 1219 1252 E BatteryStatsService: Unable to load Power Hal or power.stats HAL
05-22 09:30:28.950 1219 1336 W BestClock: java.time.DateTimeException: Missing NTP fix
05-22 09:30:28.957 1219 1336 W BestClock: java.time.DateTimeException: Missing NTP fix
05-22 09:30:28.961 1219 1336 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.android.server.action.NETWORK_STATS_UPDATED flg=0x40000000 }
05-22 09:30:28.962 1219 1342 W BestClock: java.time.DateTimeException: Missing NTP fix
05-22 09:30:28.970 1219 1342 W BestClock: java.time.DateTimeException: Missing NTP fix
05-22 09:30:30.134 1219 1336 W BestClock: java.time.DateTimeException: Missing NTP fix
05-22 09:30:30.150 1219 1336 W BestClock: java.time.DateTimeException: Missing NTP fix
05-22 09:30:30.157 1219 1336 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.android.server.action.NETWORK_STATS_UPDATED flg=0x40000000 }
05-22 09:30:30.161 1219 1342 W BestClock: java.time.DateTimeException: Missing NTP fix
05-22 09:30:30.179 1219 1342 W BestClock: java.time.DateTimeException: Missing NTP fix
05-22 09:30:33.078 3965 3965 E droid.apps.doc: Not starting debugger since process cannot load the jdwp agent.
05-22 09:30:33.184 3965 3965 W droid.apps.doc: JIT profile information will not be recorded: profile file does not exist.
05-22 09:30:33.184 3965 3965 W droid.apps.doc: JIT profile information will not be recorded: profile file does not exist.
05-22 09:30:33.300 3965 3965 E libc : Access denied finding property "ro.vendor.pref_scale_resolution"
05-22 09:30:33.421 3965 3989 W droid.apps.doc: Accessing hidden field Ljava/util/Collections$SynchronizedCollection;->mutex:Ljava/lang/Object; (greylist-max-o, reflection, denied)
05-22 09:30:33.422 3965 3989 W droid.apps.doc: Accessing hidden method Ljava/util/Collections$SynchronizedSet;-><init>(Ljava/util/Set;Ljava/lang/Object;)V (greylist-max-o, reflection, denied)
05-22 09:30:33.422 3965 3989 W droid.apps.doc: Accessing hidden method Ljava/util/Collections$SynchronizedCollection;-><init>(Ljava/util/Collection;Ljava/lang/Object;)V (greylist-max-o, reflection, denied)
05-22 09:30:33.513 3965 4001 W OneGoogleAccountLoader: [RxCachedThreadScheduler-3] fetchAndroidAccounts using AccountsCentral.
05-22 09:30:33.516 3965 4002 W OneGoogleAccountLoader: [RxCachedThreadScheduler-4] Prepopulate model with accounts from the Android system
05-22 09:30:33.516 3965 4001 W OneGoogleAccountLoader: [RxCachedThreadScheduler-3] fetchAndroidAccounts completed.
05-22 09:30:33.517 3965 4006 W OneGoogleAccountLoader: [RxCachedThreadScheduler-6] fetchAndroidAccounts using AccountsCentral.
05-22 09:30:33.527 3965 4000 W FieldDefinition: [RxCachedThreadScheduler-2] Ignoring isIndexed constraint as field also has uniqueness constraint (on just this field, and therefore SQLite will have to create an index on that. For field: bwx$a@8d31605
05-22 09:30:33.530 3965 4006 W OneGoogleAccountLoader: [RxCachedThreadScheduler-6] fetchAndroidAccounts completed.
05-22 09:30:33.584 3965 4020 W DynamiteModule: Local module descriptor class for com.google.android.gms.googlecertificates not found.
05-22 09:30:33.585 8243 11263 W VerdictProvider: response is invalid [3] [CONTEXT service_id=257 ]
05-22 09:30:33.608 8243 7810 E AuthPII : [GoogleAccountDataServiceImpl] getToken() -> NETWORK_ERROR. App: com.google.android.apps.docs, Service: ^^_account_id_^^
05-22 09:30:33.608 8243 7810 E AuthPII : Message is Error when calling server.
05-22 09:30:33.620 8243 7810 W Auth : [AccountStateSyncher] Unable to look up account state from server: Unable to query account state [CONTEXT service_id=153 ]
05-22 09:30:33.620 8243 7810 W Auth : [GaiaIdSync] Empty email or accountId. [CONTEXT service_id=153 ]
05-22 09:30:33.646 1219 3288 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.internal.mobdog (has extras) }
05-22 09:30:33.647 1219 2020 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.mobileutilities (has extras) }
05-22 09:30:33.650 3965 4005 E NotificationAccessor: Cannot delete notification channel. Channel not found.
05-22 09:30:33.654 3965 4005 E NotificationAccessor: Cannot delete notification channel. Channel not found.
05-22 09:30:33.655 3965 4005 E NotificationAccessor: Cannot delete notification channel. Channel not found.
05-22 09:30:33.660 3965 4033 E FirebaseInstanceId: Failed to get FIS auth token
05-22 09:30:33.660 3965 4033 E FirebaseInstanceId: java.util.concurrent.ExecutionException: lod: Firebase Installations Service is unavailable. Please try again later.
05-22 09:30:33.660 3965 4033 E FirebaseInstanceId: at hbj.aL(PG:3)
05-22 09:30:33.660 3965 4033 E FirebaseInstanceId: at hbj.D(PG:10)
05-22 09:30:33.660 3965 4033 E FirebaseInstanceId: at muk.k(PG:17)
05-22 09:30:33.660 3965 4033 E FirebaseInstanceId: at lnn.a(PG:23)
05-22 09:30:33.660 3965 4033 E FirebaseInstanceId: at gro.run(PG:115)
05-22 09:30:33.660 3965 4033 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
05-22 09:30:33.660 3965 4033 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
05-22 09:30:33.660 3965 4033 E FirebaseInstanceId: at bmj.run(PG:10)
05-22 09:30:33.660 3965 4033 E FirebaseInstanceId: at java.lang.Thread.run(Thread.java:923)
05-22 09:30:33.660 3965 4033 E FirebaseInstanceId: Caused by: lod: Firebase Installations Service is unavailable. Please try again later.
05-22 09:30:33.660 3965 4033 E FirebaseInstanceId: at loo.c(PG:41)
05-22 09:30:33.660 3965 4033 E FirebaseInstanceId: at lnz.run(PG:34)
05-22 09:30:33.660 3965 4033 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
05-22 09:30:33.660 3965 4033 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
05-22 09:30:33.660 3965 4033 E FirebaseInstanceId: ... 1 more
05-22 09:30:33.681 1219 3288 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.internal.mobdog (has extras) }
05-22 09:30:33.683 1219 3288 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.mobileutilities (has extras) }
05-22 09:30:33.713 3965 4033 E FirebaseInstanceId: Failed to get FIS auth token
05-22 09:30:33.713 3965 4033 E FirebaseInstanceId: java.util.concurrent.ExecutionException: lod: Firebase Installations Service is unavailable. Please try again later.
05-22 09:30:33.713 3965 4033 E FirebaseInstanceId: at hbj.aL(PG:3)
05-22 09:30:33.713 3965 4033 E FirebaseInstanceId: at hbj.D(PG:10)
05-22 09:30:33.713 3965 4033 E FirebaseInstanceId: at muk.k(PG:17)
05-22 09:30:33.713 3965 4033 E FirebaseInstanceId: at lnn.a(PG:23)
05-22 09:30:33.713 3965 4033 E FirebaseInstanceId: at gro.run(PG:115)
05-22 09:30:33.713 3965 4033 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
05-22 09:30:33.713 3965 4033 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
05-22 09:30:33.713 3965 4033 E FirebaseInstanceId: at bmj.run(PG:10)
05-22 09:30:33.713 3965 4033 E FirebaseInstanceId: at java.lang.Thread.run(Thread.java:923)
05-22 09:30:33.713 3965 4033 E FirebaseInstanceId: Caused by: lod: Firebase Installations Service is unavailable. Please try again later.
05-22 09:30:33.713 3965 4033 E FirebaseInstanceId: at loo.c(PG:41)
05-22 09:30:33.713 3965 4033 E FirebaseInstanceId: at lnz.run(PG:34)
05-22 09:30:33.713 3965 4033 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
05-22 09:30:33.713 3965 4033 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
05-22 09:30:33.713 3965 4033 E FirebaseInstanceId: ... 1 more
05-22 09:30:33.714 3965 4029 E GnpSdk : [ScheduledTaskServiceHandler] Job finished with TRANSIENT_FAILURE. Job ID: '111001001', key: 'RPC_STORE_TARGET'
05-22 09:30:33.714 3965 4029 E GnpSdk : ime: Registration ID not found.
05-22 09:30:33.714 3965 4029 E GnpSdk : at imf.b(PG:24)
05-22 09:30:33.714 3965 4029 E GnpSdk : at jpt.c(PG:9)
05-22 09:30:33.714 3965 4029 E GnpSdk : at ijv.h(PG:7)
05-22 09:30:33.714 3965 4029 E GnpSdk : at ikn.a(PG:3)
05-22 09:30:33.714 3965 4029 E GnpSdk : at ikl.e(PG:9)
05-22 09:30:33.714 3965 4029 E GnpSdk : at iif.run(PG:1)
05-22 09:30:33.714 3965 4029 E GnpSdk : at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
05-22 09:30:33.714 3965 4029 E GnpSdk : at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
05-22 09:30:33.714 3965 4029 E GnpSdk : at java.lang.Thread.run(Thread.java:923)
05-22 09:30:33.714 3965 4029 E GnpSdk : Caused by: java.io.IOException: SERVICE_NOT_AVAILABLE
05-22 09:30:33.714 3965 4029 E GnpSdk : at lnr.a(PG:12)
05-22 09:30:33.714 3965 4029 E GnpSdk : at gro.run(PG:99)
05-22 09:30:33.714 3965 4029 E GnpSdk : at jz$1.execute(PG:1)
05-22 09:30:33.714 3965 4029 E GnpSdk : at grs.a(PG:5)
05-22 09:30:33.714 3965 4029 E GnpSdk : at mtf.b(PG:5)
05-22 09:30:33.714 3965 4029 E GnpSdk : at gro.run(PG:113)
05-22 09:30:33.714 3965 4029 E GnpSdk : at jz$1.execute(PG:2)
05-22 09:30:33.714 3965 4029 E GnpSdk : at grs.a(PG:5)
05-22 09:30:33.714 3965 4029 E GnpSdk : at mtf.b(PG:5)
05-22 09:30:33.714 3965 4029 E GnpSdk : at aql.handleMessage(PG:12)
05-22 09:30:33.714 3965 4029 E GnpSdk : at android.os.Handler.dispatchMessage(Handler.java:102)
05-22 09:30:33.714 3965 4029 E GnpSdk : at android.os.Looper.loop(Looper.java:223)
05-22 09:30:33.714 3965 4029 E GnpSdk : at android.app.ActivityThread.main(ActivityThread.java:7700)
05-22 09:30:33.714 3965 4029 E GnpSdk : at java.lang.reflect.Method.invoke(Native Method)
05-22 09:30:33.714 3965 4029 E GnpSdk : at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:612)
05-22 09:30:33.714 3965 4029 E GnpSdk : at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:997)
05-22 09:30:33.730 1219 3288 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.internal.mobdog (has extras) }
05-22 09:30:33.733 1219 2704 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.mobileutilities (has extras) }
05-22 09:30:33.734 1219 3578 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.internal.mobdog (has extras) }
05-22 09:30:33.735 1219 2704 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.mobileutilities (has extras) }
05-22 09:30:33.821 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:30:33.828 8243 11263 W VerdictProvider: failed to get decision from server [ddjd{code=UNAVAILABLE, description=Unable to resolve host gmscompliance-pa.googleapis.com, cause=java.lang.RuntimeException: java.net.UnknownHostException: Unable to resolve host "gmscompliance-pa.googleapis.com": No address associated with hostname
05-22 09:30:33.828 8243 11263 W VerdictProvider: at ddol.run(:com.google.android.gms@221514037@22.15.14 (150400-441847897):11)
05-22 09:30:33.828 8243 11263 W VerdictProvider: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
05-22 09:30:33.828 8243 11263 W VerdictProvider: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
05-22 09:30:33.828 8243 11263 W VerdictProvider: at java.lang.Thread.run(Thread.java:923)
05-22 09:30:33.828 8243 11263 W VerdictProvider: Caused by: java.net.UnknownHostException: Unable to resolve host "gmscompliance-pa.googleapis.com": No address associated with hostname
05-22 09:30:33.828 8243 11263 W VerdictProvider: at java.net.Inet6AddressImpl.lookupHostByName(Inet6AddressImpl.java:156)
05-22 09:30:33.828 8243 11263 W VerdictProvider: at java.net.Inet6AddressImpl.lookupAllHostAddr(Inet6AddressImpl.java:103)
05-22 09:30:33.828 8243 11263 W VerdictProvider: at java.net.InetAddress.getAllByName(InetAddress.java:1152)
05-22 09:30:33.828 8243 11263 W VerdictProvider: at ddol.run(:com.google.android.gms@221514037@22.15.14 (150400-441847897):10)
05-22 09:30:33.828 8243 11263 W VerdictProvider: ... 3 more
05-22 09:30:33.828 8243 11263 W VerdictProvider: Caused by: android.system.GaiException: android_getaddrinfo failed: EAI_NODATA (No address associated with hostname)
05-22 09:30:33.828 8243 11263 W VerdictProvider: at libcore.io.Linux.android_getaddrinfo(Native Method)
05-22 09:30:33.828 8243 11263 W VerdictProvider: at libcore.io.ForwardingOs.android_getaddrinfo(ForwardingOs.java:73)
05-22 09:30:33.828 8243 11263 W VerdictProvider: at libcore.io.BlockGuardOs.android_getaddrinfo(BlockGuardOs.java:202)
05-22 09:30:33.828 8243 11263 W VerdictProvider: at libcore.io.ForwardingOs.android_getaddrinfo(ForwardingOs.java:73)
05-22 09:30:33.828 8243 11263 W VerdictProvider: at java.net.Inet6AddressImpl.lookupHostByName(Inet6AddressImpl.java:135)
05-22 09:30:33.828 8243 11263 W VerdictProvider: ... 6 more
05-22 09:30:33.828 8243 11263 W VerdictProvider: }]
05-22 09:30:33.828 8243 11263 W VerdictProvider: [CONTEXT service_id=257 ]
05-22 09:30:33.829 8243 11263 W UdevsVerdict: unable to provide verdict [CONTEXT service_id=257 ]
05-22 09:30:33.868 3965 4020 W droid.apps.doc: Verification of ey ey.g(int, java.lang.Object[]) took 123.744ms (1082.88 bytecodes/s) (4136B approximate peak alloc)
05-22 09:30:33.903 3965 3983 W GmsIpProtection: [Binder:3965_3] Error changing state for com.google.android.apps.docs.sync.syncadapter.DocsSyncAdapterService
05-22 09:30:33.906 3965 3983 W GmsIpProtection: [Binder:3965_3] Error changing state for com.google.android.apps.docs.drive.directsharing.ChooserTargetService
05-22 09:30:33.923 3965 3983 W GmsIpProtection: [Binder:3965_3] Error changing state for com.google.android.apps.docs.editors.shared.documentcreation.WidgetDocumentCreatorActivity
05-22 09:30:33.924 3965 3983 W GmsIpProtection: [Binder:3965_3] Error changing state for com.google.android.apps.docs.editors.shared.documentcreation.ExternalDocumentCreatorActivity
05-22 09:30:33.926 3965 3983 W GmsIpProtection: [Binder:3965_3] Error changing state for com.google.android.apps.docs.editors.shared.widgets.NewDocumentWidgetActivity
05-22 09:30:33.930 3965 3983 W GmsIpProtection: [Binder:3965_3] Error changing state for com.google.android.apps.docs.editors.shared.export.FileContentProvider
05-22 09:30:33.932 3965 3983 W GmsIpProtection: [Binder:3965_3] Error changing state for com.google.android.apps.docs.editors.shared.copypaste.AndroidClipboardContentProvider
05-22 09:30:33.933 3965 3983 W GmsIpProtection: [Binder:3965_3] Error changing state for com.google.android.apps.docs.editors.shared.copypaste.AndroidImageContentProvider
05-22 09:30:33.935 3965 3983 W GmsIpProtection: [Binder:3965_3] Error changing state for com.google.android.apps.docs.editors.shared.inserttool.clipboard.InsertToolClipboardContentProvider
05-22 09:30:33.936 3965 3983 W GmsIpProtection: [Binder:3965_3] Error changing state for com.google.android.apps.docs.editors.shared.inserttool.clipboard.InsertToolImageContentProvider
05-22 09:30:33.939 3965 3983 W GmsIpProtection: [Binder:3965_3] Error changing state for com.google.android.apps.docs.editors.kix.conversion.KixOnlineImportActivity
05-22 09:30:33.941 3965 3983 W GmsIpProtection: [Binder:3965_3] Error changing state for com.google.android.apps.docs.editors.ritz.conversion.RitzOnlineImportActivity
05-22 09:30:33.942 3965 3983 W GmsIpProtection: [Binder:3965_3] Error changing state for com.google.android.apps.docs.editors.punch.conversion.PunchOnlineImportActivity
05-22 09:30:33.978 8243 7810 E AuthPII : [GoogleAccountDataServiceImpl] getToken() -> NETWORK_ERROR. App: com.google.android.apps.docs, Service: oauth2:https://www.googleapis.com/auth/drive https://www.googleapis.com/auth/drive.file https://www.googleapis.com/auth/drive.metadata.readonly https://www.googleapis.com/auth/drive.readonly https://docs.google.com/feeds https://docs.googleusercontent.com https://spreadsheets.google.com/feeds https://www.googleapis.com/auth/activity https://www.googleapis.com/auth/cloudprint https://www.googleapis.com/auth/discussions https://www.googleapis.com/auth/docs https://www.googleapis.com/auth/drive.apps https://www.googleapis.com/auth/drive.categories.readonly https://www.googleapis.com/auth/memento https://www.googleapis.com/auth/notifications https://www.googleapis.com/auth/spreadsheets https://www.googleapis.com/auth/vouchers https://www.googleapis.com/auth/gmail.readonly https://www.googleapis.com/auth/subscriptions https://www.googleapis.com/auth/peopleapi.readonly https://www.googleapis.com/auth/drive.activity.readonly https://www.googleapis.com/auth/peopleapi.readwrite https://www.googleapis.com/auth/cloud_search.query
05-22 09:30:33.978 8243 7810 E AuthPII : Message is Error when calling server.
05-22 09:30:33.978 8243 7810 W GetToken: [GetToken]GetToken failed with status code: NetworkError
05-22 09:30:33.979 3965 4033 E FirebaseInstanceId: Failed to get FIS auth token
05-22 09:30:33.979 3965 4033 E FirebaseInstanceId: java.util.concurrent.ExecutionException: lod: Firebase Installations Service is unavailable. Please try again later.
05-22 09:30:33.979 3965 4033 E FirebaseInstanceId: at hbj.aL(PG:3)
05-22 09:30:33.979 3965 4033 E FirebaseInstanceId: at hbj.D(PG:10)
05-22 09:30:33.979 3965 4033 E FirebaseInstanceId: at muk.k(PG:17)
05-22 09:30:33.979 3965 4033 E FirebaseInstanceId: at lnn.a(PG:23)
05-22 09:30:33.979 3965 4033 E FirebaseInstanceId: at gro.run(PG:115)
05-22 09:30:33.979 3965 4033 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
05-22 09:30:33.979 3965 4033 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
05-22 09:30:33.979 3965 4033 E FirebaseInstanceId: at bmj.run(PG:10)
05-22 09:30:33.979 3965 4033 E FirebaseInstanceId: at java.lang.Thread.run(Thread.java:923)
05-22 09:30:33.979 3965 4033 E FirebaseInstanceId: Caused by: lod: Firebase Installations Service is unavailable. Please try again later.
05-22 09:30:33.979 3965 4033 E FirebaseInstanceId: at loo.c(PG:41)
05-22 09:30:33.979 3965 4033 E FirebaseInstanceId: at lnz.run(PG:34)
05-22 09:30:33.979 3965 4033 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
05-22 09:30:33.979 3965 4033 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
05-22 09:30:33.979 3965 4033 E FirebaseInstanceId: ... 1 more
05-22 09:30:33.983 8243 7810 W GLSActivity: java.io.IOException: NetworkError
05-22 09:30:33.983 8243 7810 W GLSActivity: at ikl.getAuthToken(:com.google.android.gms@221514037@22.15.14 (150400-441847897):32)
05-22 09:30:33.983 8243 7810 W GLSActivity: at android.accounts.AbstractAccountAuthenticator$Transport.getAuthToken(AbstractAccountAuthenticator.java:244)
05-22 09:30:33.983 8243 7810 W GLSActivity: at android.accounts.IAccountAuthenticator$Stub.onTransact(IAccountAuthenticator.java:282)
05-22 09:30:33.983 8243 7810 W GLSActivity: at android.os.Binder.transact(Binder.java:1043)
05-22 09:30:33.983 8243 7810 W GLSActivity: at epr.onTransact(:com.google.android.gms@221514037@22.15.14 (150400-441847897):2)
05-22 09:30:33.983 8243 7810 W GLSActivity: at android.os.Binder.transact(Binder.java:1043)
05-22 09:30:33.983 8243 7810 W GLSActivity: at afvg.onTransact(:com.google.android.gms@221514037@22.15.14 (150400-441847897):17)
05-22 09:30:33.983 8243 7810 W GLSActivity: at android.os.Binder.execTransactInternal(Binder.java:1159)
05-22 09:30:33.983 8243 7810 W GLSActivity: at android.os.Binder.execTransact(Binder.java:1123)
05-22 09:30:33.990 3965 4021 W DriveCore: [io-2] [Service][Jni][user=a94c9644][Authenticator] Failed to fetch token
05-22 09:30:33.990 3965 4021 W DriveCore: java.io.IOException: NetworkError
05-22 09:30:33.990 3965 4021 W DriveCore: at android.accounts.AccountManager.convertErrorToException(AccountManager.java:2501)
05-22 09:30:33.990 3965 4021 W DriveCore: at android.accounts.AccountManager.access$700(AccountManager.java:164)
05-22 09:30:33.990 3965 4021 W DriveCore: at android.accounts.AccountManager$AmsTask$Response.onError(AccountManager.java:2352)
05-22 09:30:33.990 3965 4021 W DriveCore: at android.accounts.IAccountManagerResponse$Stub.onTransact(IAccountManagerResponse.java:107)
05-22 09:30:33.990 3965 4021 W DriveCore: at android.os.Binder.execTransactInternal(Binder.java:1159)
05-22 09:30:33.990 3965 4021 W DriveCore: at android.os.Binder.execTransact(Binder.java:1123)
05-22 09:30:33.999 3965 4068 E GnpSdk : [ScheduledTaskServiceHandler] Job finished with TRANSIENT_FAILURE. Job ID: '111001001', key: 'RPC_STORE_TARGET'
05-22 09:30:33.999 3965 4068 E GnpSdk : ime: Registration ID not found.
05-22 09:30:33.999 3965 4068 E GnpSdk : at imf.b(PG:24)
05-22 09:30:33.999 3965 4068 E GnpSdk : at jpt.c(PG:9)
05-22 09:30:33.999 3965 4068 E GnpSdk : at ijv.h(PG:7)
05-22 09:30:33.999 3965 4068 E GnpSdk : at ikn.a(PG:3)
05-22 09:30:33.999 3965 4068 E GnpSdk : at ikl.e(PG:9)
05-22 09:30:33.999 3965 4068 E GnpSdk : at iif.run(PG:1)
05-22 09:30:33.999 3965 4068 E GnpSdk : at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
05-22 09:30:33.999 3965 4068 E GnpSdk : at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
05-22 09:30:33.999 3965 4068 E GnpSdk : at java.lang.Thread.run(Thread.java:923)
05-22 09:30:33.999 3965 4068 E GnpSdk : Caused by: java.io.IOException: SERVICE_NOT_AVAILABLE
05-22 09:30:33.999 3965 4068 E GnpSdk : at lnr.a(PG:12)
05-22 09:30:33.999 3965 4068 E GnpSdk : at gro.run(PG:99)
05-22 09:30:33.999 3965 4068 E GnpSdk : at jz$1.execute(PG:1)
05-22 09:30:33.999 3965 4068 E GnpSdk : at grs.a(PG:5)
05-22 09:30:33.999 3965 4068 E GnpSdk : at mtf.b(PG:5)
05-22 09:30:33.999 3965 4068 E GnpSdk : at gro.run(PG:113)
05-22 09:30:33.999 3965 4068 E GnpSdk : at jz$1.execute(PG:2)
05-22 09:30:33.999 3965 4068 E GnpSdk : at grs.a(PG:5)
05-22 09:30:33.999 3965 4068 E GnpSdk : at mtf.b(PG:5)
05-22 09:30:33.999 3965 4068 E GnpSdk : at aql.handleMessage(PG:12)
05-22 09:30:33.999 3965 4068 E GnpSdk : at android.os.Handler.dispatchMessage(Handler.java:102)
05-22 09:30:33.999 3965 4068 E GnpSdk : at android.os.Looper.loop(Looper.java:223)
05-22 09:30:33.999 3965 4068 E GnpSdk : at android.app.ActivityThread.main(ActivityThread.java:7700)
05-22 09:30:33.999 3965 4068 E GnpSdk : at java.lang.reflect.Method.invoke(Native Method)
05-22 09:30:33.999 3965 4068 E GnpSdk : at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:612)
05-22 09:30:33.999 3965 4068 E GnpSdk : at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:997)
05-22 09:30:34.362 3965 4002 E CelloDelayUploadFixer: [RxCachedThreadScheduler-4] Cleanup delay upload complete
05-22 09:30:34.545 1219 3579 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.internal.mobdog (has extras) }
05-22 09:30:34.546 1219 3579 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.mobileutilities (has extras) }
05-22 09:30:34.554 1219 3579 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.internal.mobdog (has extras) }
05-22 09:30:34.556 1219 3579 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.mobileutilities (has extras) }
05-22 09:30:34.574 1219 1267 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=android.intent.action.PACKAGE_CHANGED dat=package:com.google.android.apps.docs flg=0x44000000 (has extras) }
05-22 09:30:34.644 1219 1244 E system_server: No package ID 7f found for ID 0x7f080273.
05-22 09:30:34.644 1219 1244 E system_server: No package ID 7f found for ID 0x7f130533.
05-22 09:30:34.644 1219 1244 E system_server: No package ID 7f found for ID 0x7f130533.
05-22 09:30:34.653 1219 1244 E system_server: No package ID 7f found for ID 0x7f08026f.
05-22 09:30:34.654 1219 1244 E system_server: No package ID 7f found for ID 0x7f130531.
05-22 09:30:34.654 1219 1244 E system_server: No package ID 7f found for ID 0x7f130531.
05-22 09:30:34.655 1219 1244 E system_server: No package ID 7f found for ID 0x7f080271.
05-22 09:30:34.655 1219 1244 E system_server: No package ID 7f found for ID 0x7f130532.
05-22 09:30:34.655 1219 1244 E system_server: No package ID 7f found for ID 0x7f130532.
05-22 09:30:34.656 1219 1244 W ShortcutService: Invalid tag 'capability' found at depth 2
05-22 09:30:34.656 1219 1244 E ShortcutService: Ignoring excessive intent tag.
05-22 09:30:34.656 1219 1244 W ShortcutService: Invalid tag 'parameter' found at depth 4
05-22 09:30:34.656 1219 1244 W ShortcutService: Invalid tag 'capability' found at depth 2
05-22 09:30:34.656 1219 1244 W ShortcutService: Invalid tag 'slice' found at depth 3
05-22 09:30:34.657 1219 1244 W ShortcutService: Invalid tag 'url-template' found at depth 4
05-22 09:30:34.663 1743 1743 E PhoneInterfaceManager: [PhoneIntfMgr] getCarrierPackageNamesForIntentAndPhone: No UICC
05-22 09:30:34.664 1743 1743 E PhoneInterfaceManager: [PhoneIntfMgr] getCarrierPackageNamesForIntentAndPhone: No UICC
05-22 09:30:34.673 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:30:34.807 8243 12706 W ChimeraUtils: Module com.google.android.gms.nearby_en has empty metadata display_name_string_id
05-22 09:30:34.813 1219 3579 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.nearby.exposurenotification.service.RESPONSE_COMPLETED pkg=com.google.android.gms (has extras) }
05-22 09:30:34.818 8243 12706 W ChimeraUtils: Module com.google.android.gms.nearby_en has empty metadata display_name_string_id
05-22 09:30:34.822 8243 12706 W ChimeraUtils: Module com.google.android.gms.nearby_en has empty metadata display_name_string_id
05-22 09:30:35.350 1219 1219 W Looper : Slow dispatch took 761ms main h=android.app.ActivityThread$H c=android.app.-$$Lambda$LoadedApk$ReceiverDispatcher$Args$_BumDX2UKsnxLVrE6UJsJZkotuA@a27f50e m=0
05-22 09:30:35.350 1219 1219 W Looper : Slow delivery took 774ms main h=android.app.ActivityThread$H c=android.app.-$$Lambda$LoadedApk$ReceiverDispatcher$Args$_BumDX2UKsnxLVrE6UJsJZkotuA@681cb2f m=0
05-22 09:30:35.447 4097 4097 E ssioncontrolle: Not starting debugger since process cannot load the jdwp agent.
05-22 09:30:35.920 1219 1219 W Looper : Slow dispatch took 522ms main h=android.app.ActivityThread$H c=android.app.-$$Lambda$LoadedApk$ReceiverDispatcher$Args$_BumDX2UKsnxLVrE6UJsJZkotuA@3c50c01 m=0
05-22 09:30:36.114 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:30:36.191 1219 1244 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=android.search.action.SEARCHABLES_CHANGED flg=0x24000000 }
05-22 09:30:36.628 3965 3998 W DynamiteModule: Local module descriptor class for com.google.android.gms.providerinstaller.dynamite not found.
05-22 09:30:36.632 8243 2219 W ProviderHelper: Unknown dynamite feature providerinstaller.dynamite
05-22 09:30:36.636 3965 3998 W ProviderInstaller: Failed to load providerinstaller module: No acceptable module com.google.android.gms.providerinstaller.dynamite found. Local version is 0 and remote version is 0.
05-22 09:30:37.798 3261 3389 W msgr.msys: W[S task_queue_processing]_MCDTaskCoordinatorMaybeScheduleQueueProcessing(191)=>Scheduling queue ranker_task_active_now for reprocessing in 10 seconds
05-22 09:30:37.955 1219 1219 W Looper : Drained
05-22 09:30:38.761 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:30:38.868 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:30:40.592 1219 2704 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.internal.mobdog (has extras) }
05-22 09:30:40.594 1219 2704 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.mobileutilities (has extras) }
05-22 09:30:42.632 19326 3897 E PhFileGroupPop: Failed to add file group
05-22 09:30:42.646 19326 3897 E PhFileGroupPop: Failed to add file group
05-22 09:30:42.651 19326 3897 E PhFileGroupPop: Failed to add file group
05-22 09:30:42.979 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:30:43.632 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:30:43.643 1743 2088 E PhoneInterfaceManager: [PhoneIntfMgr] getIccId: No UICC
05-22 09:30:43.676 1219 2704 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.internal.mobdog (has extras) }
05-22 09:30:43.677 1219 2704 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.mobileutilities (has extras) }
05-22 09:30:43.740 18568 4142 E constellation: [event_manager] Couldn't get GCM token
05-22 09:30:43.740 18568 4142 E constellation: java.io.IOException: SERVICE_NOT_AVAILABLE
05-22 09:30:43.740 18568 4142 E constellation: at ajqj.e(:com.google.android.gms@221514037@22.15.14 (150400-441847897):22)
05-22 09:30:43.740 18568 4142 E constellation: at ajqj.d(:com.google.android.gms@221514037@22.15.14 (150400-441847897):7)
05-22 09:30:43.740 18568 4142 E constellation: at ajqj.c(:com.google.android.gms@221514037@22.15.14 (150400-441847897):0)
05-22 09:30:43.740 18568 4142 E constellation: at com.google.android.gms.constellation.EventManager.a(:com.google.android.gms@221514037@22.15.14 (150400-441847897):3)
05-22 09:30:43.740 18568 4142 E constellation: at com.google.android.gms.constellation.EventManager.b(:com.google.android.gms@221514037@22.15.14 (150400-441847897):5)
05-22 09:30:43.740 18568 4142 E constellation: at com.google.android.gms.constellation.EventManager.onHandleIntent(:com.google.android.gms@221514037@22.15.14 (150400-441847897):25)
05-22 09:30:43.740 18568 4142 E constellation: at com.google.android.chimera.IntentOperation.onHandleIntent(:com.google.android.gms@221514037@22.15.14 (150400-441847897):2)
05-22 09:30:43.740 18568 4142 E constellation: at txl.onHandleIntent(:com.google.android.gms@221514037@22.15.14 (150400-441847897):4)
05-22 09:30:43.740 18568 4142 E constellation: at etc.run(:com.google.android.gms@221514037@22.15.14 (150400-441847897):3)
05-22 09:30:43.740 18568 4142 E constellation: at etb.run(:com.google.android.gms@221514037@22.15.14 (150400-441847897):11)
05-22 09:30:43.740 18568 4142 E constellation: at ccem.run(:com.google.android.gms@221514037@22.15.14 (150400-441847897):2)
05-22 09:30:43.740 18568 4142 E constellation: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
05-22 09:30:43.740 18568 4142 E constellation: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
05-22 09:30:43.740 18568 4142 E constellation: at java.lang.Thread.run(Thread.java:923)
05-22 09:30:43.858 8243 23278 E AuthPII : [GoogleAccountDataServiceImpl] getToken() -> NETWORK_ERROR. App: com.google.android.gms, Service: oauth2:https://www.googleapis.com/auth/numberer
05-22 09:30:43.858 8243 23278 E AuthPII : Message is Error when calling server.
05-22 09:30:43.858 8243 23278 W GetToken: [GetToken]GetToken failed with status code: NetworkError
05-22 09:30:43.865 18568 4142 W constellation: [gaia_util] Account id cannot be obtained for account mwsdroid@gmail.com
05-22 09:30:44.025 1219 2704 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.common.internal.SHARED_PREFERENCES_CHANGED cat=[com.google.android.gms.common.internal.SHARED_PREFERENCES:constellation_prefs] pkg=com.google.android.gms (has extras) }
05-22 09:30:44.046 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:30:44.329 1745 4148 E DG : FSC error [CONTEXT service_id=25 ]
05-22 09:30:44.356 1219 2704 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.common.internal.SHARED_PREFERENCES_CHANGED cat=[com.google.android.gms.common.internal.SHARED_PREFERENCES:constellation_prefs] pkg=com.google.android.gms (has extras) }
05-22 09:30:44.565 18568 4153 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:30:44.592 18568 4142 E constellation: [rpc_manager] GetConsent failed with status: ddjd{code=UNAVAILABLE, description=Unable to resolve host phonedeviceverification-pa.googleapis.com, cause=java.lang.RuntimeException: java.net.UnknownHostException: Unable to resolve host "phonedeviceverification-pa.googleapis.com": No address associated with hostname
05-22 09:30:44.592 18568 4142 E constellation: at ddol.run(:com.google.android.gms@221514037@22.15.14 (150400-441847897):11)
05-22 09:30:44.592 18568 4142 E constellation: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
05-22 09:30:44.592 18568 4142 E constellation: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
05-22 09:30:44.592 18568 4142 E constellation: at java.lang.Thread.run(Thread.java:923)
05-22 09:30:44.592 18568 4142 E constellation: Caused by: java.net.UnknownHostException: Unable to resolve host "phonedeviceverification-pa.googleapis.com": No address associated with hostname
05-22 09:30:44.592 18568 4142 E constellation: at java.net.Inet6AddressImpl.lookupHostByName(Inet6AddressImpl.java:156)
05-22 09:30:44.592 18568 4142 E constellation: at java.net.Inet6AddressImpl.lookupAllHostAddr(Inet6AddressImpl.java:103)
05-22 09:30:44.592 18568 4142 E constellation: at java.net.InetAddress.getAllByName(InetAddress.java:1152)
05-22 09:30:44.592 18568 4142 E constellation: at ddol.run(:com.google.android.gms@221514037@22.15.14 (150400-441847897):10)
05-22 09:30:44.592 18568 4142 E constellation: ... 3 more
05-22 09:30:44.592 18568 4142 E constellation: Caused by: android.system.GaiException: android_getaddrinfo failed: EAI_NODATA (No address associated with hostname)
05-22 09:30:44.592 18568 4142 E constellation: at libcore.io.Linux.android_getaddrinfo(Native Method)
05-22 09:30:44.592 18568 4142 E constellation: at libcore.io.ForwardingOs.android_getaddrinfo(ForwardingOs.java:73)
05-22 09:30:44.592 18568 4142 E constellation: at libcore.io.BlockGuardOs.android_getaddrinfo(BlockGuardOs.java:202)
05-22 09:30:44.592 18568 4142 E constellation: at libcore.io.ForwardingOs.android_getaddrinfo(ForwardingOs.java:73)
05-22 09:30:44.592 18568 4142 E constellation: at java.net.Inet6AddressImpl.lookupHostByName(Inet6AddressImpl.java:135)
05-22 09:30:44.592 18568 4142 E constellation: ... 6 more
05-22 09:30:44.592 18568 4142 E constellation: }
05-22 09:30:44.592 18568 4142 E constellation: Exception:
05-22 09:30:44.600 3898 3933 W DialerVerifiedNumberProvider: com.android.dialer.businessvoice.verifiedcall.impl.constellation.VerifiedNumberProvider.lambda$getConstellationResponse$1:154 Failed to get constellation token.
05-22 09:30:44.600 3898 3933 W DialerVerifiedNumberProvider: lrj: 5002:
05-22 09:30:44.600 3898 3933 W DialerVerifiedNumberProvider: at ltx.a(PG:1)
05-22 09:30:44.600 3898 3933 W DialerVerifiedNumberProvider: at ltx.i(PG:2)
05-22 09:30:44.600 3898 3933 W DialerVerifiedNumberProvider: at lwj.a(Unknown Source:2)
05-22 09:30:44.600 3898 3933 W DialerVerifiedNumberProvider: at lwx.dl(PG:9)
05-22 09:30:44.600 3898 3933 W DialerVerifiedNumberProvider: at lkl.onTransact(PG:4)
05-22 09:30:44.600 3898 3933 W DialerVerifiedNumberProvider: at android.os.Binder.execTransactInternal(Binder.java:1159)
05-22 09:30:44.600 3898 3933 W DialerVerifiedNumberProvider: at android.os.Binder.execTransact(Binder.java:1123)
05-22 09:30:44.613 3898 3937 W DialerConstellationSyncWorker: com.android.dialer.businessvoice.control.worker.ConstellationSyncWorker.lambda$syncConstellation$2:110 Constellation api request failed, status code: 5002
05-22 09:30:44.635 1219 2704 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.common.internal.SHARED_PREFERENCES_CHANGED cat=[com.google.android.gms.common.internal.SHARED_PREFERENCES:constellation_prefs] pkg=com.google.android.gms (has extras) }
05-22 09:30:44.658 1219 4032 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.common.internal.SHARED_PREFERENCES_CHANGED cat=[com.google.android.gms.common.internal.SHARED_PREFERENCES:constellation_prefs] pkg=com.google.android.gms (has extras) }
05-22 09:30:44.703 1219 3288 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.common.internal.SHARED_PREFERENCES_CHANGED cat=[com.google.android.gms.common.internal.SHARED_PREFERENCES:constellation_prefs] pkg=com.google.android.gms (has extras) }
05-22 09:30:45.972 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:30:47.882 3261 3389 W msgr.msys: W[S task_queue_processing]_MCDTaskCoordinatorMaybeScheduleQueueProcessing(191)=>Scheduling queue ranker_task_active_now for reprocessing in 10 seconds
05-22 09:30:49.771 1219 1251 E libprocessgroup: set_timerslack_ns write failed: No such process
05-22 09:30:50.288 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:30:44.720 1219 3288 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.common.internal.SHARED_PREFERENCES_CHANGED cat=[com.google.android.gms.common.internal.SHARED_PREFERENCES:constellation_prefs] pkg=com.google.android.gms (has extras) }
05-22 09:30:52.071 3037 3037 W AppComponentFactory: Instantiating com.facebook.push.fcm.GetFcmTokenRegistrarLollipopService
05-22 09:30:55.218 3669 4174 E Washington Post - UALib: RemoteDataJobHandler - Failed to refresh data
05-22 09:30:56.299 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:30:56.856 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:30:57.956 3261 3389 W msgr.msys: W[S task_queue_processing]_MCDTaskCoordinatorMaybeScheduleQueueProcessing(191)=>Scheduling queue ranker_task_active_now for reprocessing in 10 seconds
05-22 09:30:58.049 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:30:58.997 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:31:00.002 1219 1219 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=android.intent.action.TIME_TICK flg=0x50200000 }
05-22 09:31:04.083 3965 4191 E FirebaseInstanceId: Failed to get FIS auth token
05-22 09:31:04.083 3965 4191 E FirebaseInstanceId: java.util.concurrent.ExecutionException: lod: Firebase Installations Service is unavailable. Please try again later.
05-22 09:31:04.083 3965 4191 E FirebaseInstanceId: at hbj.aL(PG:3)
05-22 09:31:04.083 3965 4191 E FirebaseInstanceId: at hbj.D(PG:10)
05-22 09:31:04.083 3965 4191 E FirebaseInstanceId: at muk.k(PG:17)
05-22 09:31:04.083 3965 4191 E FirebaseInstanceId: at lnn.a(PG:23)
05-22 09:31:04.083 3965 4191 E FirebaseInstanceId: at gro.run(PG:115)
05-22 09:31:04.083 3965 4191 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
05-22 09:31:04.083 3965 4191 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
05-22 09:31:04.083 3965 4191 E FirebaseInstanceId: at bmj.run(PG:10)
05-22 09:31:04.083 3965 4191 E FirebaseInstanceId: at java.lang.Thread.run(Thread.java:923)
05-22 09:31:04.083 3965 4191 E FirebaseInstanceId: Caused by: lod: Firebase Installations Service is unavailable. Please try again later.
05-22 09:31:04.083 3965 4191 E FirebaseInstanceId: at loo.c(PG:41)
05-22 09:31:04.083 3965 4191 E FirebaseInstanceId: at lnz.run(PG:34)
05-22 09:31:04.083 3965 4191 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
05-22 09:31:04.083 3965 4191 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
05-22 09:31:04.083 3965 4191 E FirebaseInstanceId: ... 1 more
05-22 09:31:04.105 3965 4190 E GnpSdk : [ScheduledTaskServiceHandler] Job finished with TRANSIENT_FAILURE. Job ID: '111001001', key: 'RPC_STORE_TARGET'
05-22 09:31:04.105 3965 4190 E GnpSdk : ime: Registration ID not found.
05-22 09:31:04.105 3965 4190 E GnpSdk : at imf.b(PG:24)
05-22 09:31:04.105 3965 4190 E GnpSdk : at jpt.c(PG:9)
05-22 09:31:04.105 3965 4190 E GnpSdk : at ijv.h(PG:7)
05-22 09:31:04.105 3965 4190 E GnpSdk : at ikn.a(PG:3)
05-22 09:31:04.105 3965 4190 E GnpSdk : at ikl.e(PG:9)
05-22 09:31:04.105 3965 4190 E GnpSdk : at iif.run(PG:1)
05-22 09:31:04.105 3965 4190 E GnpSdk : at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
05-22 09:31:04.105 3965 4190 E GnpSdk : at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
05-22 09:31:04.105 3965 4190 E GnpSdk : at java.lang.Thread.run(Thread.java:923)
05-22 09:31:04.105 3965 4190 E GnpSdk : Caused by: java.io.IOException: SERVICE_NOT_AVAILABLE
05-22 09:31:04.105 3965 4190 E GnpSdk : at lnr.a(PG:12)
05-22 09:31:04.105 3965 4190 E GnpSdk : at gro.run(PG:99)
05-22 09:31:04.105 3965 4190 E GnpSdk : at jz$1.execute(PG:1)
05-22 09:31:04.105 3965 4190 E GnpSdk : at grs.a(PG:5)
05-22 09:31:04.105 3965 4190 E GnpSdk : at mtf.b(PG:5)
05-22 09:31:04.105 3965 4190 E GnpSdk : at gro.run(PG:113)
05-22 09:31:04.105 3965 4190 E GnpSdk : at jz$1.execute(PG:2)
05-22 09:31:04.105 3965 4190 E GnpSdk : at grs.a(PG:5)
05-22 09:31:04.105 3965 4190 E GnpSdk : at mtf.b(PG:5)
05-22 09:31:04.105 3965 4190 E GnpSdk : at aql.handleMessage(PG:12)
05-22 09:31:04.105 3965 4190 E GnpSdk : at android.os.Handler.dispatchMessage(Handler.java:102)
05-22 09:31:04.105 3965 4190 E GnpSdk : at android.os.Looper.loop(Looper.java:223)
05-22 09:31:04.105 3965 4190 E GnpSdk : at android.app.ActivityThread.main(ActivityThread.java:7700)
05-22 09:31:04.105 3965 4190 E GnpSdk : at java.lang.reflect.Method.invoke(Native Method)
05-22 09:31:04.105 3965 4190 E GnpSdk : at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:612)
05-22 09:31:04.105 3965 4190 E GnpSdk : at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:997)
05-22 09:31:04.896 4205 4205 W busybox : type=1400 audit(0.0:12660): avc: denied { setattr } for name="" dev="pipefs" ino=1336503 scontext=u:r:shell:s0 tcontext=u:r:shell:s0 tclass=fifo_file permissive=0
05-22 09:31:05.418 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:31:08.053 3261 3389 W msgr.msys: W[S task_queue_processing]_MCDTaskCoordinatorMaybeScheduleQueueProcessing(191)=>Scheduling queue ranker_task_active_now for reprocessing in 10 seconds
05-22 09:31:18.147 3261 3389 W msgr.msys: W[S task_queue_processing]_MCDTaskCoordinatorMaybeScheduleQueueProcessing(191)=>Scheduling queue ranker_task_active_now for reprocessing in 10 seconds
05-22 09:31:18.632 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:31:22.670 1132 4215 E FirebaseInstanceId: Failed to get FIS auth token
05-22 09:31:22.670 1132 4215 E FirebaseInstanceId: java.util.concurrent.ExecutionException: aelj: Firebase Installations Service is unavailable. Please try again later.
05-22 09:31:22.670 1132 4215 E FirebaseInstanceId: at mrc.s(PG:5)
05-22 09:31:22.670 1132 4215 E FirebaseInstanceId: at mrc.d(PG:7)
05-22 09:31:22.670 1132 4215 E FirebaseInstanceId: at afco.e(PG:14)
05-22 09:31:22.670 1132 4215 E FirebaseInstanceId: at aekv.a(PG:14)
05-22 09:31:22.670 1132 4215 E FirebaseInstanceId: at mlg.run(PG:35)
05-22 09:31:22.670 1132 4215 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
05-22 09:31:22.670 1132 4215 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
05-22 09:31:22.670 1132 4215 E FirebaseInstanceId: at lyi.run(PG:2)
05-22 09:31:22.670 1132 4215 E FirebaseInstanceId: at java.lang.Thread.run(Thread.java:923)
05-22 09:31:22.670 1132 4215 E FirebaseInstanceId: Caused by: aelj: Firebase Installations Service is unavailable. Please try again later.
05-22 09:31:22.670 1132 4215 E FirebaseInstanceId: at aelu.c(PG:42)
05-22 09:31:22.670 1132 4215 E FirebaseInstanceId: at aelg.run(PG:25)
05-22 09:31:22.670 1132 4215 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
05-22 09:31:22.670 1132 4215 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
05-22 09:31:22.670 1132 4215 E FirebaseInstanceId: ... 1 more
05-22 09:31:22.709 1132 1328 E GnpSdk : [ChimeWorker] Work finished with TRANSIENT_FAILURE. Job key: 'RPC_STORE_TARGET'
05-22 09:31:22.709 1132 1328 E GnpSdk : ose: Registration ID not found.
05-22 09:31:22.709 1132 1328 E GnpSdk : at osg.b(PG:6)
05-22 09:31:22.709 1132 1328 E GnpSdk : at bck.B(PG:7)
05-22 09:31:22.709 1132 1328 E GnpSdk : at oqg.h(PG:8)
05-22 09:31:22.709 1132 1328 E GnpSdk : at oqw.a(PG:6)
05-22 09:31:22.709 1132 1328 E GnpSdk : at oqu.e(PG:8)
05-22 09:31:22.709 1132 1328 E GnpSdk : at com.google.android.libraries.notifications.scheduled.impl.workmanager.ChimeScheduledTaskWorker.i(PG:26)
05-22 09:31:22.709 1132 1328 E GnpSdk : at btb.run(PG:3)
05-22 09:31:22.709 1132 1328 E GnpSdk : at ngt.run(PG:5)
05-22 09:31:22.709 1132 1328 E GnpSdk : at ngx.run(PG:23)
05-22 09:31:22.709 1132 1328 E GnpSdk : at nht.run(PG:129)
05-22 09:31:22.709 1132 1328 E GnpSdk : at mlg.run(PG:12)
05-22 09:31:22.709 1132 1328 E GnpSdk : at com.google.android.apps.youtube.embeddedplayer.service.jar.client.p.run(PG:5)
05-22 09:31:22.709 1132 1328 E GnpSdk : at java.lang.Thread.run(Thread.java:923)
05-22 09:31:22.709 1132 1328 E GnpSdk : Caused by: java.io.IOException: SERVICE_NOT_AVAILABLE
05-22 09:31:22.709 1132 1328 E GnpSdk : at mba.a(PG:11)
05-22 09:31:22.709 1132 1328 E GnpSdk : at mlg.run(PG:45)
05-22 09:31:22.709 1132 1328 E GnpSdk : at lsi.execute(PG:7)
05-22 09:31:22.709 1132 1328 E GnpSdk : at mqb.a(PG:8)
05-22 09:31:22.709 1132 1328 E GnpSdk : at zlb.h(PG:5)
05-22 09:31:22.709 1132 1328 E GnpSdk : at mqm.s(PG:3)
05-22 09:31:22.709 1132 1328 E GnpSdk : at mlg.run(PG:50)
05-22 09:31:22.709 1132 1328 E GnpSdk : at lsi.execute(PG:16)
05-22 09:31:22.709 1132 1328 E GnpSdk : at mqb.a(PG:8)
05-22 09:31:22.709 1132 1328 E GnpSdk : at zlb.h(PG:5)
05-22 09:31:22.709 1132 1328 E GnpSdk : at mqm.s(PG:3)
05-22 09:31:22.709 1132 1328 E GnpSdk : at mqz.c(PG:1)
05-22 09:31:22.709 1132 1328 E GnpSdk : at lse.d(PG:1)
05-22 09:31:22.709 1132 1328 E GnpSdk : at lsg.a(PG:2)
05-22 09:31:22.709 1132 1328 E GnpSdk : at czn.handleMessage(PG:45)
05-22 09:31:22.709 1132 1328 E GnpSdk : at android.os.Handler.dispatchMessage(Handler.java:102)
05-22 09:31:22.709 1132 1328 E GnpSdk : at android.os.Looper.loop(Looper.java:223)
05-22 09:31:22.709 1132 1328 E GnpSdk : at android.app.ActivityThread.main(ActivityThread.java:7700)
05-22 09:31:22.709 1132 1328 E GnpSdk : at java.lang.reflect.Method.invoke(Native Method)
05-22 09:31:22.709 1132 1328 E GnpSdk : at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:612)
05-22 09:31:22.709 1132 1328 E GnpSdk : at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:997)
05-22 09:31:22.888 4227 4227 W busybox : type=1400 audit(0.0:12661): avc: denied { setattr } for name="" dev="pipefs" ino=1333194 scontext=u:r:shell:s0 tcontext=u:r:shell:s0 tclass=fifo_file permissive=0
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: Failed to get FIS auth token
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: java.util.concurrent.ExecutionException: com.google.firebase.installations.FirebaseInstallationsException: Firebase Installations Service is unavailable. Please try again later.
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at com.google.android.gms.tasks.Tasks.zza(SourceFile:5)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at com.google.android.gms.tasks.Tasks.await(SourceFile:8)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at com.google.firebase.messaging.GmsRpc.setDefaultAttributesToBundle(SourceFile:260)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at com.google.firebase.messaging.GmsRpc.startRpc(SourceFile:222)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at com.google.firebase.messaging.GmsRpc.getToken(SourceFile:180)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at com.google.firebase.messaging.FirebaseMessaging.lambda$blockingGetToken$10(SourceFile:605)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at com.google.firebase.messaging.FirebaseMessaging.lambda$blockingGetToken$10$FirebaseMessaging(Unknown Source:0)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at com.google.firebase.messaging.-$$Lambda$FirebaseMessaging$1AYfBMlbEOJoTvXNS_TEZqpK2SY.start(Unknown Source:6)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at com.google.firebase.messaging.RequestDeduplicator.getOrStartGetTokenRequest(SourceFile:67)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at com.google.firebase.messaging.FirebaseMessaging.blockingGetToken(SourceFile:601)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at com.google.firebase.messaging.FirebaseMessaging.lambda$getToken$4(SourceFile:387)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at com.google.firebase.messaging.FirebaseMessaging.lambda$getToken$4$FirebaseMessaging(Unknown Source:0)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at com.google.firebase.messaging.-$$Lambda$FirebaseMessaging$m5Uvt0n8P9zrx-ecASLTQKzoABQ.run(Unknown Source:4)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:462)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at java.util.concurrent.FutureTask.run(FutureTask.java:266)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:301)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at com.google.android.gms.common.util.concurrent.zza.run(SourceFile:2)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at java.lang.Thread.run(Thread.java:923)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: Caused by: com.google.firebase.installations.FirebaseInstallationsException: Firebase Installations Service is unavailable. Please try again later.
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at com.google.firebase.installations.remote.FirebaseInstallationServiceClient.generateAuthToken(SourceFile:447)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at com.google.firebase.installations.FirebaseInstallations.fetchAuthTokenFromServer(SourceFile:563)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at com.google.firebase.installations.FirebaseInstallations.doNetworkCallIfNecessary(SourceFile:387)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at com.google.firebase.installations.FirebaseInstallations.lambda$doRegistrationOrRefresh$2(SourceFile:374)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at com.google.firebase.installations.FirebaseInstallations.lambda$doRegistrationOrRefresh$2$FirebaseInstallations(Unknown Source:0)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at com.google.firebase.installations.-$$Lambda$FirebaseInstallations$VZq1h0TBcWNH8Y5yY86ujrFFyLo.run(Unknown Source:4)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
05-22 09:31:25.008 3669 3716 E FirebaseMessaging: ... 1 more
05-22 09:31:28.150 1219 1219 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=android.intent.action.BATTERY_CHANGED flg=0x60000000 (has extras) }
05-22 09:31:28.217 1219 1252 E KernelCpuSpeedReader: Failed to read cpu-freq: /sys/devices/system/cpu/cpu4/cpufreq/stats/time_in_state: open failed: ENOENT (No such file or directory)
05-22 09:31:28.218 1219 1252 E KernelCpuSpeedReader: Failed to read cpu-freq: /sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state: open failed: ENOENT (No such file or directory)
05-22 09:31:28.232 446 446 W Binder:446_1: type=1400 audit(0.0:12662): avc: denied { read } for name="wakeup114" dev="sysfs" ino=36982 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs_batteryinfo:s0 tclass=dir permissive=0
05-22 09:31:28.233 3261 3389 W msgr.msys: W[S task_queue_processing]_MCDTaskCoordinatorMaybeScheduleQueueProcessing(191)=>Scheduling queue ranker_task_active_now for reprocessing in 10 seconds
05-22 09:31:28.235 446 452 E android.system.suspend@1.0-service: Error opening kernel wakelock stats for: wakeup114: Permission denied
05-22 09:31:28.236 446 446 W Binder:446_1: type=1400 audit(0.0:12663): avc: denied { read } for name="wakeup24" dev="sysfs" ino=30435 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs:s0 tclass=dir permissive=0
05-22 09:31:28.239 446 452 E android.system.suspend@1.0-service: Error opening kernel wakelock stats for: wakeup24: Permission denied
05-22 09:31:28.272 446 446 W Binder:446_1: type=1400 audit(0.0:12664): avc: denied { read } for name="wakeup113" dev="sysfs" ino=36941 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs_batteryinfo:s0 tclass=dir permissive=0
05-22 09:31:28.274 446 452 E android.system.suspend@1.0-service: Error opening kernel wakelock stats for: wakeup113: Permission denied
05-22 09:31:28.288 1219 1252 E BatteryStatsService: Unable to load Power Hal or power.stats HAL
05-22 09:31:32.886 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:31:38.294 3261 3389 W msgr.msys: W[S task_queue_processing]_MCDTaskCoordinatorMaybeScheduleQueueProcessing(191)=>Scheduling queue ranker_task_active_now for reprocessing in 10 seconds
05-22 09:31:38.613 14842 26841 E it.FitbitMobil: Error message: Peripheral device threw error waiting for ready state: C7:61:FA:CD:01:3B cause java.util.concurrent.TimeoutException: The source did not signal an event for 150 seconds and has been terminated.
05-22 09:31:38.614 14842 26841 W ScanningHandler: Cannot start scan as precondition not met with reason: com.fitbit.fbperipheral.connectivity.StartScanChecker$Result$Failed$BluetoothNotEnabled@23c7b30
05-22 09:31:38.742 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:31:39.319 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:31:39.706 14842 15248 E it.FitbitMobil: Error message: Peripheral device threw error waiting for ready state: C7:61:FA:CD:01:3B cause java.util.concurrent.TimeoutException: The source did not signal an event for 150 seconds and has been terminated.
05-22 09:31:39.707 14842 15248 W ScanningHandler: Cannot start scan as precondition not met with reason: com.fitbit.fbperipheral.connectivity.StartScanChecker$Result$Failed$BluetoothNotEnabled@23c7b30
05-22 09:31:43.669 4249 4249 E e.process.gapp: Not starting debugger since process cannot load the jdwp agent.
05-22 09:31:44.010 18568 4248 W SubscribedFeeds: Soft failure: java.net.UnknownHostException: Unable to resolve host "android.clients.google.com": No address associated with hostname [CONTEXT service_id=250 ]
05-22 09:31:44.029 1219 1553 W SyncManager: failed sync operation JobId=109570 ***/com.google u0 [subscribedfeeds] OTHER ExpectedIn=0s Reason=10121 Retries=7, SyncResult: stats [ numIoExceptions: 1]
05-22 09:31:44.053 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:31:45.128 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:31:48.390 3261 3389 W msgr.msys: W[S task_queue_processing]_MCDTaskCoordinatorMaybeScheduleQueueProcessing(191)=>Scheduling queue ranker_task_active_now for reprocessing in 10 seconds
05-22 09:31:48.761 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:31:53.755 395 395 E SELinux : avc: denied { find } for interface=android.hardware.memtrack::IMemtrack sid=u:r:gmscore_app:s0:c512,c768 pid=1745 scontext=u:r:gmscore_app:s0:c512,c768 tcontext=u:object_r:hal_memtrack_hwservice:s0 tclass=hwservice_manager permissive=0
05-22 09:31:53.755 1745 4283 E memtrack: Couldn't load memtrack module
05-22 09:31:58.473 3261 3389 W msgr.msys: W[S task_queue_processing]_MCDTaskCoordinatorMaybeScheduleQueueProcessing(191)=>Scheduling queue ranker_task_active_now for reprocessing in 10 seconds
05-22 09:31:58.882 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:31:59.091 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:31:59.555 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:32:00.002 1219 1219 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=android.intent.action.TIME_TICK flg=0x50200000 }
05-22 09:32:04.159 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:32:04.210 3965 4295 E FirebaseInstanceId: Failed to get FIS auth token
05-22 09:32:04.210 3965 4295 E FirebaseInstanceId: java.util.concurrent.ExecutionException: lod: Firebase Installations Service is unavailable. Please try again later.
05-22 09:32:04.210 3965 4295 E FirebaseInstanceId: at hbj.aL(PG:3)
05-22 09:32:04.210 3965 4295 E FirebaseInstanceId: at hbj.D(PG:10)
05-22 09:32:04.210 3965 4295 E FirebaseInstanceId: at muk.k(PG:17)
05-22 09:32:04.210 3965 4295 E FirebaseInstanceId: at lnn.a(PG:23)
05-22 09:32:04.210 3965 4295 E FirebaseInstanceId: at gro.run(PG:115)
05-22 09:32:04.210 3965 4295 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
05-22 09:32:04.210 3965 4295 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
05-22 09:32:04.210 3965 4295 E FirebaseInstanceId: at bmj.run(PG:10)
05-22 09:32:04.210 3965 4295 E FirebaseInstanceId: at java.lang.Thread.run(Thread.java:923)
05-22 09:32:04.210 3965 4295 E FirebaseInstanceId: Caused by: lod: Firebase Installations Service is unavailable. Please try again later.
05-22 09:32:04.210 3965 4295 E FirebaseInstanceId: at loo.c(PG:41)
05-22 09:32:04.210 3965 4295 E FirebaseInstanceId: at lnz.run(PG:34)
05-22 09:32:04.210 3965 4295 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
05-22 09:32:04.210 3965 4295 E FirebaseInstanceId: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
05-22 09:32:04.210 3965 4295 E FirebaseInstanceId: ... 1 more
05-22 09:32:04.233 3965 4294 E GnpSdk : [ScheduledTaskServiceHandler] Job finished with TRANSIENT_FAILURE. Job ID: '111001001', key: 'RPC_STORE_TARGET'
05-22 09:32:04.233 3965 4294 E GnpSdk : ime: Registration ID not found.
05-22 09:32:04.233 3965 4294 E GnpSdk : at imf.b(PG:24)
05-22 09:32:04.233 3965 4294 E GnpSdk : at jpt.c(PG:9)
05-22 09:32:04.233 3965 4294 E GnpSdk : at ijv.h(PG:7)
05-22 09:32:04.233 3965 4294 E GnpSdk : at ikn.a(PG:3)
05-22 09:32:04.233 3965 4294 E GnpSdk : at ikl.e(PG:9)
05-22 09:32:04.233 3965 4294 E GnpSdk : at iif.run(PG:1)
05-22 09:32:04.233 3965 4294 E GnpSdk : at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
05-22 09:32:04.233 3965 4294 E GnpSdk : at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
05-22 09:32:04.233 3965 4294 E GnpSdk : at java.lang.Thread.run(Thread.java:923)
05-22 09:32:04.233 3965 4294 E GnpSdk : Caused by: java.io.IOException: SERVICE_NOT_AVAILABLE
05-22 09:32:04.233 3965 4294 E GnpSdk : at lnr.a(PG:12)
05-22 09:32:04.233 3965 4294 E GnpSdk : at gro.run(PG:99)
05-22 09:32:04.233 3965 4294 E GnpSdk : at jz$1.execute(PG:1)
05-22 09:32:04.233 3965 4294 E GnpSdk : at grs.a(PG:5)
05-22 09:32:04.233 3965 4294 E GnpSdk : at mtf.b(PG:5)
05-22 09:32:04.233 3965 4294 E GnpSdk : at gro.run(PG:113)
05-22 09:32:04.233 3965 4294 E GnpSdk : at jz$1.execute(PG:2)
05-22 09:32:04.233 3965 4294 E GnpSdk : at grs.a(PG:5)
05-22 09:32:04.233 3965 4294 E GnpSdk : at mtf.b(PG:5)
05-22 09:32:04.233 3965 4294 E GnpSdk : at aql.handleMessage(PG:12)
05-22 09:32:04.233 3965 4294 E GnpSdk : at android.os.Handler.dispatchMessage(Handler.java:102)
05-22 09:32:04.233 3965 4294 E GnpSdk : at android.os.Looper.loop(Looper.java:223)
05-22 09:32:04.233 3965 4294 E GnpSdk : at android.app.ActivityThread.main(ActivityThread.java:7700)
05-22 09:32:04.233 3965 4294 E GnpSdk : at java.lang.reflect.Method.invoke(Native Method)
05-22 09:32:04.233 3965 4294 E GnpSdk : at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:612)
05-22 09:32:04.233 3965 4294 E GnpSdk : at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:997)
05-22 09:32:04.411 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:32:08.555 3261 3389 W msgr.msys: W[S task_queue_processing]_MCDTaskCoordinatorMaybeScheduleQueueProcessing(191)=>Scheduling queue ranker_task_active_now for reprocessing in 10 seconds
05-22 09:32:11.668 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:32:16.750 1219 1219 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=android.intent.action.BATTERY_CHANGED flg=0x60000000 (has extras) }
05-22 09:32:16.798 1219 1219 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=android.intent.action.BATTERY_CHANGED flg=0x60000000 (has extras) }
05-22 09:32:16.815 1219 1252 E KernelCpuSpeedReader: Failed to read cpu-freq: /sys/devices/system/cpu/cpu4/cpufreq/stats/time_in_state: open failed: ENOENT (No such file or directory)
05-22 09:32:16.816 1219 1252 E KernelCpuSpeedReader: Failed to read cpu-freq: /sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state: open failed: ENOENT (No such file or directory)
05-22 09:32:16.828 446 446 W Binder:446_1: type=1400 audit(0.0:12665): avc: denied { read } for name="wakeup114" dev="sysfs" ino=36982 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs_batteryinfo:s0 tclass=dir permissive=0
05-22 09:32:16.832 446 446 W Binder:446_1: type=1400 audit(0.0:12666): avc: denied { read } for name="wakeup24" dev="sysfs" ino=30435 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs:s0 tclass=dir permissive=0
05-22 09:32:16.833 446 452 E android.system.suspend@1.0-service: Error opening kernel wakelock stats for: wakeup114: Permission denied
05-22 09:32:16.837 446 452 E android.system.suspend@1.0-service: Error opening kernel wakelock stats for: wakeup24: Permission denied
05-22 09:32:16.872 446 446 W Binder:446_1: type=1400 audit(0.0:12667): avc: denied { read } for name="wakeup113" dev="sysfs" ino=36941 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs_batteryinfo:s0 tclass=dir permissive=0
05-22 09:32:16.874 446 452 E android.system.suspend@1.0-service: Error opening kernel wakelock stats for: wakeup113: Permission denied
05-22 09:32:16.889 1219 1252 E BatteryStatsService: Unable to load Power Hal or power.stats HAL
05-22 09:32:16.934 1219 1252 E KernelCpuSpeedReader: Failed to read cpu-freq: /sys/devices/system/cpu/cpu4/cpufreq/stats/time_in_state: open failed: ENOENT (No such file or directory)
05-22 09:32:16.934 1219 1252 E KernelCpuSpeedReader: Failed to read cpu-freq: /sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state: open failed: ENOENT (No such file or directory)
05-22 09:32:16.948 446 446 W Binder:446_1: type=1400 audit(0.0:12668): avc: denied { read } for name="wakeup114" dev="sysfs" ino=36982 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs_batteryinfo:s0 tclass=dir permissive=0
05-22 09:32:16.954 446 452 E android.system.suspend@1.0-service: Error opening kernel wakelock stats for: wakeup114: Permission denied
05-22 09:32:16.956 446 446 W Binder:446_1: type=1400 audit(0.0:12669): avc: denied { read } for name="wakeup24" dev="sysfs" ino=30435 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs:s0 tclass=dir permissive=0
05-22 09:32:16.958 446 452 E android.system.suspend@1.0-service: Error opening kernel wakelock stats for: wakeup24: Permission denied
05-22 09:32:16.992 446 446 W Binder:446_1: type=1400 audit(0.0:12670): avc: denied { read } for name="wakeup113" dev="sysfs" ino=36941 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs_batteryinfo:s0 tclass=dir permissive=0
05-22 09:32:16.994 446 452 E android.system.suspend@1.0-service: Error opening kernel wakelock stats for: wakeup113: Permission denied
05-22 09:32:18.652 3261 3389 W msgr.msys: W[S task_queue_processing]_MCDTaskCoordinatorMaybeScheduleQueueProcessing(191)=>Scheduling queue ranker_task_active_now for reprocessing in 10 seconds
05-22 09:32:22.154 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:32:25.690 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:32:28.551 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:32:28.737 3261 3389 W msgr.msys: W[S task_queue_processing]_MCDTaskCoordinatorMaybeScheduleQueueProcessing(191)=>Scheduling queue ranker_task_active_now for reprocessing in 10 seconds
05-22 09:32:35.727 2393 2479 E PlayCommon: [3903] adju.k(136): Failed to connect to server for server timestamp: java.net.UnknownHostException: Unable to resolve host "play.googleapis.com": No address associated with hostname
05-22 09:32:35.797 8243 7810 E AuthPII : [GoogleAccountDataServiceImpl] getToken() -> NETWORK_ERROR. App: com.android.vending, Service: oauth2:https://www.googleapis.com/auth/googleplay
05-22 09:32:35.797 8243 7810 E AuthPII : Message is Error when calling server.
05-22 09:32:35.798 8243 7810 W GetToken: [GetToken]GetToken failed with status code: NetworkError
05-22 09:32:35.799 8243 7810 W GLSActivity: java.io.IOException: NetworkError
05-22 09:32:35.799 8243 7810 W GLSActivity: at ikl.getAuthToken(:com.google.android.gms@221514037@22.15.14 (150400-441847897):32)
05-22 09:32:35.799 8243 7810 W GLSActivity: at android.accounts.AbstractAccountAuthenticator$Transport.getAuthToken(AbstractAccountAuthenticator.java:244)
05-22 09:32:35.799 8243 7810 W GLSActivity: at android.accounts.IAccountAuthenticator$Stub.onTransact(IAccountAuthenticator.java:282)
05-22 09:32:35.799 8243 7810 W GLSActivity: at android.os.Binder.transact(Binder.java:1043)
05-22 09:32:35.799 8243 7810 W GLSActivity: at epr.onTransact(:com.google.android.gms@221514037@22.15.14 (150400-441847897):2)
05-22 09:32:35.799 8243 7810 W GLSActivity: at android.os.Binder.transact(Binder.java:1043)
05-22 09:32:35.799 8243 7810 W GLSActivity: at afvg.onTransact(:com.google.android.gms@221514037@22.15.14 (150400-441847897):17)
05-22 09:32:35.799 8243 7810 W GLSActivity: at android.os.Binder.execTransactInternal(Binder.java:1159)
05-22 09:32:35.799 8243 7810 W GLSActivity: at android.os.Binder.execTransact(Binder.java:1123)
05-22 09:32:35.810 2393 2479 E PlayCommon: [3903] adju.m(5): Failed to get auth token: java.io.IOException: NetworkError
05-22 09:32:35.814 2393 2479 W PlayCommon: [3903] adju.k(229): Deferring log upload because couldn't retrieve auth token
05-22 09:32:35.904 2393 2559 E PlayCommon: [3933] adju.k(136): Failed to connect to server for server timestamp: java.net.UnknownHostException: Unable to resolve host "play.googleapis.com": No address associated with hostname
05-22 09:32:35.904 2393 2559 W PlayCommon: [3933] adju.m(1): No account for auth token provided
05-22 09:32:35.909 2393 2559 E PlayCommon: [3933] adju.k(175): Failed to connect to server for log upload.
05-22 09:32:37.607 1219 1219 W Looper : Slow dispatch took 274ms main h=android.os.Handler c=android.app.AlarmManager$ListenerWrapper@f624085 m=0
05-22 09:32:37.607 1219 1219 W Looper : Slow delivery took 272ms main h=com.android.server.AlarmManagerService$AlarmHandler c=null m=4
05-22 09:32:37.613 1219 1219 W Looper : Drained
05-22 09:32:37.615 1219 1267 E PermissionMonitor: unknown permission type: -1for uid: 10196
05-22 09:32:38.083 1219 1267 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:com.magnetforensics.acquire flg=0x4000000 (has extras) }
05-22 09:32:38.187 13484 13497 W droid.launcher: Reducing the number of considered missed Gc histogram windows from 124 to 100
05-22 09:32:38.351 1219 1245 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:com.magnetforensics.acquire flg=0x4000010 (has extras) } to com.android.musicfx/.Compatibility$Receiver
05-22 09:32:38.351 1219 1245 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:com.magnetforensics.acquire flg=0x4000010 (has extras) } to com.android.vending/com.google.android.finsky.packagemanager.impl.PackageMonitorReceiverImpl$RegisteredReceiver
05-22 09:32:38.352 1219 1267 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=android.intent.action.PACKAGE_FULLY_REMOVED dat=package:com.magnetforensics.acquire flg=0x5000000 (has extras) }
05-22 09:32:38.354 1219 1236 W Looper : Slow dispatch took 270ms android.ui h=com.android.server.am.ActivityManagerService$UiHandler c=null m=31
05-22 09:32:38.363 1219 1245 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:com.magnetforensics.acquire flg=0x4000010 (has extras) } to com.android.vending/com.google.android.finsky.instantapps.appmanagement.InstantAppRemoveMonitor
05-22 09:32:38.368 1219 1267 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=android.intent.action.UID_REMOVED flg=0x5000000 (has extras) }
05-22 09:32:38.380 1219 1245 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:com.magnetforensics.acquire flg=0x4000010 (has extras) } to com.google.android.apps.maps/com.google.android.libraries.social.peoplekit.thirdparty.viewcontrollers.ThirdPartyReceiver
05-22 09:32:38.381 1219 1245 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:com.magnetforensics.acquire flg=0x4000010 (has extras) } to com.google.android.apps.photos/com.google.android.libraries.social.peoplekit.thirdparty.viewcontrollers.ThirdPartyReceiver
05-22 09:32:38.381 1219 1245 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:com.magnetforensics.acquire flg=0x4000010 (has extras) } to com.google.android.gms/.games.chimera.GamesSystemBroadcastReceiverProxy
05-22 09:32:38.382 1219 1245 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:com.magnetforensics.acquire flg=0x4000010 (has extras) } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver
05-22 09:32:38.383 1219 1245 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:com.magnetforensics.acquire flg=0x4000010 (has extras) } to com.google.android.googlequicksearchbox/com.google.android.apps.gsa.googlequicksearchbox.GelStubAppWatcher
05-22 09:32:38.383 1219 1245 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:com.magnetforensics.acquire flg=0x4000010 (has extras) } to com.facebook.katana/com.facebook.feed.platformads.AppInstallReceiver
05-22 09:32:38.384 1219 1245 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:com.magnetforensics.acquire flg=0x4000010 (has extras) } to com.google.android.apps.magazines/com.google.android.libraries.social.peoplekit.thirdparty.viewcontrollers.ThirdPartyReceiver
05-22 09:32:38.388 1219 1353 W WifiService: Couldn't get PackageInfo for package:com.magnetforensics.acquire
05-22 09:32:38.389 1219 1245 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:com.magnetforensics.acquire flg=0x4000010 (has extras) } to com.showtime.showtimeanytime/.download.VirtuosoServiceStarter
05-22 09:32:38.420 1219 1235 E PackageManager: failed to find package com.magnetforensics.acquire
05-22 09:32:38.420 1219 1235 E OverlayManager: Failed to change enabled overlays for com.magnetforensics.acquire user 0
05-22 09:32:38.422 1219 1219 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=android.os.action.POWER_SAVE_TEMP_WHITELIST_CHANGED flg=0x40000000 }
05-22 09:32:38.424 1219 1336 W BestClock: java.time.DateTimeException: Missing NTP fix
05-22 09:32:38.436 1219 1336 W BestClock: java.time.DateTimeException: Missing NTP fix
05-22 09:32:38.439 1219 1235 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=android.intent.action.OVERLAY_CHANGED dat=package:com.magnetforensics.acquire flg=0x4000000 }
05-22 09:32:38.466 4326 4326 E .android.chrom: Not starting debugger since process cannot load the jdwp agent.
05-22 09:32:38.496 1743 1743 E PhoneInterfaceManager: [PhoneIntfMgr] getCarrierPackageNamesForIntentAndPhone: No UICC
05-22 09:32:38.497 1743 1743 E PhoneInterfaceManager: [PhoneIntfMgr] getCarrierPackageNamesForIntentAndPhone: No UICC
05-22 09:32:38.498 4335 4335 E ndroid.keychai: Not starting debugger since process cannot load the jdwp agent.
05-22 09:32:38.558 1219 1336 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.android.server.action.NETWORK_STATS_UPDATED flg=0x40000000 }
05-22 09:32:38.561 1219 1342 W BestClock: java.time.DateTimeException: Missing NTP fix
05-22 09:32:38.571 1219 1342 W BestClock: java.time.DateTimeException: Missing NTP fix
05-22 09:32:38.604 4097 4333 W Role : Cannot find resource for default holder: config_systemActivityRecognizer
05-22 09:32:38.691 4326 4326 W .android.chrom: JIT profile information will not be recorded: profile file does not exist.
05-22 09:32:38.870 1219 1353 W WifiService: Couldn't get PackageInfo for package:com.magnetforensics.acquire
05-22 09:32:38.923 3261 3389 W msgr.msys: W[S task_queue_processing]_MCDTaskCoordinatorMaybeScheduleQueueProcessing(191)=>Scheduling queue ranker_task_active_now for reprocessing in 10 seconds
05-22 09:32:38.991 18568 4332 W DriveInitializer: Awaiting to be initialized
05-22 09:32:39.213 1219 1219 W Looper : Slow dispatch took 776ms main h=android.app.ActivityThread$H c=android.app.-$$Lambda$LoadedApk$ReceiverDispatcher$Args$_BumDX2UKsnxLVrE6UJsJZkotuA@a64d36f m=0
05-22 09:32:39.219 1219 1219 W Looper : Slow delivery took 871ms main h=android.app.ActivityThread$H c=android.app.-$$Lambda$LoadedApk$ReceiverDispatcher$Args$_BumDX2UKsnxLVrE6UJsJZkotuA@8a59505 m=0
05-22 09:32:39.385 1219 1219 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=android.app.action.NOTIFICATION_POLICY_ACCESS_GRANTED_CHANGED flg=0x4000000 pkg=com.magnetforensics.acquire }
05-22 09:32:39.414 2393 2393 E Finsky : [2] sum.b(9): STU: Failed to get status for package 'com.magnetforensics.acquire' (1601: Error getting stats)
05-22 09:32:39.414 2393 2393 E Finsky : android.content.pm.PackageManager$NameNotFoundException: com.magnetforensics.acquire
05-22 09:32:39.414 2393 2393 E Finsky : at java.lang.reflect.Constructor.newInstance0(Native Method)
05-22 09:32:39.414 2393 2393 E Finsky : at java.lang.reflect.Constructor.newInstance(Constructor.java:343)
05-22 09:32:39.414 2393 2393 E Finsky : at android.os.ParcelableException.readFromParcel(ParcelableException.java:56)
05-22 09:32:39.414 2393 2393 E Finsky : at android.os.ParcelableException$1.createFromParcel(ParcelableException.java:82)
05-22 09:32:39.414 2393 2393 E Finsky : at android.os.ParcelableException$1.createFromParcel(ParcelableException.java:79)
05-22 09:32:39.414 2393 2393 E Finsky : at android.os.Parcel.readParcelable(Parcel.java:3281)
05-22 09:32:39.414 2393 2393 E Finsky : at android.os.Parcel.createExceptionOrNull(Parcel.java:2368)
05-22 09:32:39.414 2393 2393 E Finsky : at android.os.Parcel.createException(Parcel.java:2357)
05-22 09:32:39.414 2393 2393 E Finsky : at android.os.Parcel.readException(Parcel.java:2340)
05-22 09:32:39.414 2393 2393 E Finsky : at android.os.Parcel.readException(Parcel.java:2282)
05-22 09:32:39.414 2393 2393 E Finsky : at android.app.usage.IStorageStatsManager$Stub$Proxy.queryStatsForPackage(IStorageStatsManager.java:561)
05-22 09:32:39.414 2393 2393 E Finsky : at android.app.usage.StorageStatsManager.queryStatsForPackage(StorageStatsManager.java:213)
05-22 09:32:39.414 2393 2393 E Finsky : at pgc.run(PG:15)
05-22 09:32:39.414 2393 2393 E Finsky : at android.os.Handler.handleCallback(Handler.java:938)
05-22 09:32:39.414 2393 2393 E Finsky : at android.os.Handler.dispatchMessage(Handler.java:99)
05-22 09:32:39.414 2393 2393 E Finsky : at android.os.Looper.loop(Looper.java:223)
05-22 09:32:39.414 2393 2393 E Finsky : at android.os.HandlerThread.run(HandlerThread.java:67)
05-22 09:32:39.414 2393 2393 E Finsky : Caused by: android.os.RemoteException: Remote stack trace:
05-22 09:32:39.414 2393 2393 E Finsky : at com.android.server.usage.StorageStatsService.queryStatsForPackage(StorageStatsService.java:299)
05-22 09:32:39.414 2393 2393 E Finsky : at android.app.usage.IStorageStatsManager$Stub.onTransact(IStorageStatsManager.java:259)
05-22 09:32:39.414 2393 2393 E Finsky : at android.os.Binder.execTransactInternal(Binder.java:1154)
05-22 09:32:39.414 2393 2393 E Finsky : at android.os.Binder.execTransact(Binder.java:1123)
05-22 09:32:39.414 2393 2393 E Finsky :
05-22 09:32:39.434 1219 1219 W Looper : Drained
05-22 09:32:39.438 18568 18757 E WorkSourceUtil: Could not find package: com.magnetforensics.acquire
05-22 09:32:39.520 4414 4414 E droid.apps.map: Not starting debugger since process cannot load the jdwp agent.
05-22 09:32:39.611 1219 1244 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=android.search.action.SEARCHABLES_CHANGED flg=0x24000000 }
05-22 09:32:39.742 18568 4373 W SQLiteLog: (28) double-quoted string literal: "com.magnetforensics.acquire"
05-22 09:32:39.791 4414 4414 W droid.apps.map: JIT profile information will not be recorded: profile file does not exist.
05-22 09:32:39.792 4414 4414 W droid.apps.map: JIT profile information will not be recorded: profile file does not exist.
05-22 09:32:39.796 1941 1999 W DeviceAppInfoWork: missing version info.
05-22 09:32:40.368 4455 4455 E oid.apps.photo: Not starting debugger since process cannot load the jdwp agent.
05-22 09:32:40.393 4414 4440 W Settings: Setting device_provisioned has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
05-22 09:32:40.536 4455 4455 W oid.apps.photo: JIT profile information will not be recorded: profile file does not exist.
05-22 09:32:40.536 4455 4455 W oid.apps.photo: JIT profile information will not be recorded: profile file does not exist.
05-22 09:32:40.596 8243 8310 W ProviderHelper: Unknown dynamite feature providerinstaller.dynamite
05-22 09:32:40.761 4455 4455 W oid.apps.photo: Accessing hidden field Ljava/util/Collections$SynchronizedCollection;->mutex:Ljava/lang/Object; (greylist-max-o, reflection, denied)
05-22 09:32:40.762 4455 4455 W oid.apps.photo: Accessing hidden method Ljava/util/Collections$SynchronizedSet;-><init>(Ljava/util/Set;Ljava/lang/Object;)V (greylist-max-o, reflection, denied)
05-22 09:32:40.762 4455 4455 W oid.apps.photo: Accessing hidden method Ljava/util/Collections$SynchronizedCollection;-><init>(Ljava/util/Collection;Ljava/lang/Object;)V (greylist-max-o, reflection, denied)
05-22 09:32:40.775 8243 8310 E AuthPII : [GoogleAccountDataServiceImpl] getToken() -> NETWORK_ERROR. App: com.google.android.apps.maps, Service: oauth2:https://www.googleapis.com/auth/mobilemaps.firstparty https://www.googleapis.com/auth/notifications
05-22 09:32:40.775 8243 8310 E AuthPII : Message is Error when calling server.
05-22 09:32:40.775 8243 8310 W GetToken: [GetToken]GetToken failed with status code: NetworkError
05-22 09:32:40.800 8243 8310 E AuthPII : [GoogleAccountDataServiceImpl] getToken() -> NETWORK_ERROR. App: com.google.android.apps.maps, Service: oauth2:https://www.googleapis.com/auth/mobilemaps.firstparty https://www.googleapis.com/auth/notifications
05-22 09:32:40.801 8243 8310 E AuthPII : Message is Error when calling server.
05-22 09:32:40.801 8243 8310 W GetToken: [GetToken]GetToken failed with status code: NetworkError
05-22 09:32:40.821 8243 8310 E AuthPII : [GoogleAccountDataServiceImpl] getToken() -> NETWORK_ERROR. App: com.google.android.apps.maps, Service: oauth2:https://www.googleapis.com/auth/mobilemaps.firstparty https://www.googleapis.com/auth/notifications
05-22 09:32:40.821 8243 8310 E AuthPII : Message is Error when calling server.
05-22 09:32:40.821 8243 8310 W GetToken: [GetToken]GetToken failed with status code: NetworkError
05-22 09:32:40.913 4514 4514 E .apps.wellbein: Not starting debugger since process cannot load the jdwp agent.
05-22 09:32:40.921 4455 4506 E libc : Access denied finding property "ro.vendor.pref_scale_resolution"
05-22 09:32:41.260 4514 4545 W .apps.wellbein: Accessing hidden field Ljava/util/Collections$SynchronizedCollection;->mutex:Ljava/lang/Object; (greylist-max-o, reflection, denied)
05-22 09:32:41.261 4514 4545 W .apps.wellbein: Accessing hidden method Ljava/util/Collections$SynchronizedSet;-><init>(Ljava/util/Set;Ljava/lang/Object;)V (greylist-max-o, reflection, denied)
05-22 09:32:41.261 4514 4545 W .apps.wellbein: Accessing hidden method Ljava/util/Collections$SynchronizedCollection;-><init>(Ljava/util/Collection;Ljava/lang/Object;)V (greylist-max-o, reflection, denied)
05-22 09:32:41.267 4514 4514 E libprocessgroup: set_timerslack_ns write failed: Operation not permitted
05-22 09:32:41.376 1219 1742 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.internal.mobdog (has extras) }
05-22 09:32:41.377 1219 2827 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.mobileutilities (has extras) }
05-22 09:32:42.464 4556 4556 E oid.documentsu: Not starting debugger since process cannot load the jdwp agent.
05-22 09:32:42.546 4556 4556 W oid.documentsu: JIT profile information will not be recorded: profile file does not exist.
05-22 09:32:42.630 4556 4575 W ThemeOverlayManager: Skip enabled overlay package:com.google.android.overlay.modules.documentsui, user:UserHandle{0}
05-22 09:32:42.664 4556 4556 E libc : Access denied finding property "ro.vendor.pref_scale_resolution"
05-22 09:32:42.724 4585 4585 E externalstorag: Not starting debugger since process cannot load the jdwp agent.
05-22 09:32:42.864 4609 4609 E .apps.magazine: Not starting debugger since process cannot load the jdwp agent.
05-22 09:32:42.959 4632 4632 E com.ringapp: Not starting debugger since process cannot load the jdwp agent.
05-22 09:32:43.020 4650 4650 E d.process.medi: Not starting debugger since process cannot load the jdwp agent.
05-22 09:32:43.023 4609 4609 W .apps.magazine: JIT profile information will not be recorded: profile file does not exist.
05-22 09:32:43.023 4609 4609 W .apps.magazine: JIT profile information will not be recorded: profile file does not exist.
05-22 09:32:43.126 4609 4609 E libc : Access denied finding property "ro.vendor.pref_scale_resolution"
05-22 09:32:43.394 4609 4677 W .apps.magazine: Accessing hidden field Ljava/util/Collections$SynchronizedCollection;->mutex:Ljava/lang/Object; (greylist-max-o, reflection, denied)
05-22 09:32:43.395 4609 4677 W .apps.magazine: Accessing hidden method Ljava/util/Collections$SynchronizedSet;-><init>(Ljava/util/Set;Ljava/lang/Object;)V (greylist-max-o, reflection, denied)
05-22 09:32:43.396 4609 4677 W .apps.magazine: Accessing hidden method Ljava/util/Collections$SynchronizedCollection;-><init>(Ljava/util/Collection;Ljava/lang/Object;)V (greylist-max-o, reflection, denied)
05-22 09:32:43.471 4632 4632 W com.ringapp: JIT profile information will not be recorded: profile file does not exist.
05-22 09:32:43.505 4609 4683 W DynamiteModule: Local module descriptor class for com.google.android.gms.providerinstaller.dynamite not found.
05-22 09:32:43.521 8243 11238 W ProviderHelper: Unknown dynamite feature providerinstaller.dynamite
05-22 09:32:43.525 4609 4683 W ProviderInstaller: Failed to load providerinstaller module: No acceptable module com.google.android.gms.providerinstaller.dynamite found. Local version is 0 and remote version is 0.
05-22 09:32:43.548 4687 4687 E m.android.shel: Not starting debugger since process cannot load the jdwp agent.
05-22 09:32:43.689 1219 1742 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.internal.mobdog (has extras) }
05-22 09:32:43.690 1219 1233 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.mobileutilities (has extras) }
05-22 09:32:43.734 1219 2827 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.internal.mobdog (has extras) }
05-22 09:32:43.735 1219 2827 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.mobileutilities (has extras) }
05-22 09:32:43.744 4632 4632 E libc : Access denied finding property "ro.vendor.pref_scale_resolution"
05-22 09:32:43.845 4732 4732 E android.traceu: Not starting debugger since process cannot load the jdwp agent.
05-22 09:32:43.876 4632 4632 W ComponentDiscovery: Class com.google.firebase.dynamicloading.DynamicLoadingRegistrar is not an found.
05-22 09:32:43.919 808 808 E mediaserver: unlinkToDeath: removed reference to death recipient but unlink failed.
05-22 09:32:43.919 808 808 E IPCThreadState: attemptIncStrongHandle(4): Not supported
05-22 09:32:43.926 808 808 E mediaserver: unlinkToDeath: removed reference to death recipient but unlink failed.
05-22 09:32:43.926 808 808 E IPCThreadState: attemptIncStrongHandle(2): Not supported
05-22 09:32:43.932 826 1468 E OMXNodeInstance: !!! Observer died. Quickly, do something, ... anything...
05-22 09:32:43.932 826 1477 E OMXNodeInstance: !!! Observer died. Quickly, do something, ... anything...
05-22 09:32:44.033 4632 4632 W FirebaseCrashlytics: A new version of the Google Analytics for Firebase SDK is now available. For improved performance and compatibility with Crashlytics, please update to the latest version.
05-22 09:32:45.083 4632 4632 W BaseMetricsServiceFacto: createMetricsService - Skipping batch pipeline setup for Priority NORMAL and Channel LOCATION because no configuration is provided.;
05-22 09:32:45.095 4632 4632 W BaseMetricsServiceFacto: createMetricsService - Skipping batch pipeline setup for Priority HIGH and Channel LOCATION because no configuration is provided.;
05-22 09:32:45.100 4632 4632 W BaseMetricsServiceFacto: createMetricsService - Skipping batch pipeline setup for Priority CRITICAL and Channel LOCATION because no configuration is provided.;
05-22 09:32:45.100 4632 4632 W BaseMetricsServiceFacto: createMetricsService - Skipping batch pipeline setup for Priority CRITICAL and Channel ANONYMOUS because no configuration is provided.;
05-22 09:32:45.100 4632 4632 W BaseMetricsServiceFacto: createMetricsService - Skipping batch pipeline setup for Priority CRITICAL and Channel NON_ANONYMOUS because no configuration is provided.;
05-22 09:32:45.332 4632 4632 W AudioCapabilities: Unsupported mime audio/x-adpcm-ms
05-22 09:32:45.332 4632 4632 W AudioCapabilities: Unsupported mime audio/x-adpcm-dvi-ima
05-22 09:32:45.332 4632 4632 W AudioCapabilities: Unsupported mime audio/alac
05-22 09:32:45.333 4632 4632 W AudioCapabilities: Unsupported mime audio/ape
05-22 09:32:45.335 4632 4632 W VideoCapabilities: Unrecognized profile/level 1/32 for video/mp4v-es
05-22 09:32:45.335 4632 4632 W VideoCapabilities: Unrecognized profile/level 32768/2 for video/mp4v-es
05-22 09:32:45.335 4632 4632 W VideoCapabilities: Unrecognized profile/level 32768/64 for video/mp4v-es
05-22 09:32:45.336 4632 4632 W VideoCapabilities: Unsupported mime video/x-ms-wmv
05-22 09:32:45.337 4632 4632 W VideoCapabilities: Unsupported mime video/xvid
05-22 09:32:45.338 4632 4632 W VideoCapabilities: Unrecognized profile/level 1/32 for video/mp4v-es
05-22 09:32:45.410 4632 4849 W LinphoneCoreFactoryImpl: Unable to load optional library ffmpeg-linphone: dlopen failed: library "libffmpeg-linphone.so" not found
05-22 09:32:45.418 4632 4772 E FirebaseCrashlytics: Settings request failed.
05-22 09:32:45.643 776 1286 W ServiceManager: Permission failure: android.permission.CAMERA_OPEN_CLOSE_LISTENER from uid=10177 pid=4632
05-22 09:32:45.645 4632 4849 W CameraManagerGlobal: [soar.cts] ignore the status update of camera: 2
05-22 09:32:45.645 4632 4849 W CameraManagerGlobal: [soar.cts] ignore the status update of camera: 3
05-22 09:32:45.645 4632 4849 W CameraManagerGlobal: [soar.cts] ignore the status update of camera: 4
05-22 09:32:45.647 776 1286 W ServiceManager: Permission failure: android.permission.CAMERA from uid=10177 pid=4632
05-22 09:32:45.648 4632 4774 W CameraManagerGlobal: ignore the torch status update of camera: 3
05-22 09:32:45.649 4632 4774 W CameraManagerGlobal: ignore the torch status update of camera: 4
05-22 09:32:45.656 776 1286 W ServiceManager: Permission failure: android.permission.CAMERA from uid=10177 pid=4632
05-22 09:32:46.515 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:32:47.430 1219 2827 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.internal.mobdog (has extras) }
05-22 09:32:47.431 1219 2827 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.mobileutilities (has extras) }
05-22 09:32:47.959 1219 3571 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.internal.mobdog (has extras) }
05-22 09:32:47.960 1219 3571 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.mobileutilities (has extras) }
05-22 09:32:48.326 1219 1871 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.internal.mobdog (has extras) }
05-22 09:32:48.330 1219 1871 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.mobileutilities (has extras) }
05-22 09:32:50.257 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:32:50.596 1219 3381 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.internal.mobdog (has extras) }
05-22 09:32:50.600 1219 3381 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.google.android.gms.phenotype.COMMIT pkg=com.google.android.apps.mobileutilities (has extras) }
05-22 09:32:51.044 8243 23278 E AuthPII : [GoogleAccountDataServiceImpl] getToken() -> NETWORK_ERROR. App: com.google.android.apps.maps, Service: oauth2:https://www.googleapis.com/auth/mobilemaps.firstparty https://www.googleapis.com/auth/notifications
05-22 09:32:51.045 8243 23278 E AuthPII : Message is Error when calling server.
05-22 09:32:51.045 8243 23278 W GetToken: [GetToken]GetToken failed with status code: NetworkError
05-22 09:32:52.108 8243 19496 W ddsf : [{0}] Failed to resolve name. status={1}
05-22 09:32:52.249 4902 4902 E m.facebook.orc: Not starting debugger since process cannot load the jdwp agent.
2022-05-22 13:33:05 Info: Adding segment paths of image located at 'D:\Walter\Android Image - 2022-05-22 09-08-57'.
2022-05-22 13:33:05 Debug: Calculating MD5 hash of file at 'D:\Walter\Android Image - 2022-05-22 09-08-57\HMD Global Nokia G10 Quick Image.zip'.
2022-05-22 13:33:07 Debug: Calculating SHA1 hash of file at 'D:\Walter\Android Image - 2022-05-22 09-08-57\HMD Global Nokia G10 Quick Image.zip'.
2022-05-22 13:33:09 Info: Hashing image segments completed.
The Magnet Acquire extraction is not a full file system extraction per the log provided. The tool will not be able to find files that are not in the extraction.
Perform a full file system extraction and try again.
On Sun, Jul 10, 2022, 1:34 PM Sean McLinden @.***> wrote:
aleappGUI.spec
-- mode: python ; coding: utf-8 --
block_cipher = None
a = Analysis(
['aleappGUI.py'], pathex=[], binaries=[], datas=[], hiddenimports=[], hookspath=[], hooksconfig={}, runtime_hooks=[], excludes=[], win_no_prefer_redirects=False, win_private_assemblies=False, cipher=block_cipher, noarchive=False,
)
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
exe = EXE(
pyz, a.scripts, [], exclude_binaries=True, name='aleappGUI', debug=False, bootloader_ignore_signals=False, strip=False, upx=True, console=True, disable_windowed_traceback=False, argv_emulation=False, target_arch=None, codesign_identity=None, entitlements_file=None,
)
coll = COLLECT(
exe, a.binaries, a.zipfiles, a.datas, strip=False, upx=True, upx_exclude=[], name='aleappGUI',
)
And aleapp.spec
-- mode: python ; coding: utf-8 --
block_cipher = None
a = Analysis(
['aleapp.py'], pathex=[], binaries=[], datas=[], hiddenimports=[], hookspath=[], hooksconfig={}, runtime_hooks=[], excludes=[], win_no_prefer_redirects=False, win_private_assemblies=False, cipher=block_cipher, noarchive=False,
)
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
exe = EXE(
pyz, a.scripts, a.binaries, a.zipfiles, a.datas, [], name='aleapp', debug=False, bootloader_ignore_signals=False, strip=False, upx=True, upx_exclude=[], runtime_tmpdir=None, console=True, disable_windowed_traceback=False, argv_emulation=False, target_arch=None, codesign_identity=None, entitlements_file=None,
)
It might be the console= argument
Also, the log from Magnet Acquire:
``2022-05-22 12:22:35 Info: Magnet ACQUIRE v2.51.0.29844 2022-05-22 12:22:35 Info: Operating System Version: 6.2.9200.0 2022-05-22 12:22:35 Info: Operating System Platform: Win32NT 2022-05-22 12:22:35 Info: Service Pack: 2022-05-22 12:22:35 Info: 64-Bit Operating System: True 2022-05-22 12:22:35 Info: 64-Bit Process: True 2022-05-22 12:22:35 Info: CLR Version: 4.0.30319.42000 2022-05-22 12:22:35 Info: Working Set: 202649600 2022-05-22 12:22:42 Warn: An exception was caught querying devices with plugin 'Magnet.Imager.Devices.Plugins.Android.Detection.Twrp.Plugin'. System.InvalidOperationException: Cannot process request because the process (12860) has exited. at System.Diagnostics.Process.GetProcessHandle(Int32 access, Boolean throwIfExited) at System.Diagnostics.Process.OpenProcessHandle(Int32 access) at System.Diagnostics.Process.get_Handle() at Magnet.AdbWrapper.AdbServiceProcessManager.CreateOrLeaseService() at Magnet.Imager.Devices.Plugins.Android.Detection.Twrp.TwrpDeviceFinder.GetDevices(ICancellationToken token) at Magnet.Imager.Application.Devices.ParallelDeviceQuerier.<>c__DisplayClass4_1.b__4()
2022-05-22 13:10:14 Info: Pulling live data from device 'PT99652EA1222400797'... 2022-05-22 13:10:28 Info: Dumping system service 'DockObserver' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\DockObserver.txt'. 2022-05-22 13:10:28 Info: No data for dump of system service 'HMDEnterpriseService'. 2022-05-22 13:10:28 Info: Dumping system service 'SurfaceFlinger' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\SurfaceFlinger.txt'. 2022-05-22 13:10:28 Info: Dumping system service 'accessibility' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\accessibility.txt'. 2022-05-22 13:10:28 Info: Dumping system service 'account' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\account.txt'. 2022-05-22 13:10:28 Info: Dumping system service 'activity' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\activity.txt'. 2022-05-22 13:10:29 Info: No data for dump of system service 'activity_task'. 2022-05-22 13:10:29 Info: Dumping system service 'adb' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\adb.txt'. 2022-05-22 13:10:29 Info: Dumping system service 'alarm' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\alarm.txt'. 2022-05-22 13:10:29 Info: Dumping system service 'android.hardware.light.ILights/default' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\android.hardware.light.ILights/default.txt'. 2022-05-22 13:10:29 Warn: An exception was caught writing live data 'dumpsys android.hardware.light.ILights/default' for device 'PT99652EA1222400797'. System.IO.DirectoryNotFoundException: Could not find a part of the path 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\android.hardware.light.ILights\default.txt'. at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) at System.IO.StreamWriter.CreateFile(String path, Boolean append, Boolean checkHost) at System.IO.StreamWriter..ctor(String path, Boolean append, Encoding encoding, Int32 bufferSize, Boolean checkHost) at System.IO.StreamWriter..ctor(String path, Boolean append, Encoding encoding) at System.IO.File.WriteAllLines(String path, IEnumerable`1 contents) at Magnet.Imager.Imaging.Plugins.Android.Quick.Actions.DumpsysDataPuller.PullData(IAndroidQuickImagerStepContext context, String liveDataFolder, IAndroidDebugBridge androidDebugBridge)
2022-05-22 13:10:29 Info: Dumping system service 'android.hardware.power.IPower/default' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\android.hardware.power.IPower/default.txt'. 2022-05-22 13:10:29 Warn: An exception was caught writing live data 'dumpsys android.hardware.power.IPower/default' for device 'PT99652EA1222400797'. System.IO.DirectoryNotFoundException: Could not find a part of the path 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\android.hardware.power.IPower\default.txt'. at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) at System.IO.StreamWriter.CreateFile(String path, Boolean append, Boolean checkHost) at System.IO.StreamWriter..ctor(String path, Boolean append, Encoding encoding, Int32 bufferSize, Boolean checkHost) at System.IO.StreamWriter..ctor(String path, Boolean append, Encoding encoding) at System.IO.File.WriteAllLines(String path, IEnumerable`1 contents) at Magnet.Imager.Imaging.Plugins.Android.Quick.Actions.DumpsysDataPuller.PullData(IAndroidQuickImagerStepContext context, String liveDataFolder, IAndroidDebugBridge androidDebugBridge)
2022-05-22 13:10:29 Info: Dumping system service 'android.hardware.vibrator.IVibrator/default' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\android.hardware.vibrator.IVibrator/default.txt'. 2022-05-22 13:10:29 Warn: An exception was caught writing live data 'dumpsys android.hardware.vibrator.IVibrator/default' for device 'PT99652EA1222400797'. System.IO.DirectoryNotFoundException: Could not find a part of the path 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\android.hardware.vibrator.IVibrator\default.txt'. at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) at System.IO.StreamWriter.CreateFile(String path, Boolean append, Boolean checkHost) at System.IO.StreamWriter..ctor(String path, Boolean append, Encoding encoding, Int32 bufferSize, Boolean checkHost) at System.IO.StreamWriter..ctor(String path, Boolean append, Encoding encoding) at System.IO.File.WriteAllLines(String path, IEnumerable`1 contents) at Magnet.Imager.Imaging.Plugins.Android.Quick.Actions.DumpsysDataPuller.PullData(IAndroidQuickImagerStepContext context, String liveDataFolder, IAndroidDebugBridge androidDebugBridge)
2022-05-22 13:10:29 Info: Dumping system service 'android.os.UpdateEngineService' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\android.os.UpdateEngineService.txt'. 2022-05-22 13:10:29 Info: No data for dump of system service 'android.security.identity'. 2022-05-22 13:10:29 Info: No data for dump of system service 'android.security.keystore'. 2022-05-22 13:10:29 Info: No data for dump of system service 'anrmanager'. 2022-05-22 13:10:29 Info: Dumping system service 'app_binding' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\app_binding.txt'. 2022-05-22 13:10:30 Info: No data for dump of system service 'app_integrity'. 2022-05-22 13:10:30 Info: No data for dump of system service 'app_prediction'. 2022-05-22 13:10:30 Info: Dumping system service 'appops' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\appops.txt'. 2022-05-22 13:10:30 Info: Dumping system service 'appwidget' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\appwidget.txt'. 2022-05-22 13:10:30 Info: Dumping system service 'audio' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\audio.txt'. 2022-05-22 13:10:30 Info: No data for dump of system service 'auth'. 2022-05-22 13:10:30 Info: No data for dump of system service 'autoboot'. 2022-05-22 13:10:30 Info: Dumping system service 'autofill' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\autofill.txt'. 2022-05-22 13:10:31 Info: Dumping system service 'backup' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\backup.txt'. 2022-05-22 13:10:31 Info: Dumping system service 'battery' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\battery.txt'. 2022-05-22 13:10:31 Info: No data for dump of system service 'batteryproperties'. 2022-05-22 13:10:31 Info: Dumping system service 'batterystats' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\batterystats.txt'. 2022-05-22 13:10:31 Info: Dumping system service 'binder_calls_stats' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\binder_calls_stats.txt'. 2022-05-22 13:10:31 Info: No data for dump of system service 'biometric'. 2022-05-22 13:10:32 Info: Dumping system service 'blob_store' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\blob_store.txt'. 2022-05-22 13:10:32 Info: Dumping system service 'bluetooth_manager' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\bluetooth_manager.txt'. 2022-05-22 13:10:32 Info: No data for dump of system service 'bugreport'. 2022-05-22 13:10:32 Info: Dumping system service 'cacheinfo' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\cacheinfo.txt'. 2022-05-22 13:10:33 Info: Dumping system service 'carrier_config' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\carrier_config.txt'. 2022-05-22 13:10:33 Info: No data for dump of system service 'clipboard'. 2022-05-22 13:10:33 Info: Dumping system service 'color_display' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\color_display.txt'. 2022-05-22 13:10:33 Info: No data for dump of system service 'com.wos.android.face.IFaceDaemon'. 2022-05-22 13:10:33 Info: No data for dump of system service 'companiondevice'. 2022-05-22 13:10:33 Info: Dumping system service 'connectivity' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\connectivity.txt'. 2022-05-22 13:10:33 Info: Dumping system service 'connmetrics' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\connmetrics.txt'. 2022-05-22 13:10:33 Info: No data for dump of system service 'consumer_ir'. 2022-05-22 13:10:33 Info: Dumping system service 'content' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\content.txt'. 2022-05-22 13:10:34 Info: No data for dump of system service 'country_detector'. 2022-05-22 13:10:34 Info: Dumping system service 'cpuinfo' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\cpuinfo.txt'. 2022-05-22 13:10:34 Info: No data for dump of system service 'crossprofileapps'. 2022-05-22 13:10:34 Info: No data for dump of system service 'dataloader_manager'. 2022-05-22 13:10:35 Info: Dumping system service 'dbinfo' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\dbinfo.txt'. 2022-05-22 13:10:36 Info: No data for dump of system service 'device_config'. 2022-05-22 13:10:36 Info: No data for dump of system service 'device_identifiers'. 2022-05-22 13:10:36 Info: Dumping system service 'device_policy' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\device_policy.txt'. 2022-05-22 13:10:36 Info: Dumping system service 'deviceidle' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\deviceidle.txt'. 2022-05-22 13:10:36 Info: Dumping system service 'devicestoragemonitor' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\devicestoragemonitor.txt'. 2022-05-22 13:10:36 Info: Dumping system service 'diskstats' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\diskstats.txt'. 2022-05-22 13:10:36 Info: Dumping system service 'display' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\display.txt'. 2022-05-22 13:10:36 Info: Dumping system service 'dreams' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\dreams.txt'. 2022-05-22 13:10:36 Info: No data for dump of system service 'drm.drmManager'. 2022-05-22 13:10:37 Info: Dumping system service 'dropbox' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\dropbox.txt'. 2022-05-22 13:10:37 Info: No data for dump of system service 'dynamic_system'. 2022-05-22 13:10:37 Info: Dumping system service 'emergency_affordance' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\emergency_affordance.txt'. 2022-05-22 13:10:37 Info: Dumping system service 'ethernet' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\ethernet.txt'. 2022-05-22 13:10:37 Info: No data for dump of system service 'external_vibrator_service'. 2022-05-22 13:10:37 Info: No data for dump of system service 'file_integrity'. 2022-05-22 13:10:37 Info: Dumping system service 'fingerprint' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\fingerprint.txt'. 2022-05-22 13:10:37 Info: Dumping system service 'gfxinfo' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\gfxinfo.txt'. 2022-05-22 13:10:38 Info: Dumping system service 'gpu' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\gpu.txt'. 2022-05-22 13:10:39 Info: Dumping system service 'graphicsstats' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\graphicsstats.txt'. 2022-05-22 13:10:39 Info: Dumping system service 'hardware_properties' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\hardware_properties.txt'. 2022-05-22 13:10:39 Info: No data for dump of system service 'imms'. 2022-05-22 13:10:39 Info: No data for dump of system service 'imtksms'. 2022-05-22 13:10:39 Info: Dumping system service 'incidentcompanion' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\incidentcompanion.txt'. 2022-05-22 13:10:39 Info: Dumping system service 'incremental' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\incremental.txt'. 2022-05-22 13:10:39 Info: Dumping system service 'input' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\input.txt'. 2022-05-22 13:10:40 Info: Dumping system service 'input_method' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\input_method.txt'. 2022-05-22 13:10:40 Info: No data for dump of system service 'inputflinger'. 2022-05-22 13:10:40 Info: No data for dump of system service 'ions'. 2022-05-22 13:10:40 Info: No data for dump of system service 'iphonesubinfo'. 2022-05-22 13:10:41 Info: No data for dump of system service 'iphonesubinfoEx'. 2022-05-22 13:10:41 Info: Dumping system service 'ipsec' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\ipsec.txt'. 2022-05-22 13:10:41 Info: Dumping system service 'isms' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\isms.txt'. 2022-05-22 13:10:41 Info: Dumping system service 'isub' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\isub.txt'. 2022-05-22 13:10:41 Info: No data for dump of system service 'isubstub'. 2022-05-22 13:10:41 Info: Dumping system service 'jobscheduler' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\jobscheduler.txt'. 2022-05-22 13:10:42 Info: No data for dump of system service 'launcherapps'. 2022-05-22 13:10:42 Info: Dumping system service 'lights' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\lights.txt'. 2022-05-22 13:10:42 Info: Dumping system service 'location' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\location.txt'. 2022-05-22 13:10:42 Info: Dumping system service 'lock_settings' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\lock_settings.txt'. 2022-05-22 13:10:42 Info: Dumping system service 'looper_stats' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\looper_stats.txt'. 2022-05-22 13:10:42 Info: Dumping system service 'manager' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\manager.txt'. 2022-05-22 13:10:42 Info: No data for dump of system service 'media.VTS'. 2022-05-22 13:10:42 Info: Dumping system service 'media.audio_flinger' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.audio_flinger.txt'. 2022-05-22 13:10:42 Info: Dumping system service 'media.audio_policy' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.audio_policy.txt'. 2022-05-22 13:10:43 Info: Dumping system service 'media.camera' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.camera.txt'. 2022-05-22 13:10:43 Info: No data for dump of system service 'media.camera.proxy'. 2022-05-22 13:10:43 Info: Dumping system service 'media.extractor' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.extractor.txt'. 2022-05-22 13:10:43 Info: Dumping system service 'media.metrics' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.metrics.txt'. 2022-05-22 13:10:43 Info: Dumping system service 'media.player' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.player.txt'. 2022-05-22 13:10:43 Info: Dumping system service 'media.resource_manager' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.resource_manager.txt'. 2022-05-22 13:10:44 Info: Dumping system service 'media_projection' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media_projection.txt'. 2022-05-22 13:10:44 Info: No data for dump of system service 'media_resource_monitor'. 2022-05-22 13:10:44 Info: Dumping system service 'media_router' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media_router.txt'. 2022-05-22 13:10:44 Info: Dumping system service 'media_session' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media_session.txt'. 2022-05-22 13:10:49 Info: Dumping system service 'meminfo' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\meminfo.txt'. 2022-05-22 13:10:49 Info: Dumping system service 'midi' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\midi.txt'. 2022-05-22 13:10:49 Info: Dumping system service 'mount' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\mount.txt'. 2022-05-22 13:10:50 Info: No data for dump of system service 'mtkIms'. 2022-05-22 13:10:50 Info: No data for dump of system service 'mtk_telecom'. 2022-05-22 13:10:50 Info: No data for dump of system service 'mtkconnmetrics'. 2022-05-22 13:10:50 Info: No data for dump of system service 'mtksimphonebook'. 2022-05-22 13:10:50 Info: No data for dump of system service 'mwis'. 2022-05-22 13:10:50 Info: No data for dump of system service 'netd_listener'. 2022-05-22 13:10:50 Info: Dumping system service 'netpolicy' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\netpolicy.txt'. 2022-05-22 13:10:50 Info: Dumping system service 'netstats' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\netstats.txt'. 2022-05-22 13:10:50 Info: Dumping system service 'network_management' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\network_management.txt'. 2022-05-22 13:10:50 Info: Dumping system service 'network_score' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\network_score.txt'. 2022-05-22 13:10:50 Info: Dumping system service 'network_stack' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\network_stack.txt'. 2022-05-22 13:10:51 Info: Dumping system service 'network_time_update_service' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\network_time_update_service.txt'. 2022-05-22 13:10:51 Info: Dumping system service 'network_watchlist' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\network_watchlist.txt'. 2022-05-22 13:10:51 Info: Dumping system service 'notification' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\notification.txt'. 2022-05-22 13:10:51 Info: No data for dump of system service 'oem_lock'. 2022-05-22 13:10:51 Info: No data for dump of system service 'otadexopt'. 2022-05-22 13:10:51 Info: Dumping system service 'overlay' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\overlay.txt'. 2022-05-22 13:10:54 Info: Dumping system service 'package' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\package.txt'. 2022-05-22 13:10:55 Info: No data for dump of system service 'package_native'. 2022-05-22 13:10:55 Info: No data for dump of system service 'permission'. 2022-05-22 13:10:55 Info: Dumping system service 'permissionmgr' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\permissionmgr.txt'. 2022-05-22 13:10:55 Info: No data for dump of system service 'permrecords'. 2022-05-22 13:10:55 Info: No data for dump of system service 'persistent_data_block'. 2022-05-22 13:10:56 Info: Dumping system service 'phone' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\phone.txt'. 2022-05-22 13:10:56 Info: No data for dump of system service 'phoneEx'. 2022-05-22 13:10:56 Info: Dumping system service 'pinner' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\pinner.txt'. 2022-05-22 13:10:56 Info: Dumping system service 'platform_compat' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\platform_compat.txt'. 2022-05-22 13:10:56 Info: No data for dump of system service 'platform_compat_native'. 2022-05-22 13:10:56 Info: Dumping system service 'power' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\power.txt'. 2022-05-22 13:10:56 Info: No data for dump of system service 'power_hal_mgr_service'. 2022-05-22 13:10:57 Info: Dumping system service 'print' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\print.txt'. 2022-05-22 13:10:57 Info: No data for dump of system service 'processinfo'. 2022-05-22 13:10:58 Info: Dumping system service 'procstats' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\procstats.txt'. 2022-05-22 13:10:58 Info: No data for dump of system service 'recovery'. 2022-05-22 13:10:58 Info: No data for dump of system service 'restrictions'. 2022-05-22 13:10:58 Info: Dumping system service 'role' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\role.txt'. 2022-05-22 13:10:58 Info: Dumping system service 'rollback' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\rollback.txt'. 2022-05-22 13:10:58 Info: Dumping system service 'runtime' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\runtime.txt'. 2022-05-22 13:10:58 Info: No data for dump of system service 'scheduling_policy'. 2022-05-22 13:10:58 Info: Dumping system service 'search' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\search.txt'. 2022-05-22 13:10:58 Info: No data for dump of system service 'search_engine_service'. 2022-05-22 13:10:58 Info: No data for dump of system service 'sec_key_att_app_id_provider'. 2022-05-22 13:10:58 Info: Dumping system service 'secure_element' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\secure_element.txt'. 2022-05-22 13:10:58 Info: No data for dump of system service 'sensor_privacy'. 2022-05-22 13:10:59 Info: Dumping system service 'sensorservice' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\sensorservice.txt'. 2022-05-22 13:10:59 Info: No data for dump of system service 'serial'. 2022-05-22 13:10:59 Info: Dumping system service 'servicediscovery' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\servicediscovery.txt'. 2022-05-22 13:10:59 Info: Dumping system service 'settings' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\settings.txt'. 2022-05-22 13:10:59 Info: Dumping system service 'shortcut' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\shortcut.txt'. 2022-05-22 13:10:59 Info: No data for dump of system service 'simphonebook'. 2022-05-22 13:10:59 Info: No data for dump of system service 'slice'. 2022-05-22 13:10:59 Info: No data for dump of system service 'soundtrigger'. 2022-05-22 13:10:59 Info: Dumping system service 'soundtrigger_middleware' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\soundtrigger_middleware.txt'. 2022-05-22 13:10:59 Info: Dumping system service 'stats' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\stats.txt'. 2022-05-22 13:10:59 Info: Dumping system service 'statscompanion' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\statscompanion.txt'. 2022-05-22 13:11:00 Info: No data for dump of system service 'statsmanager'. 2022-05-22 13:11:00 Info: Dumping system service 'statusbar' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\statusbar.txt'. 2022-05-22 13:11:00 Info: Dumping system service 'storaged' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\storaged.txt'. 2022-05-22 13:11:00 Info: No data for dump of system service 'storaged_pri'. 2022-05-22 13:11:00 Info: No data for dump of system service 'storagestats'. 2022-05-22 13:11:00 Info: No data for dump of system service 'system_config'. 2022-05-22 13:11:00 Info: No data for dump of system service 'system_update'. 2022-05-22 13:11:00 Info: Dumping system service 'telecom' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\telecom.txt'. 2022-05-22 13:11:00 Info: No data for dump of system service 'telephony.mtkregistry'. 2022-05-22 13:11:00 Info: Dumping system service 'telephony.registry' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\telephony.registry.txt'. 2022-05-22 13:11:01 Info: No data for dump of system service 'telephony_ims'. 2022-05-22 13:11:01 Info: No data for dump of system service 'testharness'. 2022-05-22 13:11:01 Info: Dumping system service 'tethering' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\tethering.txt'. 2022-05-22 13:11:01 Info: Dumping system service 'textclassification' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\textclassification.txt'. 2022-05-22 13:11:01 Info: Dumping system service 'textservices' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\textservices.txt'. 2022-05-22 13:11:01 Info: Dumping system service 'thermalservice' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\thermalservice.txt'. 2022-05-22 13:11:01 Info: Dumping system service 'time_detector' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\time_detector.txt'. 2022-05-22 13:11:01 Info: Dumping system service 'time_zone_detector' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\time_zone_detector.txt'. 2022-05-22 13:11:01 Info: Dumping system service 'trust' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\trust.txt'. 2022-05-22 13:11:01 Info: Dumping system service 'uimode' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\uimode.txt'. 2022-05-22 13:11:02 Info: Dumping system service 'updatelock' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\updatelock.txt'. 2022-05-22 13:11:02 Info: No data for dump of system service 'uri_grants'. 2022-05-22 13:11:02 Info: Dumping system service 'usagestats' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\usagestats.txt'. 2022-05-22 13:11:02 Info: Dumping system service 'usb' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\usb.txt'. 2022-05-22 13:11:02 Info: Dumping system service 'user' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\user.txt'. 2022-05-22 13:11:02 Info: Dumping system service 'vibrator' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\vibrator.txt'. 2022-05-22 13:11:03 Info: Dumping system service 'voiceinteraction' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\voiceinteraction.txt'. 2022-05-22 13:11:03 Info: No data for dump of system service 'vow_bridge'. 2022-05-22 13:11:03 Info: Dumping system service 'wallpaper' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wallpaper.txt'. 2022-05-22 13:11:03 Info: Dumping system service 'webviewupdate' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\webviewupdate.txt'. 2022-05-22 13:11:03 Info: Dumping system service 'wifi' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wifi.txt'. 2022-05-22 13:11:03 Info: Dumping system service 'wifinl80211' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wifinl80211.txt'. 2022-05-22 13:11:03 Info: Dumping system service 'wifip2p' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wifip2p.txt'. 2022-05-22 13:11:04 Info: Dumping system service 'wifiscanner' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wifiscanner.txt'. 2022-05-22 13:11:04 Info: Dumping system service 'window' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\window.txt'. 2022-05-22 13:11:04 Info: Dumping system service 'wos.face' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wos.face.txt'. 2022-05-22 13:11:04 Info: Finished pulling live data from device 'PT99652EA1222400797'. 2022-05-22 13:11:04 Info: The device 'PT99652EA1222400797' has device encryption turned on and requires a password. 'mag123' will be used for the backup password. 2022-05-22 13:11:04 Info: Uninstalling ACQUIRE agent from device 'PT99652EA1222400797'... 2022-05-22 13:11:13 Info: Unable to uninstall ACQUIRE agent from device 'PT99652EA1222400797'. System.InvalidOperationException: The package 'com.magnetforensics.acquire' could not be uninstalled. Parsed Result:Unknown Failure [DELETE_FAILED_INTERNAL_ERROR]
2022-05-22 13:11:13 Info: Could not uninstall previous agent from 'PT99652EA1222400797'. An exception here does not necessarily mean a concern. System.InvalidOperationException: The package 'com.magnetforensics.acquire' could not be uninstalled. Parsed Result:Unknown Failure [DELETE_FAILED_INTERNAL_ERROR] at Magnet.Imager.Imaging.Plugins.Android.Quick.Actions.UninstallPreviousAgentAction.Execute(IAndroidQuickImagerStepContext context)
2022-05-22 13:11:13 Info: Deploying ACQUIRE Agent to device 'PT99652EA1222400797'. 2022-05-22 13:11:24 Info: ACQUIRE Agent successfully installed on device 'PT99652EA1222400797'. 2022-05-22 13:11:26 Info: Waiting for device 'PT99652EA1222400797' to be unlocked. 2022-05-22 13:11:34 Info: User confirmed device is unlocked. 2022-05-22 13:11:34 Info: Starting backup process on device 'PT99652EA1222400797'. 2022-05-22 13:11:40 Info: Backing up device 'PT99652EA1222400797' using ADB 'Adb7'... 2022-05-22 13:11:40 Info: Creating backup of device 'PT99652EA1222400797' v11 at 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\backup.ab' with KeyValue flag. 2022-05-22 13:15:06 Info: Created backup of device 'PT99652EA1222400797' at 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\backup.ab'. 2022-05-22 13:15:06 Info: Extracting backup file 'D:\Walter\Android Image
- 2022-05-22 09-08-57\acquiring\backup.ab' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\adb-data.tar'. 2022-05-22 13:15:06 Error: The backup created from device 'PT99652EA1222400797' at 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\backup.ab' could not be extracted. Keeping original backup file. System.Security.Cryptography.CryptographicException: A decryptor stream could not be created for the provided parameters. at Magnet.AndroidBackupExtractor.CryptoStreamFactory.CreateCryptoStream(Stream inputStream, String password, Int32 androidBackupVersion) at Magnet.AndroidBackupExtractor.AndroidBackupExtractor.Extract(Stream inputStream, Stream outStream, String password, ILogger logger) at Magnet.AndroidBackupExtractor.AndroidBackupExtractor.Extract(String pathToAdbBackup, String outputFilePath, String password, ILogger logger) at Magnet.Imager.Imaging.Plugins.Android.Quick.Backups.AdbBackupManager.Backup(IDevice device, ILogger logger, String outputFolderPath, ICancellationToken cancellationToken, IHelpTextTriggerSource helpTextTriggerSource, String appName, String backupPassword, String desktopBackupPassword) System.Security.Cryptography.CryptographicException: Password was incorrect or the encryption method was not supported. at Magnet.AndroidBackupExtractor.AesBytesDecryptor.DecryptBytes(String password, Byte[] salt, Int32 rounds, Byte[] iv, Byte[] data) at Magnet.AndroidBackupExtractor.CryptoStreamFactory.CreateCryptoStream(Stream inputStream, String password, Int32 androidBackupVersion) System.Security.Cryptography.CryptographicException: Padding is invalid and cannot be removed. at System.Security.Cryptography.RijndaelManagedTransform.DecryptData(Byte[] inputBuffer, Int32 inputOffset, Int32 inputCount, Byte[]& outputBuffer, Int32 outputOffset, PaddingMode paddingMode, Boolean fLast) at System.Security.Cryptography.RijndaelManagedTransform.TransformFinalBlock(Byte[] inputBuffer, Int32 inputOffset, Int32 inputCount) at System.Security.Cryptography.CryptoStream.FlushFinalBlock() at System.Security.Cryptography.CryptoStream.Dispose(Boolean disposing) at System.IO.Stream.Close() at Magnet.AndroidBackupExtractor.AesBytesDecryptor.AesDecrypt(Byte[] key, Byte[] iv, Byte[] data)
2022-05-22 13:15:06 Info: Waiting for device 'PT99652EA1222400797' to be unlocked. 2022-05-22 13:25:06 Info: User did not confirmed that the device is unlocked. 2022-05-22 13:25:06 Info: Starting ACQUIRE Agent on device 'PT99652EA1222400797'. 2022-05-22 13:26:12 Info: Successfully allowed 6 permissions on device 'PT99652EA1222400797'. 2022-05-22 13:26:12 Info: Waiting for ACQUIRE Agent to finish on device 'PT99652EA1222400797'. 2022-05-22 13:27:00 Info: Streaming data from device 'PT99652EA1222400797'. 2022-05-22 13:27:04 Info: Streaming data over port 56052 to destination file 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\AcquireAgentData.zip'. 2022-05-22 13:27:04 Info: Done streaming data from device 'PT99652EA1222400797' on port 56052. 2022-05-22 13:27:04 Info: ACQUIRE Agent finished running on device 'PT99652EA1222400797'. 2022-05-22 13:27:18 Info: Pulling /sdcard/ from device 'PT99652EA1222400797'... 2022-05-22 13:27:35 Info: Pushing busybox to device 'PT99652EA1222400797' 2022-05-22 13:27:35 Info: Busybox successfully pushed to device 'PT99652EA1222400797' 2022-05-22 13:30:36 Info: Removing busybox from device 'PT99652EA1222400797' 2022-05-22 13:30:46 Info: busybox removed successfully from device 'PT99652EA1222400797' 2022-05-22 13:31:01 Info: Finished pulling /sdcard/ from device 'PT99652EA1222400797'. 2022-05-22 13:31:01 Info: Pulling /storage/sdcard0/ from device 'PT99652EA1222400797'... 2022-05-22 13:31:11 Info: Pushing busybox to device 'PT99652EA1222400797' 2022-05-22 13:31:11 Info: Busybox successfully pushed to device 'PT99652EA1222400797' 2022-05-22 13:31:11 Info: Removing busybox from device 'PT99652EA1222400797' 2022-05-22 13:31:12 Info: busybox removed successfully from device 'PT99652EA1222400797' 2022-05-22 13:31:14 Info: Finished pulling /storage/sdcard0/ from device 'PT99652EA1222400797'. 2022-05-22 13:31:14 Info: Pulling /storage/sdcard1/ from device 'PT99652EA1222400797'... 2022-05-22 13:31:29 Info: Pushing busybox to device 'PT99652EA1222400797' 2022-05-22 13:31:29 Info: Busybox successfully pushed to device 'PT99652EA1222400797' 2022-05-22 13:31:29 Info: Removing busybox from device 'PT99652EA1222400797' 2022-05-22 13:31:30 Info: busybox removed successfully from device 'PT99652EA1222400797' 2022-05-22 13:31:34 Info: Finished pulling /storage/sdcard1/ from device 'PT99652EA1222400797'. 2022-05-22 13:31:34 Info: Compressing acquired data from device 'PT99652EA1222400797' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\HMD Global Nokia G10 Quick Image.zip'. 2022-05-22 13:31:34 Info: Compressing directory 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\HMD Global Nokia G10 Quick Image.zip'... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\backup.ab... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\adb-data.tar... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\sdcard.tar.gz... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\storage-sdcard0.tar.gz... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\storage-sdcard1.tar.gz... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\usage_stats.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\task_stats.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\wifi_stats.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\device_properties.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\device_datetime_utc.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\DockObserver.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\SurfaceFlinger.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\accessibility.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\account.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\activity.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\adb.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\alarm.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\android.os.UpdateEngineService.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\app_binding.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\appops.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\appwidget.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\audio.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\autofill.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\backup.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\battery.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\batterystats.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\binder_calls_stats.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\blob_store.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\bluetooth_manager.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\cacheinfo.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\carrier_config.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\color_display.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\connectivity.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\connmetrics.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\content.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\cpuinfo.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\dbinfo.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\device_policy.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\deviceidle.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\devicestoragemonitor.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\diskstats.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\display.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\dreams.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\dropbox.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\emergency_affordance.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\ethernet.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\fingerprint.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\gfxinfo.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\gpu.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\graphicsstats.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\hardware_properties.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\incidentcompanion.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\incremental.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\input.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\input_method.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\ipsec.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\isms.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\isub.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\jobscheduler.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\lights.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\location.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\lock_settings.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\looper_stats.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\manager.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.audio_flinger.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.audio_policy.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.camera.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.extractor.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.metrics.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.player.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media.resource_manager.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media_projection.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media_router.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\media_session.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\meminfo.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\midi.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\mount.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\netpolicy.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\netstats.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\network_management.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\network_score.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\network_stack.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\network_time_update_service.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\network_watchlist.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\notification.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\overlay.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\package.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\permissionmgr.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\phone.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\pinner.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\platform_compat.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\power.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\print.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\procstats.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\role.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\rollback.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\runtime.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\search.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\secure_element.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\sensorservice.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\servicediscovery.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\settings.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\shortcut.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\soundtrigger_middleware.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\stats.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\statscompanion.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\statusbar.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\storaged.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\telecom.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\telephony.registry.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\tethering.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\textclassification.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\textservices.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\thermalservice.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\time_detector.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\time_zone_detector.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\trust.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\uimode.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\updatelock.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\usagestats.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\usb.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\user.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\vibrator.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\voiceinteraction.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wallpaper.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\webviewupdate.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wifi.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wifinl80211.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wifip2p.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wifiscanner.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\window.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Live Data\Dumpsys Data\wos.face.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\Android AD ID.txt... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\agent_accounts.db... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\contacts3.db-journal... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\agent_accounts.db-journal... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\contacts2.db-journal... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\agent_mmssms.db-journal... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\contacts2.db... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\agent_mmssms.db... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\contacts3.db... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\calendar.db-journal... 2022-05-22 13:31:34 Debug: adding D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring\Agent Data\calendar.db... 2022-05-22 13:31:34 Debug: saving.... 2022-05-22 13:32:38 Info: Compressed directory 'D:\Walter\Android Image - 2022-05-22 09-08-57\acquiring' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\HMD Global Nokia G10 Quick Image.zip'. 2022-05-22 13:32:38 Info: Compressed acquired data from device 'PT99652EA1222400797' to 'D:\Walter\Android Image - 2022-05-22 09-08-57\HMD Global Nokia G10 Quick Image.zip'. 2022-05-22 13:32:38 Info: Uninstalling ACQUIRE agent from device 'PT99652EA1222400797'... 2022-05-22 13:32:59 Info: Logcat dump: --------- beginning of main --------- beginning of system 05-22 09:30:28.205 1219 1252 E KernelCpuSpeedReader: Failed to read cpu-freq: /sys/devices/system/cpu/cpu4/cpufreq/stats/time_in_state: open failed: ENOENT (No such file or directory) 05-22 09:30:28.206 1219 1252 E KernelCpuSpeedReader: Failed to read cpu-freq: /sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state: open failed: ENOENT (No such file or directory) 05-22 09:30:28.220 446 446 W Binder:446_1: type=1400 audit(0.0:12657): avc: denied { read } for name="wakeup114" dev="sysfs" ino=36982 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs_batteryinfo:s0 tclass=dir permissive=0 05-22 09:30:28.224 446 446 W Binder:446_1: type=1400 audit(0.0:12658): avc: denied { read } for name="wakeup24" dev="sysfs" ino=30435 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs:s0 tclass=dir permissive=0 05-22 09:30:28.224 446 452 E @.: Error opening kernel wakelock stats for: wakeup114: Permission denied 05-22 09:30:28.229 446 452 E @.: Error opening kernel wakelock stats for: wakeup24: Permission denied 05-22 09:30:28.268 446 446 W Binder:446_1: type=1400 audit(0.0:12659): avc: denied { read } for name="wakeup113" dev="sysfs" ino=36941 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs_batteryinfo:s0 tclass=dir permissive=0 05-22 09:30:28.270 446 452 E @.***: Error opening kernel wakelock stats for: wakeup113: Permission denied 05-22 09:30:28.287 1219 1252 E BatteryStatsService: Unable to load Power Hal or power.stats HAL 05-22 09:30:28.950 1219 1336 W BestClock: java.time.DateTimeException: Missing NTP fix 05-22 09:30:28.957 1219 1336 W BestClock: java.time.DateTimeException: Missing NTP fix 05-22 09:30:28.961 1219 1336 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.android.server.action.NETWORK_STATS_UPDATED flg=0x40000000 } 05-22 09:30:28.962 1219 1342 W BestClock: java.time.DateTimeException: Missing NTP fix 05-22 09:30:28.970 1219 1342 W BestClock: java.time.DateTimeException: Missing NTP fix 05-22 09:30:30.134 1219 1336 W BestClock: java.time.DateTimeException: Missing NTP fix 05-22 09:30:30.150 1219 1336 W BestClock: java.time.DateTimeException: Missing NTP fix 05-22 09:30:30.157 1219 1336 W ActivityManager: [HMDenterprise broadcastIntentLocked] intent=Intent { act=com.android.server.action.NETWORK_STATS_UPDATED flg=0x40000000 } 05-22 09:30:30.161 1219 1342 W BestClock: java.time.DateTimeException: Missing NTP fix 05-22 09:30:30.179 1219 1342 W BestClock: java.time.DateTimeException: Missing NTP fix 05-22 09:30:33.078 3965 3965 E droid.apps.doc: Not starting debugger since process cannot load the jdwp agent. 05-22 09:30:33.184 3965 3965 W droid.apps.doc: JIT pr
I've been having issues building aleappGUI on Windows 11 Developer Preview with Python 3.10.
I had to rebuild the .spec files because the GitHub versions didn't parse properly.
Then when I ran the GUI from the dist directory, it couldn't find python310.dll even though it was in the PATH. So I copied it from the Program Files folder into the aleapp.GUI dist folder
This time it worked but the output was a bunch of lines like the following:
The images were zip files aquired using Magnet Acquire.
Suggestions are appreciated.