videokit-ai / natdevice

High performance, cross-platform media device streaming for Unity Engine.
https://github.com/natmlx/videokit
Apache License 2.0
27 stars 2 forks source link

Crash when access microphone (works on iOS and editor, crashes on Android) #18

Closed marvpaul closed 2 years ago

marvpaul commented 2 years ago

experience a crash on Android (Samsung Galaxy Note 10) when using the NatDevice 1.3. It crashes when trying to get Microphone input.

Here's the ADB log. I shortly checked it and from my understanding the following gets reported:

marvpaul commented 2 years ago

Log for an empty test scene which only includes Lanre's test code

/* 
*   NatDevice
*   Copyright (c) 2022 NatML Inc. All Rights Reserved.
*/

namespace NatML.Devices.Tests {

    using System;
    using System.Collections;
    using UnityEngine;
    using Unity.Collections.LowLevel.Unsafe;

    sealed class AudioBufferTest : MonoBehaviour {

        enum SampleRate {
            _8000 = 8_000,
            _16000 = 16_000,
            _22050 = 22_050,
            _24000 = 24_000,
            _44100 = 44_100,
            _48000 = 48_000
        }

        enum ChannelCount {
            _1 = 1,
            _2 = 2
        }

        [SerializeField] SampleRate sampleRate = SampleRate._44100;
        [SerializeField] ChannelCount channelCount = ChannelCount._1;

        IEnumerator Start () {
            Application.SetStackTraceLogType(LogType.Log, StackTraceLogType.None);
            // Get audio device
            var query = new MediaDeviceQuery(MediaDeviceCriteria.AudioDevice);
            var device = query.current as AudioDevice;
            // Start running
            device.sampleRate = (int)sampleRate;
            device.channelCount = (int)channelCount;
            device.StartRunning(OnAudioBuffer);
            // Wait and stop
            yield return new WaitForSeconds(5f);
            device.StopRunning();
        }

        unsafe void OnAudioBuffer (AudioBuffer buffer) {
            Debug.Log($"Sample buffer: {(IntPtr)buffer.sampleBuffer.GetUnsafePtr()}");
            Debug.Log($"Sample count: {buffer.sampleBuffer.Length}");
            Debug.Log($"Sample rate: {buffer.sampleRate}");
            Debug.Log($"Channel count: {buffer.channelCount}");
            Debug.Log($"Timestamp: {buffer.timestamp}");
        }
    }
}
11-02 21:36:01.298  1014  2900 I SoundTriggerMiddlewareLogging: setCaptureState[this=com.android.server.soundtrigger_middleware.SoundTriggerMiddlewareImpl@1f4e426, caller=1041/632](false)
11-02 21:36:01.299   632 16851 V APM_AudioPolicyManager: releaseInput exit
11-02 21:36:01.299   632 16851 E AudioFlinger: createRecord() getInputForAttr return error -1
11-02 21:36:01.299 17552 19158 E IAudioFlinger: createRecord returned error -1
11-02 21:36:01.299 17552 19158 E AudioRecord: createRecord_l(733): AudioFlinger could not create record track, status: -1
11-02 21:36:01.299 17552 19158 W AudioRecord: restoreRecord_l(733): failed status -1, retries 1
11-02 21:36:01.300   632  2966 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c662490
11-02 21:36:01.300 17552 19158 E AudioRecord: start(733): status -1
11-02 21:36:01.300   632  2966 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.301   632 17177 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c6853b0
11-02 21:36:01.300 17552 19158 D NatML   : AudioDevice 12 started recording with format 44100Hz 1ch
11-02 21:36:01.301   632 17177 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.301   632   857 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c6622d0
11-02 21:36:01.301   632   857 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.301   632 17810 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c662190
11-02 21:36:01.302   632 17810 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.302 17552 19331 W AudioRecord: restoreRecord_l(733): dead IAudioRecord, creating a new one from obtainBuffer()
11-02 21:36:01.302   632 17177 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc662090
11-02 21:36:01.303   632 17177 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.303   632 17810 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc64e040
11-02 21:36:01.303   632 17810 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.303   632   857 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc65e080
11-02 21:36:01.304   632   857 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.304   632  2966 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc6720d0
11-02 21:36:01.304   632  2966 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.306   632  2966 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c662490
11-02 21:36:01.306   632  2966 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.306   632  2966 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c685850
11-02 21:36:01.306   632  2966 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.307   632 17177 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c6622d0
11-02 21:36:01.307   632 17177 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.307   632 17810 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc64e040
11-02 21:36:01.307   632 17810 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.307   632 17177 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c685170
11-02 21:36:01.307   632 17177 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.308   632   857 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc65e080
11-02 21:36:01.308   632   857 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.309   632 17177 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc65e080
11-02 21:36:01.309   632 17177 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.309   632  2966 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc6720d0
11-02 21:36:01.309   632  2966 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.310   632  5025 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c685b10
11-02 21:36:01.310   632  5025 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.310   632  5025 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc646020
11-02 21:36:01.310   632  5025 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.316   549   711 E Netd    : getNetworkForDns: getNetId from enterpriseCtrl is netid 0
11-02 21:36:01.317   632 16851 V APM_AudioPolicyManager: getInputForAttr() source 0, sampling rate 44100, format 0x1, channel mask 0x10, session 5001, flags 0 attributes={ Content type: AUDIO_CONTENT_TYPE_UNKNOWN Usage: AUDIO_USAGE_UNKNOWN Source: AUDIO_SOURCE_DEFAULT Flags: 0x800 Tags:  }
11-02 21:36:01.318  1014  1547 I EDMNativeHelperService: isMicrophoneEnabled
11-02 21:36:01.318  1014  1547 D RestrictionPolicy: userId: 0, isMicrophoneEnabledAsUser : true
11-02 21:36:01.320  1014  2896 I EDMNativeHelperService: isAudioRecordAllowed
11-02 21:36:01.323  1014  2896 D RestrictionPolicy: userId: 0 isAudioRecordAllowed : true
11-02 21:36:01.324   632 16851 I MultiRecordManager: openMultiRecordAllowed() skipMultiRecord 1, openMultiRecordAllowed 0, moduleName primary, source 1, flag 0
11-02 21:36:01.324   632 16851 I MultiRecordManager: openInputStream() skipMultiRecord
11-02 21:36:01.324   560   587 D audio_hw_primary: device-adev_open_input_stream: enter: io_handle (1670), sample_rate(44100) channel_mask(0x10) format(0x1) framecount(0) devices(0x80000040) flags(0) sources(1)
11-02 21:36:01.324   560   587 I audio_hw_primary: device-adev_open_input_stream: requested to downlink voice for telephony rx device
11-02 21:36:01.324   560   587 I audio_hw_primary: device-adev_open_input_stream: ptt call input samplerate 44100
11-02 21:36:01.324   560   587 D audio_hw_proxy_9820: telerx_in-check_conversion: needs re-channeling to 1 from 2
11-02 21:36:01.324   560   587 D PostProcessConvertor: PostProcessConvertorInit ++ OSR 44100, ISR 32000, CC 2, OBW 1, IBW 1 
11-02 21:36:01.324   560   587 I SoundAlive_SRC384 arch32: SRC384 Create
11-02 21:36:01.324   560   587 I SoundAlive_SRC384 arch32: SoundAlive_SRC384() ID = 217 GID = 218
11-02 21:36:01.324   560   587 I SoundAlive_SRC384 arch32: SoundAlive_SRC384: Instance 217 Init(outFs 7, InFs 7, chnum 0, outBW 0, inBW 0)
11-02 21:36:01.324   560   587 I Samsung_SoundAlive_SRC arch32: SRC384 version Samsung SoundAlive SRC ver320 arch32  2020.11.26 (Cppref for ARM32, ver.300.c 32bit 07_10_2016 based)
11-02 21:36:01.324   560   587 D SoundAliveResampler: [SoundAliveResampler] Init+++
11-02 21:36:01.324   560   587 I SoundAlive_SRC384 arch32: SoundAlive_SRC384: Instance 217 Init(outFs 7, InFs 6, chnum 2, outBW 0, inBW 0)
11-02 21:36:01.324   560   587 I Samsung_SoundAlive_SRC arch32: SRC384 version Samsung SoundAlive SRC ver320 arch32  2020.11.26 (Cppref for ARM32, ver.300.c 32bit 07_10_2016 based)
11-02 21:36:01.324   560   587 I audio_hw_proxy_9820: telerx_in-check_conversion: realloc conversion_buffer with 11292 bytes
11-02 21:36:01.324   560   587 V audio_hw_proxy_9820: proxy-check_conversion: resampler created in-samplerate 32000 out-samplereate 44100
11-02 21:36:01.324   560   587 I audio_hw_proxy_9820: proxy-proxy_create_capture_stream: opened Proxy Stream(telerx_in)
11-02 21:36:01.324   560   587 I audio_hw_primary: telerx_in-adev_open_input_stream: transited to Standby
11-02 21:36:01.324   560   587 D audio_hw_primary: adev_open_input_stream: preprocessing_latency = 0
11-02 21:36:01.324   560   587 I audio_hw_primary: device-adev_open_input_stream: opened telerx_in stream
11-02 21:36:01.324   560   587 D audio_hw_primary: telerx_in-in_update_sink_metadata: called, but not implemented yet
11-02 21:36:01.324   560   587 D audio_hw_primary: telerx_in-in_update_sink_metadata: This stream has 1 tracks
11-02 21:36:01.324   560   587 D audio_hw_primary: 1 Track has Source(1), Gain(1.000000)
11-02 21:36:01.324   560   587 D audio_hw_primary: 1 Track usage : callrecord_downlink)
11-02 21:36:01.325   560   587 V sec_audio_hw: sec_dev_open_audio_stream: enter: handle 1670, type 1, tag 
11-02 21:36:01.325   560   587 V sec_audio_hw: sec_dev_open_audio_stream: exit
11-02 21:36:01.329   798   821 D AudioAnalytics: gc(400, 500): key size:400
11-02 21:36:01.332   632 19335 I AudioFlinger: AudioFlinger's thread 0x7efc81b040 tid=19335 ready to run
11-02 21:36:01.335  1014  2896 I system_server: oneway function results will be dropped but finished with status OK and parcel size 4
11-02 21:36:01.336  1014  2896 I system_server: oneway function results will be dropped but finished with status OK and parcel size 4
11-02 21:36:01.336  1014  2896 I system_server: oneway function results will be dropped but finished with status OK and parcel size 4
11-02 21:36:01.336   632 16851 V APM_AudioPolicyManager: getInputForAttr() returns input 1670 type 4 selectedDeviceId 12 for port ID 741
11-02 21:36:01.337  1014  2896 I EDMNativeHelperService: isPackageInAvrWhitelist
11-02 21:36:01.338  1014  2896 D ApplicationPolicy: isPackageInWhitelistInternal is called for type - 3, userId - 0, packageUid - 10332
11-02 21:36:01.338  1014  2896 D ApplicationPolicy: isPackageInWhitelistInternal match not found.. 
11-02 21:36:01.338   632 16851 E AudioPolicyIntefaceImpl: getInputForAttr() permission denied: capture not allowed
11-02 21:36:01.338   632 16851 V APM_AudioPolicyManager: releaseInput portId 741
11-02 21:36:01.338   632 16851 V APM_AudioPolicyManager: releaseInput 1670
11-02 21:36:01.338   632 16851 V APM_AudioPolicyManager: closeInput(1670)
11-02 21:36:01.343   632 16851 I MultiRecordManager: closeInputStream() skipMultiRecord
11-02 21:36:01.344   560   587 I audio_hw_primary: telerx_in-adev_close_input_stream: try to close capture stream
11-02 21:36:01.344   560   587 V audio_hw_proxy_9820: telerx_in-proxy_destroy_capture_stream: released resampler
11-02 21:36:01.344   560   587 I SoundAlive_SRC384 arch32: SRC384 Destroy
11-02 21:36:01.344   560   587 I SoundAlive_SRC384 arch32: ~SoundAlive_SRC384(): instance 217
11-02 21:36:01.344   560   587 I audio_hw_primary: telerx_in-adev_close_input_stream: closed capture stream
11-02 21:36:01.344   560   587 V sec_audio_hw: sec_dev_close_audio_stream: enter
11-02 21:36:01.344   560   587 V sec_audio_hw: sec_dev_close_audio_stream: close sec audio stream for handle 1670, type 1
11-02 21:36:01.344   560   587 V sec_audio_hw: sec_dev_close_audio_stream: exit
11-02 21:36:01.344  1014  2900 I SoundTriggerMiddlewareLogging: setCaptureState[this=com.android.server.soundtrigger_middleware.SoundTriggerMiddlewareImpl@1f4e426, caller=1041/632](false)
11-02 21:36:01.344  1014  2896 I system_server: oneway function results will be dropped but finished with status OK and parcel size 4
11-02 21:36:01.345  1014  2896 I system_server: oneway function results will be dropped but finished with status OK and parcel size 4
11-02 21:36:01.345   632 16851 V APM_AudioPolicyManager: releaseInput exit
11-02 21:36:01.345   632 16851 E AudioFlinger: createRecord() getInputForAttr return error -1
11-02 21:36:01.345 17552 19331 E IAudioFlinger: createRecord returned error -1
11-02 21:36:01.345 17552 19331 E AudioRecord: createRecord_l(733): AudioFlinger could not create record track, status: -1
11-02 21:36:01.345 17552 19331 W AudioRecord: restoreRecord_l(733): failed status -1, retries 3
11-02 21:36:01.345  1014  2896 I system_server: oneway function results will be dropped but finished with status OK and parcel size 4
11-02 21:36:01.346   632  2966 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c662490
11-02 21:36:01.346   632  2966 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.346   632 17177 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c6622d0
11-02 21:36:01.346   632 17177 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.346   632  5025 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c685750
11-02 21:36:01.346   632  5025 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.346   632 17810 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c6618f0
11-02 21:36:01.346   632 17810 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.346   632 17177 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc65e080
11-02 21:36:01.346   632 17177 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.346   632 17810 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc64e040
11-02 21:36:01.347   632 17810 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.347   632 17177 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc65e080
11-02 21:36:01.348   632 17177 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.348   632  2966 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc6720d0
11-02 21:36:01.348   632  2966 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.349  1014  2896 D NetdEventListenerService: DNS Requested by : 603, 10332
11-02 21:36:01.350   632  2966 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c685850
11-02 21:36:01.350   632  2966 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.351   632 17810 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc64e040
11-02 21:36:01.351   632 17810 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.352   632 17177 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c662190
11-02 21:36:01.352   632 17177 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.352   632 17810 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c6618f0
11-02 21:36:01.352   632 17810 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.353   632 17177 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc65e080
11-02 21:36:01.353   632 17177 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.353   632  5025 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c685b10
11-02 21:36:01.353   632  5025 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.353   632  5025 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc646020
11-02 21:36:01.353   632  5025 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.353   632 17810 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc64e040
11-02 21:36:01.353   632 17810 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.354   549   717 E Netd    : getNetworkForDns: getNetId from enterpriseCtrl is netid 0
11-02 21:36:01.845 17552 19331 I BpBinder: onLastStrongRef automatically unlinking death recipients: <uncached descriptor>
11-02 21:36:01.852   632  2966 V APM_AudioPolicyManager: getInputForAttr() source 0, sampling rate 44100, format 0x1, channel mask 0x10, session 5001, flags 0 attributes={ Content type: AUDIO_CONTENT_TYPE_UNKNOWN Usage: AUDIO_USAGE_UNKNOWN Source: AUDIO_SOURCE_DEFAULT Flags: 0x800 Tags:  }
11-02 21:36:01.853  1014  2900 I EDMNativeHelperService: isMicrophoneEnabled
11-02 21:36:01.854  1014  2900 D RestrictionPolicy: userId: 0, isMicrophoneEnabledAsUser : true
11-02 21:36:01.855  1014  2900 I EDMNativeHelperService: isAudioRecordAllowed
11-02 21:36:01.855  1014  2900 D RestrictionPolicy: userId: 0 isAudioRecordAllowed : true
11-02 21:36:01.856   632  2966 I MultiRecordManager: openMultiRecordAllowed() skipMultiRecord 1, openMultiRecordAllowed 0, moduleName primary, source 1, flag 0
11-02 21:36:01.856   632  2966 I MultiRecordManager: openInputStream() skipMultiRecord
11-02 21:36:01.856   560 16808 D audio_hw_primary: device-adev_open_input_stream: enter: io_handle (1678), sample_rate(44100) channel_mask(0x10) format(0x1) framecount(0) devices(0x80000040) flags(0) sources(1)
11-02 21:36:01.856   560 16808 I audio_hw_primary: device-adev_open_input_stream: requested to downlink voice for telephony rx device
11-02 21:36:01.856   560 16808 I audio_hw_primary: device-adev_open_input_stream: ptt call input samplerate 44100
11-02 21:36:01.856   560 16808 D audio_hw_proxy_9820: telerx_in-check_conversion: needs re-channeling to 1 from 2
11-02 21:36:01.856   560 16808 D PostProcessConvertor: PostProcessConvertorInit ++ OSR 44100, ISR 32000, CC 2, OBW 1, IBW 1 
11-02 21:36:01.857   560 16808 I SoundAlive_SRC384 arch32: SRC384 Create
11-02 21:36:01.857   560 16808 I SoundAlive_SRC384 arch32: SoundAlive_SRC384() ID = 218 GID = 219
11-02 21:36:01.857   560 16808 I SoundAlive_SRC384 arch32: SoundAlive_SRC384: Instance 218 Init(outFs 7, InFs 7, chnum 0, outBW 0, inBW 0)
11-02 21:36:01.857   560 16808 I Samsung_SoundAlive_SRC arch32: SRC384 version Samsung SoundAlive SRC ver320 arch32  2020.11.26 (Cppref for ARM32, ver.300.c 32bit 07_10_2016 based)
11-02 21:36:01.857   560 16808 D SoundAliveResampler: [SoundAliveResampler] Init+++
11-02 21:36:01.857   560 16808 I SoundAlive_SRC384 arch32: SoundAlive_SRC384: Instance 218 Init(outFs 7, InFs 6, chnum 2, outBW 0, inBW 0)
11-02 21:36:01.857   560 16808 I Samsung_SoundAlive_SRC arch32: SRC384 version Samsung SoundAlive SRC ver320 arch32  2020.11.26 (Cppref for ARM32, ver.300.c 32bit 07_10_2016 based)
11-02 21:36:01.857   560 16808 I audio_hw_proxy_9820: telerx_in-check_conversion: realloc conversion_buffer with 11292 bytes
11-02 21:36:01.857   560 16808 V audio_hw_proxy_9820: proxy-check_conversion: resampler created in-samplerate 32000 out-samplereate 44100
11-02 21:36:01.857   560 16808 I audio_hw_proxy_9820: proxy-proxy_create_capture_stream: opened Proxy Stream(telerx_in)
11-02 21:36:01.857   560 16808 I audio_hw_primary: telerx_in-adev_open_input_stream: transited to Standby
11-02 21:36:01.857   560 16808 D audio_hw_primary: adev_open_input_stream: preprocessing_latency = 0
11-02 21:36:01.857   560 16808 I audio_hw_primary: device-adev_open_input_stream: opened telerx_in stream
11-02 21:36:01.857   560 16808 D audio_hw_primary: telerx_in-in_update_sink_metadata: called, but not implemented yet
11-02 21:36:01.857   560 16808 D audio_hw_primary: telerx_in-in_update_sink_metadata: This stream has 1 tracks
11-02 21:36:01.857   560 16808 D audio_hw_primary: 1 Track has Source(1), Gain(1.000000)
11-02 21:36:01.857   560 16808 D audio_hw_primary: 1 Track usage : callrecord_downlink)
11-02 21:36:01.858   560 16808 V sec_audio_hw: sec_dev_open_audio_stream: enter: handle 1678, type 1, tag 
11-02 21:36:01.858   560 16808 V sec_audio_hw: sec_dev_open_audio_stream: exit
11-02 21:36:01.861   632 19338 I AudioFlinger: AudioFlinger's thread 0x7efc81b040 tid=19338 ready to run
11-02 21:36:01.863   632  2966 V APM_AudioPolicyManager: getInputForAttr() returns input 1678 type 4 selectedDeviceId 12 for port ID 743
11-02 21:36:01.864  1014  2896 I EDMNativeHelperService: isPackageInAvrWhitelist
11-02 21:36:01.864   640   640 I SurfaceFlinger: SFWD update time=245550925703713
11-02 21:36:01.865  1014  2900 I system_server: oneway function results will be dropped but finished with status OK and parcel size 4
11-02 21:36:01.865  1014  2900 I system_server: oneway function results will be dropped but finished with status OK and parcel size 4
11-02 21:36:01.865  1014  2896 D ApplicationPolicy: isPackageInWhitelistInternal is called for type - 3, userId - 0, packageUid - 10332
11-02 21:36:01.865  1014  2900 I system_server: oneway function results will be dropped but finished with status OK and parcel size 4
11-02 21:36:01.866  1014  2896 D ApplicationPolicy: isPackageInWhitelistInternal match not found.. 
11-02 21:36:01.866   632  2966 E AudioPolicyIntefaceImpl: getInputForAttr() permission denied: capture not allowed
11-02 21:36:01.867   632  2966 V APM_AudioPolicyManager: releaseInput portId 743
11-02 21:36:01.867   632  2966 V APM_AudioPolicyManager: releaseInput 1678
11-02 21:36:01.867   632  2966 V APM_AudioPolicyManager: closeInput(1678)
11-02 21:36:01.874   632  2966 I MultiRecordManager: closeInputStream() skipMultiRecord
11-02 21:36:01.875  1014  2896 I system_server: oneway function results will be dropped but finished with status OK and parcel size 4
11-02 21:36:01.875   560 16808 I audio_hw_primary: telerx_in-adev_close_input_stream: try to close capture stream
11-02 21:36:01.876   560 16808 V audio_hw_proxy_9820: telerx_in-proxy_destroy_capture_stream: released resampler
11-02 21:36:01.876   560 16808 I SoundAlive_SRC384 arch32: SRC384 Destroy
11-02 21:36:01.876   560 16808 I SoundAlive_SRC384 arch32: ~SoundAlive_SRC384(): instance 218
11-02 21:36:01.876  1014  2896 I system_server: oneway function results will be dropped but finished with status OK and parcel size 4
11-02 21:36:01.876   560 16808 I audio_hw_primary: telerx_in-adev_close_input_stream: closed capture stream
11-02 21:36:01.876   560 16808 V sec_audio_hw: sec_dev_close_audio_stream: enter
11-02 21:36:01.876   560 16808 V sec_audio_hw: sec_dev_close_audio_stream: close sec audio stream for handle 1678, type 1
11-02 21:36:01.876   560 16808 V sec_audio_hw: sec_dev_close_audio_stream: exit
11-02 21:36:01.876  1014  2896 I system_server: oneway function results will be dropped but finished with status OK and parcel size 4
11-02 21:36:01.877  1014  2900 I SoundTriggerMiddlewareLogging: setCaptureState[this=com.android.server.soundtrigger_middleware.SoundTriggerMiddlewareImpl@1f4e426, caller=1041/632](false)
11-02 21:36:01.878   632  2966 V APM_AudioPolicyManager: releaseInput exit
11-02 21:36:01.878   632  2966 E AudioFlinger: createRecord() getInputForAttr return error -1
11-02 21:36:01.879 17552 19331 E IAudioFlinger: createRecord returned error -1
11-02 21:36:01.879 17552 19331 E AudioRecord: createRecord_l(733): AudioFlinger could not create record track, status: -1
11-02 21:36:01.879 17552 19331 W AudioRecord: restoreRecord_l(733): failed status -1, retries 2
11-02 21:36:01.879   632  5025 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c685750
11-02 21:36:01.879   632  5025 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.879   632 17810 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c662490
11-02 21:36:01.879   632 17810 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.879   632 17177 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c6622d0
11-02 21:36:01.879   632 17177 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.880   632 16851 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c6618f0
11-02 21:36:01.880   632 16851 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.880   632  5025 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc646020
11-02 21:36:01.880   632  5025 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.880   632 17810 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc64e040
11-02 21:36:01.880   632 17810 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.880   632 17177 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc65e080
11-02 21:36:01.880   632 17177 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.882   632  5025 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc646020
11-02 21:36:01.882   632  5025 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.883   632 16851 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c662490
11-02 21:36:01.883   632 16851 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.884   632  5025 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c685b10
11-02 21:36:01.884   632  5025 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.884   632  5025 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c685750
11-02 21:36:01.884   632  5025 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.884   632 16851 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc64e040
11-02 21:36:01.884   632 16851 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.885   632 16851 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc64e040
11-02 21:36:01.885   632 16851 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.886   632 17177 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc65e080
11-02 21:36:01.886   632 17177 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:01.886   632  5025 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c685b10
11-02 21:36:01.886   632  5025 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:01.887   632 16851 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc64e040
11-02 21:36:01.887   632 16851 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:02.314   632  5025 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c685b10
11-02 21:36:02.314   632  5025 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:02.314   632  5025 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc646020
11-02 21:36:02.314   632  5025 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:02.379 17552 19331 I BpBinder: onLastStrongRef automatically unlinking death recipients: <uncached descriptor>
11-02 21:36:02.388   632  5025 V APM_AudioPolicyManager: getInputForAttr() source 0, sampling rate 44100, format 0x1, channel mask 0x10, session 5001, flags 0 attributes={ Content type: AUDIO_CONTENT_TYPE_UNKNOWN Usage: AUDIO_USAGE_UNKNOWN Source: AUDIO_SOURCE_DEFAULT Flags: 0x800 Tags:  }
11-02 21:36:02.388  1014  2896 I EDMNativeHelperService: isMicrophoneEnabled
11-02 21:36:02.390  1014  2896 D RestrictionPolicy: userId: 0, isMicrophoneEnabledAsUser : true
11-02 21:36:02.390  1014  2896 I EDMNativeHelperService: isAudioRecordAllowed
11-02 21:36:02.391  1014  2896 D RestrictionPolicy: userId: 0 isAudioRecordAllowed : true
11-02 21:36:02.392   632  5025 I MultiRecordManager: openMultiRecordAllowed() skipMultiRecord 1, openMultiRecordAllowed 0, moduleName primary, source 1, flag 0
11-02 21:36:02.392   632  5025 I MultiRecordManager: openInputStream() skipMultiRecord
11-02 21:36:02.392   560   586 D audio_hw_primary: device-adev_open_input_stream: enter: io_handle (1686), sample_rate(44100) channel_mask(0x10) format(0x1) framecount(0) devices(0x80000040) flags(0) sources(1)
11-02 21:36:02.392   560   586 I audio_hw_primary: device-adev_open_input_stream: requested to downlink voice for telephony rx device
11-02 21:36:02.392   560   586 I audio_hw_primary: device-adev_open_input_stream: ptt call input samplerate 44100
11-02 21:36:02.392   560   586 D audio_hw_proxy_9820: telerx_in-check_conversion: needs re-channeling to 1 from 2
11-02 21:36:02.392   560   586 D PostProcessConvertor: PostProcessConvertorInit ++ OSR 44100, ISR 32000, CC 2, OBW 1, IBW 1 
11-02 21:36:02.392   560   586 I SoundAlive_SRC384 arch32: SRC384 Create
11-02 21:36:02.392   560   586 I SoundAlive_SRC384 arch32: SoundAlive_SRC384() ID = 219 GID = 220
11-02 21:36:02.392   560   586 I SoundAlive_SRC384 arch32: SoundAlive_SRC384: Instance 219 Init(outFs 7, InFs 7, chnum 0, outBW 0, inBW 0)
11-02 21:36:02.392   560   586 I Samsung_SoundAlive_SRC arch32: SRC384 version Samsung SoundAlive SRC ver320 arch32  2020.11.26 (Cppref for ARM32, ver.300.c 32bit 07_10_2016 based)
11-02 21:36:02.392   560   586 D SoundAliveResampler: [SoundAliveResampler] Init+++
11-02 21:36:02.392   560   586 I SoundAlive_SRC384 arch32: SoundAlive_SRC384: Instance 219 Init(outFs 7, InFs 6, chnum 2, outBW 0, inBW 0)
11-02 21:36:02.392   560   586 I Samsung_SoundAlive_SRC arch32: SRC384 version Samsung SoundAlive SRC ver320 arch32  2020.11.26 (Cppref for ARM32, ver.300.c 32bit 07_10_2016 based)
11-02 21:36:02.392   560   586 I audio_hw_proxy_9820: telerx_in-check_conversion: realloc conversion_buffer with 11292 bytes
11-02 21:36:02.392   560   586 V audio_hw_proxy_9820: proxy-check_conversion: resampler created in-samplerate 32000 out-samplereate 44100
11-02 21:36:02.392   560   586 I audio_hw_proxy_9820: proxy-proxy_create_capture_stream: opened Proxy Stream(telerx_in)
11-02 21:36:02.392   560   586 I audio_hw_primary: telerx_in-adev_open_input_stream: transited to Standby
11-02 21:36:02.392   560   586 D audio_hw_primary: adev_open_input_stream: preprocessing_latency = 0
11-02 21:36:02.392   560   586 I audio_hw_primary: device-adev_open_input_stream: opened telerx_in stream
11-02 21:36:02.392   560   586 D audio_hw_primary: telerx_in-in_update_sink_metadata: called, but not implemented yet
11-02 21:36:02.392   560   586 D audio_hw_primary: telerx_in-in_update_sink_metadata: This stream has 1 tracks
11-02 21:36:02.392   560   586 D audio_hw_primary: 1 Track has Source(1), Gain(1.000000)
11-02 21:36:02.392   560   586 D audio_hw_primary: 1 Track usage : callrecord_downlink)
11-02 21:36:02.393   560   586 V sec_audio_hw: sec_dev_open_audio_stream: enter: handle 1686, type 1, tag 
11-02 21:36:02.393   560   586 V sec_audio_hw: sec_dev_open_audio_stream: exit
11-02 21:36:02.396   632  5025 V APM_AudioPolicyManager: getInputForAttr() returns input 1686 type 4 selectedDeviceId 12 for port ID 745
11-02 21:36:02.397  1014  2896 I EDMNativeHelperService: isPackageInAvrWhitelist
11-02 21:36:02.398  1014  2896 D ApplicationPolicy: isPackageInWhitelistInternal is called for type - 3, userId - 0, packageUid - 10332
11-02 21:36:02.398  1014  2896 D ApplicationPolicy: isPackageInWhitelistInternal match not found.. 
11-02 21:36:02.399   632 19344 I AudioFlinger: AudioFlinger's thread 0x7efc81b040 tid=19344 ready to run
11-02 21:36:02.399   632  5025 E AudioPolicyIntefaceImpl: getInputForAttr() permission denied: capture not allowed
11-02 21:36:02.399   632  5025 V APM_AudioPolicyManager: releaseInput portId 745
11-02 21:36:02.399   632  5025 V APM_AudioPolicyManager: releaseInput 1686
11-02 21:36:02.399   632  5025 V APM_AudioPolicyManager: closeInput(1686)
11-02 21:36:02.402  1014  2896 I system_server: oneway function results will be dropped but finished with status OK and parcel size 4
11-02 21:36:02.402  1014  2896 I system_server: oneway function results will be dropped but finished with status OK and parcel size 4
11-02 21:36:02.402  1014  2896 I system_server: oneway function results will be dropped but finished with status OK and parcel size 4
11-02 21:36:02.404   632  5025 I MultiRecordManager: closeInputStream() skipMultiRecord
11-02 21:36:02.405  1014  2896 I system_server: oneway function results will be dropped but finished with status OK and parcel size 4
11-02 21:36:02.405  1014  2896 I system_server: oneway function results will be dropped but finished with status OK and parcel size 4
11-02 21:36:02.405   560 16808 V sec_audio_hw: sec_dev_close_audio_stream: enter
11-02 21:36:02.405   560 16808 V sec_audio_hw: sec_dev_close_audio_stream: close sec audio stream for handle 1686, type 1
11-02 21:36:02.405   560 16808 V sec_audio_hw: sec_dev_close_audio_stream: exit
11-02 21:36:02.405  1014  2896 I system_server: oneway function results will be dropped but finished with status OK and parcel size 4
11-02 21:36:02.406  1014  2900 I SoundTriggerMiddlewareLogging: setCaptureState[this=com.android.server.soundtrigger_middleware.SoundTriggerMiddlewareImpl@1f4e426, caller=1041/632](false)
11-02 21:36:02.406   560   586 I audio_hw_primary: telerx_in-adev_close_input_stream: try to close capture stream
11-02 21:36:02.406   560   586 V audio_hw_proxy_9820: telerx_in-proxy_destroy_capture_stream: released resampler
11-02 21:36:02.406   560   586 I SoundAlive_SRC384 arch32: SRC384 Destroy
11-02 21:36:02.406   560   586 I SoundAlive_SRC384 arch32: ~SoundAlive_SRC384(): instance 219
11-02 21:36:02.406   560   586 I audio_hw_primary: telerx_in-adev_close_input_stream: closed capture stream
11-02 21:36:02.407   632  5025 V APM_AudioPolicyManager: releaseInput exit
11-02 21:36:02.407   632  5025 E AudioFlinger: createRecord() getInputForAttr return error -1
11-02 21:36:02.407 17552 19331 E IAudioFlinger: createRecord returned error -1
11-02 21:36:02.407 17552 19331 E AudioRecord: createRecord_l(733): AudioFlinger could not create record track, status: -1
11-02 21:36:02.407 17552 19331 W AudioRecord: restoreRecord_l(733): failed status -1, retries 1
11-02 21:36:02.407 17552 19331 E AudioRecord-JNI: Error -1 during AudioRecord native read
11-02 21:36:02.407   632 16851 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c6618f0
11-02 21:36:02.407   632 16851 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:02.407   632 17810 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c662490
11-02 21:36:02.407   632 17810 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:02.408   632 17177 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c6622d0
11-02 21:36:02.408   632 17177 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:02.408   632  2966 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c685cf0
11-02 21:36:02.408   632  2966 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:02.408   632  2966 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc6720d0
11-02 21:36:02.408   632  2966 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:02.409   632 17177 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc65e080
11-02 21:36:02.409   632 17177 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:02.410   632 16851 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc64e040
11-02 21:36:02.410   632 16851 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:02.410   632 17810 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc64e040
11-02 21:36:02.411   632 17810 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:02.413   632 17810 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c687470
11-02 21:36:02.413   632 17810 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:02.414   632 17810 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc64e040
11-02 21:36:02.414   632 17810 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:02.414   632 17810 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c662490
11-02 21:36:02.414   632 17810 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:02.415   632  2966 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c685cf0
11-02 21:36:02.415   632  2966 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:02.415   632  2966 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc6720d0
11-02 21:36:02.415   632  2966 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:02.416   632 16851 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0x7c1c687470
11-02 21:36:02.416   632 16851 V APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11
11-02 21:36:02.417   632 17177 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc65e080
11-02 21:36:02.417   632 17177 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:02.417   632  2966 V APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0x7dbc6720d0
11-02 21:36:02.418   632  2966 V APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11
11-02 21:36:02.421 17552 19331 E CRASH   : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
11-02 21:36:02.421 17552 19331 E CRASH   : Version '2021.3.10f1 (1c7d0df0160b)', Build type 'Release', Scripting Backend 'il2cpp', CPU 'arm64-v8a'
11-02 21:36:02.421 17552 19331 E CRASH   : Build fingerprint: 'samsung/d1eea/d1:11/RP1A.200720.012/N970FXXS7FUI7:user/release-keys'
11-02 21:36:02.421 17552 19331 E CRASH   : Revision: '23'
11-02 21:36:02.421 17552 19331 E CRASH   : ABI: 'arm64'
11-02 21:36:02.421 17552 19331 E CRASH   : Timestamp: 2022-11-02 21:36:02+0100
11-02 21:36:02.421 17552 19331 E CRASH   : pid: 17552, tid: 19331, name: Thread-12  >>> com.MKGames.Vythm <<<
11-02 21:36:02.421 17552 19331 E CRASH   : uid: 10332
11-02 21:36:02.421 17552 19331 E CRASH   : signal 11 (SIGSEGV), code 2 (SEGV_ACCERR), fault addr 0x752be5d000
11-02 21:36:02.421 17552 19331 E CRASH   :     x0  0000000000000000  x1  0000000000000000  x2  0000000000000019  x3  0000000000000dc8
11-02 21:36:02.421 17552 19331 E CRASH   :     x4  0000000000000019  x5  00000073d9f67819  x6  0000000013180168  x7  0000000000000020
11-02 21:36:02.421 17552 19331 E CRASH   :     x8  7ffffffffffffff8  x9  7ffffffffffec4b8  x10 00000075cbcfd350  x11 000000752be5d008
11-02 21:36:02.421 17552 19331 E CRASH   :     x12 0000000000000018  x13 0000000000000002  x14 0000000000000000  x15 00000076d1cf0020
11-02 21:36:02.421 17552 19331 E CRASH   :     x16 0000000000000000  x17 00000000131800f0  x18 0000007228a28000  x19 000000743bca8d70
11-02 21:36:02.421 17552 19331 E CRASH   :     x20 000000722a423020  x21 7ffffffffffffffe  x22 0000000038000100  x23 0000000000000dc8
11-02 21:36:02.421 17552 19331 E CRASH   :     x24 000000752be35980  x25 000000749bcaa1f0  x26 00000000fffffffc  x27 0000000000000019
11-02 21:36:02.421 17552 19331 E CRASH   :     x28 00000000000fc000  x29 00000073c8bbec60
11-02 21:36:02.421 17552 19331 E CRASH   :     sp  00000073c8bbeb90  lr  000000722a3bfde8  pc  000000722a3bfe24
11-02 21:36:02.421 17552 19331 E CRASH   : backtrace:
11-02 21:36:02.421 17552 19331 E CRASH   :       #00 pc 0000000000020e24  /data/app/~~OcYMF3MXDB4EZnN-HRAkrg==/com.MKGames.Vythm-yL6RQkXwdVNBoap7m9vdAg==/lib/arm64/libNatDevice.so (BuildId: fe50f63ef7e35331cccc04a12692680a444fb1a1)
11-02 21:36:02.421 17552 19331 E CRASH   :       #01 pc 00000000000b10e8  /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+64) (BuildId: 890b75bbb1eaed1155b47ab37b7aad70)
11-02 21:36:02.421 17552 19331 E CRASH   :       #02 pc 0000000000050a58  /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 890b75bbb1eaed1155b47ab37b7aad70)
11-02 21:36:02.612 17552 19158 E CRASH   : other thread is trapped; signum = 11
11-02 21:36:02.613 17552 19158 E AndroidRuntime: FATAL EXCEPTION: UnityMain
11-02 21:36:02.613 17552 19158 E AndroidRuntime: Process: com.MKGames.Vythm, PID: 17552
11-02 21:36:02.613 17552 19158 E AndroidRuntime: java.lang.Error: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
11-02 21:36:02.613 17552 19158 E AndroidRuntime: Version '2021.3.10f1 (1c7d0df0160b)', Build type 'Release', Scripting Backend 'il2cpp', CPU 'arm64-v8a'
11-02 21:36:02.613 17552 19158 E AndroidRuntime: Build fingerprint: 'samsung/d1eea/d1:11/RP1A.200720.012/N970FXXS7FUI7:user/release-keys'
11-02 21:36:02.613 17552 19158 E AndroidRuntime: Revision: '23'
11-02 21:36:02.613 17552 19158 E AndroidRuntime: ABI: 'arm64'
11-02 21:36:02.613 17552 19158 E AndroidRuntime: Timestamp: 2022-11-02 21:36:02+0100
11-02 21:36:02.613 17552 19158 E AndroidRuntime: pid: 17552, tid: 19331, name: Thread-12  >>> com.MKGames.Vythm <<<
11-02 21:36:02.613 17552 19158 E AndroidRuntime: uid: 10332
11-02 21:36:02.613 17552 19158 E AndroidRuntime: signal 11 (SIGSEGV), code 2 (SEGV_ACCERR), fault addr 0x752be5d000
11-02 21:36:02.613 17552 19158 E AndroidRuntime:     x0  0000000000000000  x1  0000000000000000  x2  0000000000000019  x3  0000000000000dc8
11-02 21:36:02.613 17552 19158 E AndroidRuntime:     x4  0000000000000019  x5  00000073d9f67819  x6  0000000013180168  x7  0000000000000020
11-02 21:36:02.613 17552 19158 E AndroidRuntime:     x8  7ffffffffffffff8  x9  7ffffffffffec4b8  x10 00000075cbcfd350  x11 000000752be5d008
11-02 21:36:02.613 17552 19158 E AndroidRuntime:     x12 0000000000000018  x13 0000000000000002  x14 0000000000000000  x15 00000076d1cf0020
11-02 21:36:02.613 17552 19158 E AndroidRuntime:     x16 0000000000000000  x17 00000000131800f0  x18 0000007228a28000  x19 000000743bca8d70
11-02 21:36:02.613 17552 19158 E AndroidRuntime:     x20 000000722a423020  x21 7ffffffffffffffe  x22 0000000038000100  x23 0000000000000dc8
11-02 21:36:02.613 17552 19158 E AndroidRuntime:     x24 000000752be35980  x25 000000749bcaa1f0  x26 00000000fffffffc  x27 0000000000000019
11-02 21:36:02.613 17552 19158 E AndroidRuntime:     x28 00000000000fc000  x29 00000073c8bbec60
11-02 21:36:02.613 17552 19158 E AndroidRuntime:     sp  00000073c8bbeb90  lr  000000722a3bfde8  pc  000000722a3bfe24
11-02 21:36:02.613 17552 19158 E AndroidRuntime: 
11-02 21:36:02.613 17552 19158 E AndroidRuntime: backtrace:
11-02 21:36:02.613 17552 19158 E AndroidRuntime:       #00 pc 0000000000020e24  /data/app/~~OcYMF3MXDB4EZnN-HRAkrg==/com.MKGames.Vythm-yL6RQkXwdVNBoap7m9vdAg==/lib/arm64/libNatDevice.so (BuildId: fe50f63ef7e35331cccc04a12692680a444fb1a1)
11-02 21:36:02.613 17552 19158 E AndroidRuntime:       #01 pc 00000000000b10e8  /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+64) (BuildId: 890b75bbb1eaed1155b47ab37b7aad70)
11-02 21:36:02.613 17552 19158 E AndroidRuntime:       #02 pc 0000000000050a58  /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 890b75bbb1eaed1155b47ab37b7aad70)
11-02 21:36:02.613 17552 19158 E AndroidRuntime: 
11-02 21:36:02.613 17552 19158 E AndroidRuntime:    at libNatDevice.0x20e24(Native Method)
11-02 21:36:02.613 17552 19158 E AndroidRuntime:    at libc.__pthread_start(void*)(__pthread_start:64)
11-02 21:36:02.613 17552 19158 E AndroidRuntime:    at libc.__start_thread(__start_thread:64)
11-02 21:36:02.621  1014 19346 I DropBoxManagerService: add tag=data_app_crash isTagEnabled=true flags=0x2
11-02 21:36:02.621  1014  2900 D Debug   : low && ship && 3rd party app crash, so skip dump
11-02 21:36:02.622  1014  2900 W ActivityManager: crash : com.MKGames.Vythm,10332
11-02 21:36:02.623  1014  2900 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1162 com.android.server.am.AppErrors.crashApplicationInner:579 com.android.server.am.AppErrors.crashApplication:443 com.android.server.am.ActivityManagerService.handleApplicationCrashInner:12392 com.android.server.am.ActivityManagerService.handleApplicationCrash:12327 
11-02 21:36:02.623  1014  2900 W ActivityTaskManager:   Force finishing activity com.MKGames.Vythm/com.unity3d.player.UnityPlayerActivity
11-02 21:36:02.623  1014  2900 V WindowManager: Prepare app transition: transit=TRANSIT_CRASHING_ACTIVITY_CLOSE mNextAppTransition=TRANSIT_UNSET alwaysKeepCurrent=false displayId=0 Callers=com.android.server.wm.DisplayContent.prepareAppTransition:5809 com.android.server.wm.DisplayContent.prepareAppTransition:5803 com.android.server.wm.ActivityStack.finishTopCrashedActivityLocked:2733 com.android.server.wm.RootWindowContainer.finishTopCrashedActivities:2654 com.android.server.wm.ActivityTaskManagerService$LocalService.finishTopCrashedActivities:8921 
11-02 21:36:02.625  1014  2900 D InputDispatcher: Focused application set to (0): 38b1212
11-02 21:36:02.626  1014  2900 V WindowManager: Changing focus from Window{68707f7 u0 com.MKGames.Vythm/com.unity3d.player.UnityPlayerActivity} to null displayId=0 Callers=com.android.server.wm.RootWindowContainer.updateFocusedWindowLocked:567 com.android.server.wm.WindowManagerService.updateFocusedWindowLocked:6311 com.android.server.wm.DisplayContent.setFocusedApp:6775 com.android.server.wm.ActivityTaskManagerService.setResumedActivityUncheckLocked:6725 
11-02 21:36:02.626  1014  2900 D StatusBarManagerService: notifyRequestedSystemKey recent=false home=false
11-02 21:36:02.627  1014  2900 D GameManagerService: TaskStackListener.onTaskFocusChanged(), taskId=159, focused=true
11-02 21:36:02.627  1014  1227 D GameManagerService: onLooperPrepared(), msg: MSG_TASK_FOCUSED, focusedComponent: ComponentInfo{com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity}
11-02 21:36:02.627  1014  1227 D GameManagerService: handleTaskFocused().
11-02 21:36:02.627  1014  1227 D GameManagerService: sendFocusOutConditionally() - mPrevNotiPackage: (unknown)
11-02 21:36:02.627  1014  1227 D GameManagerService:   handleTaskFocused(), pkgName: com.sec.android.app.launcher, clsName: com.sec.android.app.launcher.activities.LauncherActivity, userID:0
11-02 21:36:02.628  1014  2900 V WindowManager: Prepare app transition: transit=TRANSIT_TASK_CLOSE mNextAppTransition=TRANSIT_CRASHING_ACTIVITY_CLOSE alwaysKeepCurrent=false displayId=0 Callers=com.android.server.wm.DisplayContent.prepareAppTransition:5809 com.android.server.wm.DisplayContent.prepareAppTransition:5803 com.android.server.wm.ActivityRecord.finishIfPossible:3181 com.android.server.wm.ActivityRecord.finishIfPossible:3053 com.android.server.wm.ActivityStack.finishTopCrashedActivityLocked:2735 
11-02 21:36:02.628  1014  2900 D WindowManager: isScreenshotDisabledLocked - win: Window{d5c7cd u0 InputMethod}
11-02 21:36:02.628  1014  2900 D WindowManager: isScreenshotDisabledLocked: userId = 0, disabled =false
11-02 21:36:02.628  1014  2900 D WindowManager: isScreenshotDisabledLocked - win: Window{68707f7 u0 com.MKGames.Vythm/com.unity3d.player.UnityPlayerActivity}
11-02 21:36:02.628  1014  2900 D WindowManager: isScreenshotDisabledLocked: userId = 0, disabled =false
11-02 21:36:02.630   567   593 D gralloc : [mali_gralloc_allocate] begin
11-02 21:36:02.630   567   593 D gralloc : buffer_descriptor: wh(2280 1080) usage_pc(0x366 0x306) hal_format(0x1) layer_count(1) sizes(0 0 0) strde(0) byte_stride(0) alloc_wh(0 0) internal_format(0x0) alloc_format(0x0) fd_count(1) plane_count(0)
11-02 21:36:02.632   567   593 D gralloc : [mali_gralloc_allocate] allocation successful
11-02 21:36:02.642   640   640 I Layer   : id=8651[0] Destroyed Screenshot Parent
11-02 21:36:02.651  1014  2900 V WindowManager: Setting visibility of Window{41cd177 u0 com.samsung.android.app.spage}: true, caller=com.android.server.wm.WindowContainer.sendAppVisibilityToClients:1004 com.android.server.wm.WindowState.sendAppVisibilityToClients:3792 com.android.server.wm.WindowContainer.sendAppVisibilityToClients:1004 com.android.server.wm.ActivityRecord.setClientVisible:6391 com.android.server.wm.ActivityRecord.setVisibility:4866 
11-02 21:36:02.651  1014  2900 V WindowManager: Setting visibility of Window{c1f4e4d u0 com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity}: true, caller=com.android.server.wm.WindowContainer.sendAppVisibilityToClients:1004 com.android.server.wm.ActivityRecord.setClientVisible:6391 com.android.server.wm.ActivityRecord.setVisibility:4866 com.android.server.wm.ActivityRecord.setVisibility:4764 com.android.server.wm.ActivityRecord.makeVisibleIfNeeded:5409 
11-02 21:36:02.651  1014  2900 D MARsPolicyManager: onPackageResumedFG pkgName = com.sec.android.app.launcher, userId = 0
11-02 21:36:02.651  1014  2900 V MARsPolicyManager: Current Home Package com.sec.android.app.launcher Resumed
11-02 21:36:02.651  1014  2900 I SemDvfsHyPerManager: acquire hyper - AMS_APP_HOME/1014@33, type = -999
11-02 21:36:02.652   585   601 I HYPER-HAL: [RequestManager.cpp]acquire(): Acquired ID : 548661  [1014 / 33]    HINT : AMS_APP_HOME    list : 
11-02 21:36:02.652   585   601 I HYPER-HAL: [ResourceManager.cpp]updateResource(): [CPUMinFreq] UpdateResource Request ID : 548661    Value : 2530000
11-02 21:36:02.655  1014  2900 D ActivityManagerPerformance: AMP_acquire() HOME
11-02 21:36:02.655  3225  3225 I SemDvfsHyPerManager: acquire hyper - com.sec.android.sdhms/3225@9, type = -999
11-02 21:36:02.655  1014  2900 V WindowManager: Prepare app transition: transit=TRANSIT_ACTIVITY_OPEN mNextAppTransition=TRANSIT_CRASHING_ACTIVITY_CLOSE alwaysKeepCurrent=false displayId=0 Callers=com.android.server.wm.DisplayContent.prepareAppTransition:5809 com.android.server.wm.DisplayContent.prepareAppTransition:5803 com.android.server.wm.ActivityStack.resumeTopActivityInnerLocked:2267 com.android.server.wm.ActivityStack.resumeTopActivityUncheckedLocked:1873 com.android.server.wm.ActivityRecord.makeActiveIfNeeded:5510 
11-02 21:36:02.655   585   601 I HYPER-HAL: [RequestManager.cpp]acquire(): Acquired ID : 5231004  [3225 / 9]    HINT : APP_START    list : 
11-02 21:36:02.655  1014  2900 V WindowManager: rotationForOrientation(orient=SCREEN_ORIENTATION_NOSENSOR (5), last=ROTATION_90 (1)); user=ROTATION_0 (0) 
11-02 21:36:02.655  1014  2900 D WindowManager: rotationForOrientation, orientationSource=ActivityRecord{38b1212 u0 com.sec.android.app.launcher/.activities.LauncherActivity t159}
11-02 21:36:02.656  1014  2900 V WindowOrientationListener: getProposedRotation: -1
11-02 21:36:02.656  1014  2900 D ActivityTaskManager: applyFixedRotationTransform, r=ActivityRecord{38b1212 u0 com.sec.android.app.launcher/.activities.LauncherActivity t159}, caller=com.android.server.wm.DisplayContent.startFixedRotationTransform:1970 com.android.server.wm.DisplayContent.setFixedRotationLaunchingApp:1914 com.android.server.wm.DisplayContent.handleTopActivityLaunchingInDifferentOrientation:1831 com.android.server.wm.DisplayContent.updateOrientation:1693 com.android.server.wm.DisplayContent.updateOrientation:1626 
11-02 21:36:02.656   585   601 I HYPER-HAL: [ResourceManager.cpp]updateResource(): [CPUMaxFreq] UpdateResource Request ID : 5231004    Value : 2730000
11-02 21:36:02.656  1391  1391 I ImageWallpaper: onFixedRotationStarted 0 , {1.1 ?mcc?mnc [en_DE,de_DE] ldltr sw411dp w786dp h387dp 420dpi nrml long hdr widecg land finger -keyb/v/h -nav/h winConfig={ mBounds=Rect(0, 0 - 2280, 1080) mAppBounds=Rect(90, 0 - 2154, 1080) mWindowingMode=fullscreen mDisplayWindowingMode=fullscreen mActivityType=undefined mAlwaysOnTop=undefined mRotation=ROTATION_90} s.24982 desktop/d ?dc ?dcui ?dcaf bts=0 ff=0 bf=0 themeSeq=0}
11-02 21:36:02.656  1014  2900 I WindowManager: Reparenting to leash, surface=Surface(name=WindowToken{6647ca9 android.os.BinderProxy@739a173})/@0x2554a76, leashParent=Surface(name=Leaf:17:35)/@0x986866a
11-02 21:36:02.657   640  1912 I SurfaceFlinger: id=8652 createSurf (0x0),-1 flag=24000, Surface(name=WindowToken{6647ca9 android.os.BinderProxy@739a173})/@0x2554a76 - animation-leash#0
11-02 21:36:02.657  1014  2900 D WindowManager: makeSurface duration=1 leash=Surface(name=Surface(name=WindowToken{6647ca9 android.os.BinderProxy@739a173})/@0x2554a76 - animation-leash)/@0xfcd0231
11-02 21:36:02.658  1014  2900 D WindowManager: setFixedRotationLaunchingAppUnchecked, rotation=0, r=ActivityRecord{38b1212 u0 com.sec.android.app.launcher/.activities.LauncherActivity t159}, caller=com.android.server.wm.DisplayContent.setFixedRotationLaunchingApp:1916 com.android.server.wm.DisplayContent.handleTopActivityLaunchingInDifferentOrientation:1831 com.android.server.wm.DisplayContent.updateOrientation:1693 com.android.server.wm.DisplayContent.updateOrientation:1626 com.android.server.wm.RootWindowContainer.ensureVisibilityAndConfig:2165 
11-02 21:36:02.658  1014  2900 D TspStateManager: updateCustomValue customSetting=
11-02 21:36:02.658  1014  2900 D TspStateManager: updateCustomValue customSetting=
11-02 21:36:02.658  1014  2900 D MARsPolicyManager: onPackageResumedFG pkgName = com.sec.android.app.launcher, userId = 0
11-02 21:36:02.658  1014  2900 V MARsPolicyManager: Current Home Package com.sec.android.app.launcher Resumed
11-02 21:36:02.658  1014  2900 W WindowManager: Execute app transition: mNextAppTransition=TRANSIT_CRASHING_ACTIVITY_CLOSE, displayId: 0 Callers=com.android.server.wm.RootWindowContainer.executeAppTransitionForAllDisplay:2599 com.android.server.wm.ActivityStackSupervisor.reportResumedActivityLocked:2274 com.android.server.wm.ActivityRecord.completeResumeLocked:5710 com.android.server.wm.ActivityStack.resumeTopActivityInnerLocked:2434 com.android.server.wm.ActivityStack.resumeTopActivityUncheckedLocked:1873 
11-02 21:36:02.662  1014  1229 V ActivityManager: Changed top to 10158,ProcessRecord{8c2e3ac 1924:com.sec.android.app.launcher/u0a158}
11-02 21:36:02.664  1391 28973 E TaskStackListenerAbstract: onTaskSnapshotChanged called by Binder.getCallingPid() 0 android.app.ITaskStackListener$Stub.onTransact:587 android.os.Binder.execTransactInternal:1195 android.os.Binder.execTransact:1159 <bottom of call stack> 
11-02 21:36:02.664  1014  1068 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.stats.service.DropBoxEntryAddedReceiver
11-02 21:36:02.664  1014  1068 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver
11-02 21:36:02.664 17552 19158 I Process : Sending signal. PID: 17552 SIG: 9
11-02 21:36:02.668  6474 22526 I [AirCmd]_CallbackRepeater: stopRepeat : isWorking=false
11-02 21:36:02.668  6474 22526 I [AirCmd]_MediaControlStateMonitor: isForegroundAppSupportsMediaButton : mediaSession is empty
11-02 21:36:02.668  6474 22526 I [AirCmd]_MediaControlStateMonitor: active Notification List is null
11-02 21:36:02.668  6474 22526 I [AirCmd]_RemoteSpenMainController: hasGeneralAction : packageName is com.sec.android.app.launcher, activityName is com.android.launcher3.uioverrides.QuickstepLauncher, hasActions is false
11-02 21:36:02.668  6474 22526 I [AirCmd]_CameraAvailabilityMonitor: isCameraPreviewOn : mIsCameraPreviewOn is false
11-02 21:36:02.669  1014  1068 I ActivityManager: Changes in 10332 2 to 18, 7 to 0 Caller=com.android.server.am.OomAdjuster.updateOomAdjLockedInner:672 com.android.server.am.OomAdjuster.updateOomAdjLocked:416 com.android.server.am.ActivityManagerService.updateOomAdjLocked:21536 com.android.server.am.BroadcastQueue.processNextBroadcastLocked:1374 com.android.server.am.BroadcastQueue.processNextBroadcast:1267 com.android.server.am.BroadcastQueue$BroadcastHandler.handleMessage:267 android.os.Handler.dispatchMessage:106 
11-02 21:36:02.669  1014  1068 I ActivityManager: Changes in 10158 5 to 2, 0 to 7 Caller=com.android.server.am.OomAdjuster.updateOomAdjLockedInner:672 com.android.server.am.OomAdjuster.updateOomAdjLocked:416 com.android.server.am.ActivityManagerService.updateOomAdjLocked:21536 com.android.server.am.BroadcastQueue.processNextBroadcastLocked:1374 com.android.server.am.BroadcastQueue.processNextBroadcast:1267 com.android.server.am.BroadcastQueue$BroadcastHandler.handleMessage:267 android.os.Handler.dispatchMessage:106 
11-02 21:36:02.669  1014  1068 I AppOps  : updateUidProcState uid: 10158 procState: 2 capability:7
11-02 21:36:02.669  1014  1068 I AppOps  : commitUidPendingStateLocked() :: UID - 10158, 500 > 200, 0 > 7
11-02 21:36:02.671  1014  1059 D GameManagerService: notePauseComponent(), received paused-component: com.MKGames.Vythm
11-02 21:36:02.673  1014  1057 D SSRM:LoadDetectMonitor: PID = 1924, UID = 10158
11-02 21:36:02.674  1014  1316 W PkgPredictorService: background app without no launcher icon com.sec.android.app.launcher for.uid: 10158 userId: 0
11-02 21:36:02.674  1014  1057 D SehCodecSolutionService: Update top [com.sec.android.app.launcher]
11-02 21:36:02.675   760 29639 I CameraService: notifyMonitoredUids
11-02 21:36:02.676  1014  2896 V WindowManager: Relayout Window{41cd177 u0 com.samsung.android.app.spage}: viewVisibility=8 req=0x2064
11-02 21:36:02.678  1014  2896 V WindowManager: Relayout hash=41cd177, pid=15901: mAttrs={(0,0)(0xfill) sim={adjust=pan} ty=APPLICATION_PANEL fmt=RGBA_8888
11-02 21:36:02.678  1014  2896 V WindowManager:   fl=1000018
11-02 21:36:02.678  1014  2896 V WindowManager:   pfl=2000040
11-02 21:36:02.678  1014  2896 V WindowManager:   fitTypes=STATUS_BARS NAVIGATION_BARS CAPTION_BAR IME naviIconColor=0}
11-02 21:36:02.678  6474 22526 I [AirCmd]_CameraAvailabilityMonitor: isCameraPreviewOn : mIsCameraPreviewOn is false
11-02 21:36:02.678 15901 15901 I SurfaceControl: assignNativeObject: nativeObject = 0 Surface(name=null)/@0x17ec74a / android.view.SurfaceControl.readFromParcel:1117 android.view.IWindowSession$Stub$Proxy.relayout:1810 android.view.ViewRootImpl.relayoutWindow:9005 android.view.ViewRootImpl.performTraversals:3360 android.view.ViewRootImpl.doTraversal:2618 android.view.ViewRootImpl$TraversalRunnable.run:9971 android.view.Choreographer$CallbackRecord.run:1010 android.view.Choreographer.doCallbacks:809 android.view.Choreographer.doFrame:744 android.view.Choreographer$FrameDisplayEventReceiver.run:995 
11-02 21:36:02.678 15901 15901 I SurfaceControl: assignNativeObject: nativeObject = 0 Surface(name=null)/@0xef96bb / android.view.SurfaceControl.readFromParcel:1117 android.view.IWindowSession$Stub$Proxy.relayout:1820 android.view.ViewRootImpl.relayoutWindow:9005 android.view.ViewRootImpl.performTraversals:3360 android.view.ViewRootImpl.doTraversal:2618 android.view.ViewRootImpl$TraversalRunnable.run:9971 android.view.Choreographer$CallbackRecord.run:1010 android.view.Choreographer.doCallbacks:809 android.view.Choreographer.doFrame:744 android.view.Choreographer$FrameDisplayEventReceiver.run:995 
11-02 21:36:02.679 15901 15901 I ViewRootImpl@803354[]: Relayout returned: old=(540,90,540,2154) new=(540,90,540,2154) req=(0,2064)8 dur=11 res=0x1 s={false 0} ch=false fn=-1
11-02 21:36:02.682  6474 22526 I [AirCmd]_MediaControlStateMonitor: isForegroundAppSupportsMediaButton : mediaSession is empty
11-02 21:36:02.682  6474 22526 I [AirCmd]_MediaControlStateMonitor: active Notification List is null
11-02 21:36:02.682  6474 22526 I [AirCmd]_PenActionRule: getAction : get default action data from remote action because pen action data is null.
11-02 21:36:02.682  1014  2896 I InputDispatcher: Focus left window (17552): 68707f7 in display 0 0
11-02 21:36:02.683  1014  1059 D SemGameManager: getGMSBinder(), begin
11-02 21:36:02.684  1014  1059 D SemGameManager: getGMSBinder(), successful: true
11-02 21:36:02.684  1014  1059 D SemGameManager: isAvailable(), ret=true
11-02 21:36:02.684  1014  1059 D SemGameManager: isGamePackage(), pkgName=com.sec.android.app.launcher
11-02 21:36:02.684  1014  1059 D SemGameManager: getGMSBinder(), begin
11-02 21:36:02.684  6474 22526 I [AirCmd]_ButtonActionDetector: enableDoubleClickDetection: enabled=true, doubleClickWaitInterval=300
11-02 21:36:02.684  6474 22526 I [AirCmd]_RemoteSpenMainController: onSwitch : package is com.sec.android.app.launcher   and activity is com.android.launcher3.uioverrides.QuickstepLauncher and isBleConnected is true and hasActions is false
11-02 21:36:02.684  1014  1059 D SemGameManager: getGMSBinder(), successful: true
11-02 21:36:02.684  6474  6474 I AC:FloatingIconController: onBleFloatingIconStateChanged isEnabled : false, delay : 250
11-02 21:36:02.684  1014  1059 D GameManagerService: identifyGamePackage. com.sec.android.app.launcher, mCurrentUserId: 0, callerUserId: 0
11-02 21:36:02.684  1014  1059 D PkgDataHelper: getGamePkgData(). com.sec.android.app.launcher
11-02 21:36:02.684  1014  1059 D SemGameManager: isGamePackage(), ret=false
11-02 21:36:02.684  1014  1059 I GameSDK@LifeCycle: noteResumeComponent(): package name  : com.sec.android.app.launcher
11-02 21
olokobayusuf commented 2 years ago

Fixed in 1.3.1.