Giter Club home page Giter Club logo

api-examples's People

Contributors

cavansu avatar chen-alexander avatar cleven1 avatar clucheng avatar haiyangwu avatar lichking-2234 avatar matrixbirds avatar maxxfrazer avatar newjins-papa avatar oojohn6oo avatar plutoless avatar sbd021 avatar shellgrace avatar xgfd3 avatar xuchdeid avatar zhangtao1104 avatar zhonghphuan avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

api-examples's Issues

How can I get custom audio source without recording?

We are reading built-in microphone data from Android JNI & Android recorder.

When using Agora, the built-in microphone data we made and the audio data received by Agora are mixed.

We only need built-in microphones from JNI we made and want to get Agora Low audio data only through registerAudioFrameObserver function.

Can we prevent Agora audio data from coming in with JNI audio data we made?

AgoraAudioCriticalSection causes ios agora-ScreenShare-Exension demo to crash with EXC_BAD_ACCESS

Tested on:
ios 14.6, iPad Pro

Steps to reproduce:

  1. Build and run APIExample demo ios app
  2. Launch extension via picker in APIExample container app and start screen broadcasting.
  3. Navigate to any app playing in app audio
  4. Observe EXC_BAD_ACCESS crash occurring on this line.

image

Have observed similar behavior with mic audio as well. Seems to occur if I start the broadcast without the mic enabled and then enable the mic while the broadcast extension is running.

iOS Screen Sharing sound processing is incorrect

I have updated the example code so as to enable audio and see screen share from a remote user :
#202

We are trying to get screen sharing in our own application and noticed that audio processing in the example is incorrect. The format conversions you are doing lead to sound that is like slowed down by 4 or 6 times. Not sure exactly where the problem is in your code, but sound processing example in ScreenShare for iOS / macOS should definitely be updated.

[3.6.200] Enhancement in the RTE SDK

CreateRendererView is no longer required.

surfaceView = RtcEngine.CreateRendererView(context);

can be replaced with

SurfaceView surfaceView = new SurfaceView (getBaseContext());

Android Voice SDK: What are the permissions used for ?

Hi, the Agora voice call guide here says, request for permissions as needed.

I have not yet been able to find which permissions are needed to use which feature of Agora voice SDK. There used to be READ_PHONE_STATE and BLUETOOTH in the list as well but it seems it is not needed anymore. Could you please point me to some relevant documentation where I could find this information.

RawMediaData-Swift-iOS: How to create a CVPixelBuffer from a AgoraVideoRawData

RawMediaData-Swift-iOS: How to create a CVPixelBuffer from a AgoraVideoRawData, whose type is 0(which refers to YUV420 in document)?
Here is my approach, but doesn't work, the pixel buffer just seems to be blank.

extension CVPixelBuffer{

    static func createFrom(_ agoraVideoRawData:AgoraVideoRawData) -> CVPixelBuffer?{
        let pixelFormat = kCVPixelFormatType_420YpCbCr8PlanarFullRange
        var cvPixelBuffer: CVPixelBuffer?
        
        CVPixelBufferCreate(
        nil,
        Int(agoraVideoRawData.width),
        Int(agoraVideoRawData.height),
        pixelFormat,
        nil,
        &cvPixelBuffer)
        
        guard cvPixelBuffer != nil else {
            return nil
        }
        
        CVPixelBufferLockBaseAddress(cvPixelBuffer!, CVPixelBufferLockFlags(rawValue: 0))
        let memoryLocationPointer = CVPixelBufferGetBaseAddress(cvPixelBuffer!)
        memoryLocationPointer?.copyMemory(from: agoraVideoRawData.yBuffer, byteCount: Int(agoraVideoRawData.yStride))
        let secondSegmentLocationPointer = UnsafeMutableRawPointer(mutating: memoryLocationPointer! + Int(agoraVideoRawData.yStride))
        secondSegmentLocationPointer.copyMemory(from: agoraVideoRawData.uBuffer, byteCount: Int(agoraVideoRawData.uStride))
        let thirdSegmentLocationPointer = UnsafeMutableRawPointer(mutating: secondSegmentLocationPointer + Int(agoraVideoRawData.uStride))
        thirdSegmentLocationPointer.copyMemory(from: agoraVideoRawData.vBuffer, byteCount: Int(agoraVideoRawData.vStride))
        CVPixelBufferUnlockBaseAddress(cvPixelBuffer!, CVPixelBufferLockFlags(rawValue: 0))
        
        return cvPixelBuffer
    }
}

The print information of a sample CVPixelBuffer created with my method is shown as followed:

<CVPixelBuffer 0x281a181e0 width=640 height=540 pixelFormat=f420 iosurface=0x0 planes=3>
<Plane 0 width=640 height=540 bytesPerRow=640>
<Plane 1 width=320 height=270 bytesPerRow=320>
<Plane 2 width=320 height=270 bytesPerRow=320>
<attributes={
PixelFormatDescription = {
BitsPerComponent = 8;
ComponentRange = FullRange;
ContainsAlpha = 0;
ContainsGrayscale = 0;
ContainsRGB = 0;
ContainsYCbCr = 1;
PixelFormat = 1714696752;
Planes = (
{
BitsPerBlock = 8;
BlackBlock = {length = 1, bytes = 0x00};
HorizontalSubsampling = 1;
VerticalSubsampling = 1;
},
{
BitsPerBlock = 8;
BlackBlock = {length = 1, bytes = 0x80};
HorizontalSubsampling = 2;
VerticalSubsampling = 2;
},
{
BitsPerBlock = 8;
BlackBlock = {length = 1, bytes = 0x80};
HorizontalSubsampling = 2;
VerticalSubsampling = 2;
}
);
};
} propagatedAttachments={
} nonPropagatedAttachments={
}>

Microphone is not working when screen off

Hi,
I found that when screen off for couple minutes, the microphone was stop working. But the speaker is still working (i can still hear the sound from counterpart).
When i turn screen on, the microphone instantly work again.

Please help. i tried on latest version 3.4.3 also still has this problem.
Thanks

Screen Sharing is not working

When the Users are connected into the Channel the one user from them is not able to share the Screen. When the Share Screen Button is clicked then nothing is happening. I am using the API Example to Run Screen Sharing

Mac OS not working

Can you help to check whether the examples of Mac OS version works?

Log from xcode:
"2021-05-21 19:04:24.860906+0800 APIExample[10433:192215] The class 'CocoaRenderView' overrides the method setIdentifier:. This method is implemented by class 'NSView'
Warning: warning: 8
2021-05-21 19:04:24.917550+0800 APIExample[10433:192573] [] CMIOHardware.cpp:379:CMIOObjectGetPropertyData Error: 2003332927, failed
Warning: warning: 104
Warning: warning: 104
Warning: warning: 104
Warning: warning: 104
"
my network works fine, and the parameters works fine
i am not able to find the success of the joinchannel
agorasdk.log

"INFO (18:57:33:948 | 0) 9735; [ap] GenericUniLbsRequest, flag: 65536, cname: 11C755428F394B399C8F33088E97F9A9, uid: 0,sid: F31B96BE90824AF48BBC94BA03B4BE12, appid: 896929e2b84c4c16917a0dc21676bbc
INFO (18:57:33:948 | 0) 9735; [ap] tcp - creating channel with 184.72.18.217:8443, ts 0, flag: 65536
INFO (18:57:33:998 | 50) 9735; [remote:54.178.26.110:8443] on connection close received, reason: 0, detail:
INFO (18:57:33:998 | 0) 9735; [remote:54.178.26.110:8443] start time wait, duration: 2000 ms
ERROR (18:57:33:998 | 0) 9735; [ap] aut socket error with 54.178.26.110:8443
INFO (18:57:33:998 | 0) 9735; [remote:54.178.26.110:8443] destroy session 0x7fee8f877eb0
INFO (18:57:33:998 | 0) 9735; [remote:54.178.26.110:8443] destroy connection 0x7fee8f0bd000
INFO (18:57:34:269 | 0) 9735; [ap/t] **responsed from 184.72.18.217:8443, UDPPROXY(65536).
INFO (18:57:34:360 | 91) 9735; [ap/u] **responsed from 15.237.134.178:8443, UDPPROXY(65536).

Local blur doesn't work using onCaptureVideoFrame lib-raw-data in android

This is reproducible in sample project as well. We see onCaptureVideoFrame callback is being called and when we debug we can see the blurred bitmap (it's rotation also wrong) but the line below doesn't seem to be doing anything. It doesn't apply the blur to the frame itself.

System.arraycopy(YUVUtils.bitmapToI420(width, height, bmp), 0, data, 0, bufferLength);

In our own code we directly change data array's content but it also doesn't work with the new SDK.

Can you give assistance ASAP @yoreland ?

getting error while integrating voice call sdk in my project

iacs.conversations E/s.conversation: 9: android.net.wifi.WifiManager$WifiLock io.agora.rtc.internal.RtcEngineImpl.mWifiLock
2021-03-08 22:26:02.910 15056-15056/eu.siacs.conversations E/s.conversation: Failed to register native method io.agora.rtc.internal.RtcEngineImpl.nativeGetParameters(JLjava/lang/String;)Ljava/lang/String; in /data/app/eu.siacs.conversations-zzSdskk22Pz9iHfE8O23AQ==/base.apk
2021-03-08 22:26:02.910 15056-15056/eu.siacs.conversations A/s.conversation: java_vm_ext.cc:570] JNI DETECTED ERROR IN APPLICATION: JNI NewGlobalRef called with pending exception java.lang.NoSuchMethodError: no static or non-static method "Lio/agora/rtc/internal/RtcEngineImpl;.nativeGetParameters(JLjava/lang/String;)Ljava/lang/String;"
2021-03-08 22:26:02.910 15056-15056/eu.siacs.conversations A/s.conversation: java_vm_ext.cc:570] at java.lang.String java.lang.Runtime.nativeLoad(java.lang.String, java.lang.ClassLoader, java.lang.Class) (Runtime.java:-2)
2021-03-08 22:26:02.910 15056-15056/eu.siacs.conversations A/s.conversation: java_vm_ext.cc:570] at java.lang.String java.lang.Runtime.nativeLoad(java.lang.String, java.lang.ClassLoader) (Runtime.java:1115)
2021-03-08 22:26:02.910 15056-15056/eu.siacs.conversations A/s.conversation: java_vm_ext.cc:570] at void java.lang.Runtime.loadLibrary0(java.lang.ClassLoader, java.lang.Class, java.lang.String) (Runtime.java:1069)
2021-03-08 22:26:02.910 15056-15056/eu.siacs.conversations A/s.conversation: java_vm_ext.cc:570] at void java.lang.Runtime.loadLibrary0(java.lang.Class, java.lang.String) (Runtime.java:1007)
2021-03-08 22:26:02.910 15056-15056/eu.siacs.conversations A/s.conversation: java_vm_ext.cc:570] at void java.lang.System.loadLibrary(java.lang.String) (System.java:1667)
2021-03-08 22:26:02.910 15056-15056/eu.siacs.conversations A/s.conversation: java_vm_ext.cc:570] at void io.agora.rtc.internal.RtcEngineImpl.loadNativeLibrary() (RtcEngineImpl.java:146)
2021-03-08 22:26:02.910 15056-15056/eu.siacs.conversations A/s.conversation: java_vm_ext.cc:570] at boolean io.agora.rtc.internal.RtcEngineImpl.initializeNativeLibs() (RtcEngineImpl.java:152)
2021-03-08 22:26:02.910 15056-15056/eu.siacs.conversations A/s.conversation: java_vm_ext.cc:570] at io.agora.rtc.RtcEngine io.agora.rtc.RtcEngine.create(android.content.Context, java.lang.String, io.agora.rtc.IRtcEngineEventHandler) (RtcEngine.java:62)
2021-03-08 22:26:02.910 15056-15056/eu.siacs.conversations A/s.conversation: java_vm_ext.cc:570] at void eu.siacs.conversations.ui.VoiceChatViewActivity.initializeAgoraEngine() (VoiceChatViewActivity.java:169)
2021-03-08 22:26:02.910 15056-15056/eu.siacs.conversations A/s.conversation: java_vm_ext.cc:570] at void eu.siacs.conversations.ui.VoiceChatViewActivity.initAgoraEngineAndJoinChannel() (VoiceChatViewActivity.java:83)
2021-03-08 22:26:02.910 15056-15056/eu.siacs.conversations A/s.conversation: java_vm_ext.cc:570] at void eu.siacs.conversations.ui.VoiceChatViewActivity.onCreate(android.os.Bundle) (VoiceChatViewActivity.java:78)

AgoraMeeting issue

Describe the bug

I have some problem in AgoraMeeting can you please help me solve the issue? Thank you very much
(You can see the issue in AgoraIO-Usecase/AgoraMeeting#8)

@yoreland
@plutoless

To Reproduce
Steps to reproduce the behavior:
1).Run sample project (I follow all the guide that you provided)

Smartphone (please complete the following information):

Device: iPad Pro 11 inch 2020
OS: 14.0

Raw Audio Data is not working.

I'm inquiring because there was a problem while studying 'Raw Audio Data'.

I have two questions.

The first question.
The test environment is as follows:
Audio communication was performed using 'Raw Audio Data' on one side and 'Basic Audio Streaming' on the other.

Abnormal audio was sent from 'Raw Audio Data' when 'Basic Audio Streaming' transmitted audio after accessing the channel on both sides.
When the channel is left in 'Raw Audio Data' and reconnected, audio from 'Raw Audio Data' is transmitted normally.

The above issue occurs when the activity ends and re-runs in 'Raw Audio Data'.

The second question.
When 'Raw Audio Data' sent audio in the environment above, 'Basic Audio Streaming' did not receive audio.

Is it right that I can't get it from Basic Audio Streaming because there's no transmitter in 'Raw Audio Data'?

Thank you.

how get CVPixelBuffer form AgoraVideoRawData

    func mediaDataPlugin(_ mediaDataPlugin: AgoraMediaDataPlugin, didCapturedVideoRawData videoRawData: AgoraVideoRawData) -> AgoraVideoRawData {
        return videoRawData
    }

i wnat to render CVPixelBuffer form this func.

Binary rejected : The app references non-public selectors

Hi,

I've updated to v3.3.0 and uploaded the app on AppStore connect. Got an issue from Apple after the app was processed.

We identified one or more issues with a recent delivery for your app, AppName. Please correct the following issues, then upload again.

ITMS-90338: Non-public API usage - The app references non-public selectors in AppName: netServiceBrowser:didRemoveService:, setUid:, stopPreview, transform:. If method names in your source code match the private Apple APIs listed above, altering your method names will help prevent this app from being flagged in future submissions. In addition, note that one or more of the above APIs may be located in a static library that was included with your app. If so, they must be removed. For further information, visit the Technical Support Information at http://developer.apple.com/support/technical/

NullPointerException

io.agora.api.example.common.adapter.ExampleSection.getContentItemsTotal(ExampleSection.java:30)

Co-hosting channel media Relay failed at error code 2

Join Channel Info
channel 1 : spario
uid1 : 1234
token 1: I generate from server using channel1 and uid1

channel 2 :lyf
uid2 : 1235
token 2: Generated using channel2 and uid2

channel media relay info for 'spario' channel:
Source channel ->
channel : spario,
uid: 0,

token generated by spario channel and uid=0
Destination channel ->
channel : lyf,
uid: 1235,

token generated by 'spario' channel and uid=1235
channel media relay info for 'lyf' channel:
Source channel ->
channel : lyf,
uid: 0,

token generated by 'lyf' channel and uid=0
Destination channel ->
channel : spario,
uid: 1234,

token generated by spario channel and uid=1234

Note: Token for channel media relay is generated by the same method as for joining channels.
still I get Channel media relay error code 2

Co host token authentication enabled from Agora console

ScreenCapture: Draw frame failed, ignore

E/ScreenCapture: Draw frame failed, ignore
D/ScreenSharingService: onFrameAvailable ImgTexFrame{mFormat=ImgTexFormat{mColorFormat=3, mWidth=1080, mHeight=2259}, mTextureId=1, mTexMatrix=[1.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0]} 38288815
W/System.err: java.lang.NullPointerException: Attempt to invoke interface method 'void io.agora.rtc.mediaio.IVideoFrameConsumer.consumeTextureFrame(int, int, int, int, int, long, float[])' on a null object reference
at io.agora.rtc.ss.impl.ScreenSharingService$2.onFrameAvailable(ScreenSharingService.java:95)
at io.agora.rtc.ss.impl.ScreenSharingService$2.onFrameAvailable(ScreenSharingService.java:81)
at io.agora.rtc.ss.gles.SrcConnector.onFrameAvailable(SrcConnector.java:40)
at io.agora.rtc.ss.impl.ScreenCapture$2.onDrawFrame(ScreenCapture.java:314)
at io.agora.rtc.ss.gles.GLRender.drawFrame(GLRender.java:313)
at io.agora.rtc.ss.gles.GLRender.access$300(GLRender.java:23)
at io.agora.rtc.ss.gles.GLRender$5.handleMessage(GLRender.java:396)
at android.os.Handler.dispatchMessage(Handler.java:106)

Screen share not working in this sdk

all other things are working well but when we go to screen share there is just video sharing on 2 devices . Cant find any option to share screen

Fatal Exception: java.lang.UnsatisfiedLinkError: dlopen failed: library "libagora-core.so" not found

I am receiving a crash report from Google Pixel 3a

Fatal Exception: java.lang.UnsatisfiedLinkError: dlopen failed: library "libagora-core.so" not found
       at java.lang.Runtime.loadLibrary0(Runtime.java:1087)
       at java.lang.Runtime.loadLibrary0(Runtime.java:1008)
       at java.lang.System.loadLibrary(System.java:1664)
       at io.agora.rtc.internal.RtcEngineImpl.loadNativeLibrary(RtcEngineImpl.java:133)
       at io.agora.rtc.internal.RtcEngineImpl.initializeNativeLibs(RtcEngineImpl.java:183)
       at io.agora.rtc.RtcEngine.create(RtcEngine.java:41)
       at com.devsbitwise.masa.App.setRtcEngine(App.java:116)
       at com.devsbitwise.masa.App.lambda$onCreate$0(App.java:78)
       at com.devsbitwise.masa.App.$r8$lambda$aJq5hfU8FUE4bQLVHdrfPNSaKcw(App.java)
       at com.devsbitwise.masa.App$$InternalSyntheticLambda$0$6a962a8aab386811e58522edb5c22ecaf8c81020c05aacd154b59c1cf0d68747$0.onSuccess(App.java:4)
       at com.google.android.gms.tasks.zzm.run(zzm.java:1)
       at android.os.Handler.handleCallback(Handler.java:938)
       at android.os.Handler.dispatchMessage(Handler.java:99)
       at android.os.Looper.loop(Looper.java:223)
       at android.app.ActivityThread.main(ActivityThread.java:7660)
       at java.lang.reflect.Method.invoke(Method.java)
       at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
       at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947)

However I never encountered this error before. This issue is more likely from app review device since Pixel products is not available in our country. I do not know if they are using virtual or real device. Any solution?

ios app crash when stop broadcast

I am trying to implement the screen share for iOS and it's working fine when the broadcast started, I can see the streaming but when I stop the broadcast the app got crashes, any help will be highly appreciated.

Question about AgoraMeeting

I have some question that if I want to join audio from another app by call the function

"agoraKit.joinChannel(byToken: token,channelId: channelid,info: nil,uid: 0 ,joinSuccess: nil)"
Token : same as AgoraMeeting
ChannelId : same as AgoraMeeting (I'm check from Agora dashboard)

But when I successfully call this function the audio doesn't come out from AgoraMeeting.
Did I do something wrong?

App audio causes ios agora-ScreenShare-Exension demo to crash with EXC_BAD_ACCESS

Tested on:
ios 14.6, Iphone Xr
ios 13.7, iPhone 7

Steps to reproduce:

  1. Build and run APIExample demo ios app
  2. Launch extension via picker in APIExample container app and start screen broadcasting.
  3. Navigate to any app playing in app audio
  4. Observe EXC_BAD_ACCESS crash occurring on this line or this line.

Have observed similar behavior with mic audio as well. Seems to occur if I start the broadcast without the mic enabled and then enable the mic while the broadcast extension is running.

Live Streaming not working, it crashes while using mRtcEngine.setClientRole(IRtcEngineEventHandler.ClientRole.CLIENT_ROLE_BROADCASTER, null)

21:24:50.879 32364-32364/com.livestreaming.channelize.io D/SensorManager: isQQShake: package is = com.livestreaming.channelize.io
2020-12-23 21:24:50.879 32364-32364/com.livestreaming.channelize.io D/SensorManager: isMicroMsg: package is = com.livestreaming.channelize.io
2020-12-23 21:24:50.893 32364-32364/com.livestreaming.channelize.io I/AudioManager: In isBluetoothScoOn(), calling application: com.livestreaming.channelize.io
2020-12-23 21:24:50.899 32364-32364/com.livestreaming.channelize.io D/agora-jni: android bridge create done...
2020-12-23 21:24:50.910 32364-32542/com.livestreaming.channelize.io E/libc: Access denied finding property "net.dns1"
2020-12-23 21:24:50.910 32364-32542/com.livestreaming.channelize.io E/libc: Access denied finding property "net.dns2"
2020-12-23 21:24:50.910 32364-32542/com.livestreaming.channelize.io E/libc: Access denied finding property "net.dns3"
2020-12-23 21:24:50.910 32364-32542/com.livestreaming.channelize.io E/libc: Access denied finding property "net.dns4"
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] JNI DETECTED ERROR IN APPLICATION: java_object == null
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] in call to GetObjectClass
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] from int io.agora.rtc.internal.RtcEngineImpl.nativeSetClientRoleOptions(long, int, java.lang.Object)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] "main" prio=5 tid=1 Runnable
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] | group="main" sCount=0 dsCount=0 flags=0 obj=0x75ce7d38 self=0x7a5b614c00
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] | sysTid=32364 nice=-10 cgrp=default sched=0/0 handle=0x7ae2485548
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] | state=R schedstat=( 3923709379 340787550 1123 ) utm=361 stm=31 core=5 HZ=100
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] | stack=0x7fdb1d0000-0x7fdb1d2000 stackSize=8MB
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] | held mutexes= "mutator lock"(shared held)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] native: #00 pc 00000000003c2a80 /system/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits>&, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+220)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] native: #1 pc 000000000049010c /system/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream<char, std::__1::char_traits>&, bool, BacktraceMap*, bool) const+352)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] native: #2 pc 00000000002e5f40 /system/lib64/libart.so (art::JavaVMExt::JniAbort(char const*, char const*)+968)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] native: #3 pc 0000000000332130 /system/lib64/libart.so (art::JNI::GetObjectClass(_JNIEnv*, _jobject*)+1012)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] native: #4 pc 00000000000eb8f8 /system/lib64/libart.so (art::(anonymous namespace)::CheckJNI::GetObjectClass(_JNIEnv*, _jobject*)+712)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] native: #5 pc 000000000024107c /data/app/com.livestreaming.channelize.io-37NOwvKoGTraPzzoYW9oqA==/lib/arm64/libagora-rtc-sdk.so (???)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] at io.agora.rtc.internal.RtcEngineImpl.nativeSetClientRoleOptions(Native method)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] at io.agora.rtc.internal.RtcEngineImpl.setClientRole(RtcEngineImpl.java:1317)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] at com.livestreaming.channelize.io.activity.lscSettingUpAndLive.LSCBroadCastSettingUpAndLiveActivity.initRTCEngine(LSCBroadCastSettingUpAndLiveActivity.kt:311)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] at com.livestreaming.channelize.io.activity.lscSettingUpAndLive.LSCBroadCastSettingUpAndLiveActivity.onStart(LSCBroadCastSettingUpAndLiveActivity.kt:298)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] at android.app.Instrumentation.callActivityOnStart(Instrumentation.java:1395)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] at android.app.Activity.performStart(Activity.java:7282)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] at android.app.ActivityThread.handleStartActivity(ActivityThread.java:3201)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] at android.app.servertransaction.TransactionExecutor.performLifecycleSequence(TransactionExecutor.java:180)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] at android.app.servertransaction.TransactionExecutor.cycleToPath(TransactionExecutor.java:165)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] at android.app.servertransaction.TransactionExecutor.executeLifecycleState(TransactionExecutor.java:142)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:70)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2025)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] at android.os.Handler.dispatchMessage(Handler.java:106)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] at android.os.Looper.loop(Looper.java:224)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] at android.app.ActivityThread.main(ActivityThread.java:7141)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] at java.lang.reflect.Method.invoke(Native method)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:511)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542] at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:876)
2020-12-23 21:24:51.030 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: java_vm_ext.cc:542]
2020-12-23 21:24:52.952 32364-32544/com.livestreaming.channelize.io D/TAG: 0
2020-12-23 21:24:54.953 32364-32544/com.livestreaming.channelize.io D/TAG: 0
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] Runtime aborting...
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] Dumping all threads without appropriate locks held: thread list lock mutator lock
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] All threads:
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] DALVIK THREADS (43):
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] "main" prio=10 tid=1 Runnable
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | group="" sCount=0 dsCount=0 flags=0 obj=0x75ce7d38 self=0x7a5b614c00
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | sysTid=32364 nice=-10 cgrp=default sched=0/0 handle=0x7ae2485548
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | state=R schedstat=( 3953185728 346110936 1132 ) utm=361 stm=34 core=6 HZ=100
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | stack=0x7fdb1d0000-0x7fdb1d2000 stackSize=8MB
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | held mutexes= "abort lock" "mutator lock"(shared held)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #00 pc 00000000003c2a80 /system/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits>&, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+220)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #1 pc 000000000049010c /system/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream<char, std::__1::char_traits>&, bool, BacktraceMap*, bool) const+352)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #2 pc 00000000004a9d60 /system/lib64/libart.so (art::DumpCheckpoint::Run(art::Thread*)+844)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #3 pc 00000000004a2b4c /system/lib64/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+484)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #4 pc 00000000004a1f68 /system/lib64/libart.so (art::ThreadList::Dump(std::__1::basic_ostream<char, std::__1::char_traits>&, bool)+1088)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #5 pc 0000000000465278 /system/lib64/libart.so (art::Runtime::Abort(char const*)+388)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #6 pc 0000000000008ce0 /system/lib64/libbase.so (android::base::LogMessage::~LogMessage()+724)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #7 pc 00000000002e61e0 /system/lib64/libart.so (art::JavaVMExt::JniAbort(char const*, char const*)+1640)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #8 pc 0000000000332130 /system/lib64/libart.so (art::JNI::GetObjectClass(_JNIEnv*, _jobject*)+1012)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #9 pc 00000000000eb8f8 /system/lib64/libart.so (art::(anonymous namespace)::CheckJNI::GetObjectClass(_JNIEnv*, _jobject*)+712)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #10 pc 000000000024107c /data/app/com.livestreaming.channelize.io-37NOwvKoGTraPzzoYW9oqA==/lib/arm64/libagora-rtc-sdk.so (???)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at io.agora.rtc.internal.RtcEngineImpl.nativeSetClientRoleOptions(Native method)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at io.agora.rtc.internal.RtcEngineImpl.setClientRole(RtcEngineImpl.java:1317)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at com.livestreaming.channelize.io.activity.lscSettingUpAndLive.LSCBroadCastSettingUpAndLiveActivity.initRTCEngine(LSCBroadCastSettingUpAndLiveActivity.kt:311)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at com.livestreaming.channelize.io.activity.lscSettingUpAndLive.LSCBroadCastSettingUpAndLiveActivity.onStart(LSCBroadCastSettingUpAndLiveActivity.kt:298)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at android.app.Instrumentation.callActivityOnStart(Instrumentation.java:1395)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at android.app.Activity.performStart(Activity.java:7282)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at android.app.ActivityThread.handleStartActivity(ActivityThread.java:3201)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at android.app.servertransaction.TransactionExecutor.performLifecycleSequence(TransactionExecutor.java:180)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at android.app.servertransaction.TransactionExecutor.cycleToPath(TransactionExecutor.java:165)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at android.app.servertransaction.TransactionExecutor.executeLifecycleState(TransactionExecutor.java:142)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:70)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2025)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at android.os.Handler.dispatchMessage(Handler.java:106)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at android.os.Looper.loop(Looper.java:224)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at android.app.ActivityThread.main(ActivityThread.java:7141)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.reflect.Method.invoke(Native method)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:511)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:876)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561]
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] "Jit thread pool worker thread 0" prio=10 tid=2 Native
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | group="" sCount=1 dsCount=0 flags=1 obj=0x12cc0000 self=0x7a5482f000
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | sysTid=32373 nice=9 cgrp=default sched=0/0 handle=0x7a54d694f0
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | state=S schedstat=( 988022441 286597296 666 ) utm=76 stm=21 core=5 HZ=100
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | stack=0x7a54c6b000-0x7a54c6d000 stackSize=1021KB
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | held mutexes=
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: __switch_to+0xb4/0xc0
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: futex_wait_queue_me+0x108/0x240
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: futex_wait+0x298/0x440
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: do_futex+0x108/0x1790
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: SyS_futex+0x150/0x1c8
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: el0_irq_naked+0x2a4/0x1820
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #00 pc 000000000001f2ac /system/lib64/libc.so (syscall+28)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #1 pc 00000000000d7450 /system/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+148)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #2 pc 00000000004ab5a4 /system/lib64/libart.so (art::ThreadPool::GetTask(art::Thread*)+260)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #3 pc 00000000004aab0c /system/lib64/libart.so (art::ThreadPoolWorker::Run()+124)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #4 pc 00000000004aa5cc /system/lib64/libart.so (art::ThreadPoolWorker::Callback(void*)+148)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #5 pc 00000000000927c8 /system/lib64/libc.so (__pthread_start(void*)+36)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #6 pc 0000000000023c78 /system/lib64/libc.so (__start_thread+68)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] (no managed stack frames)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561]
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] "Signal Catcher" prio=10 tid=3 WaitingInMainSignalCatcherLoop
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | group="" sCount=1 dsCount=0 flags=1 obj=0x12cc0088 self=0x7a5b616400
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | sysTid=32374 nice=0 cgrp=default sched=0/0 handle=0x7a54c684f0
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | state=S schedstat=( 536614 7796980 2 ) utm=0 stm=0 core=6 HZ=100
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | stack=0x7a54b6d000-0x7a54b6f000 stackSize=1009KB
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | held mutexes=
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: __switch_to+0xb4/0xc0
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: do_sigtimedwait+0x158/0x2d0
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: SyS_rt_sigtimedwait+0x110/0x1a0
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: el0_irq_naked+0x2a4/0x1820
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #00 pc 000000000007d34c /system/lib64/libc.so (__rt_sigtimedwait+8)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #1 pc 0000000000031510 /system/lib64/libc.so (sigwait+64)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #2 pc 000000000047df38 /system/lib64/libart.so (art::SignalCatcher::WaitForSignal(art::Thread*, art::SignalSet&)+388)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #3 pc 000000000047c8e0 /system/lib64/libart.so (art::SignalCatcher::Run(void*)+272)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #4 pc 00000000000927c8 /system/lib64/libc.so (__pthread_start(void*)+36)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #5 pc 0000000000023c78 /system/lib64/libc.so (__start_thread+68)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] (no managed stack frames)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561]
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] "HeapTaskDaemon" prio=10 tid=4 WaitingForTaskProcessor
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | group="" sCount=1 dsCount=0 flags=1 obj=0x12cc0558 self=0x7a5b68a800
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | sysTid=32379 nice=4 cgrp=default sched=0/0 handle=0x7a41b474f0
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | state=S schedstat=( 294041764 124941159 239 ) utm=26 stm=2 core=1 HZ=100
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | stack=0x7a41a44000-0x7a41a46000 stackSize=1041KB
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | held mutexes=
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: __switch_to+0xb4/0xc0
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: futex_wait_queue_me+0x108/0x240
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: futex_wait+0x298/0x440
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: do_futex+0x108/0x1790
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: SyS_futex+0x150/0x1c8
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: el0_irq_naked+0x2a4/0x1820
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #00 pc 000000000001f2ac /system/lib64/libc.so (syscall+28)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #1 pc 00000000000d7450 /system/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+148)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #2 pc 000000000022deb8 /system/lib64/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+440)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #3 pc 000000000022e74c /system/lib64/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+96)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at dalvik.system.VMRuntime.runHeapTasks(Native method)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Daemons$HeapTaskDaemon.runInternal(Daemons.java:510)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Daemons$Daemon.run(Daemons.java:107)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Thread.run(Thread.java:764)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561]
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] "ReferenceQueueDaemon" prio=10 tid=5 Waiting
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | group="" sCount=1 dsCount=0 flags=1 obj=0x12cc0110 self=0x7a5b663c00
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | sysTid=32376 nice=4 cgrp=default sched=0/0 handle=0x7a41e594f0
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | state=S schedstat=( 9997812 29502445 38 ) utm=0 stm=0 core=5 HZ=100
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | stack=0x7a41d56000-0x7a41d58000 stackSize=1041KB
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | held mutexes=
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: __switch_to+0xb4/0xc0
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: futex_wait_queue_me+0x108/0x240
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: futex_wait+0x298/0x440
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: do_futex+0x108/0x1790
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: SyS_futex+0x150/0x1c8
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: el0_irq_naked+0x2a4/0x1820
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #00 pc 000000000001f2ac /system/lib64/libc.so (syscall+28)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #1 pc 00000000000d7450 /system/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+148)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #2 pc 00000000003be024 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, long, int, bool, art::ThreadState)+636)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #3 pc 00000000003bfae0 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long, int, bool, art::ThreadState)+424)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Object.wait(Native method)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] - waiting on <0x055641bb> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:182)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] - locked <0x055641bb> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Daemons$Daemon.run(Daemons.java:107)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Thread.run(Thread.java:764)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561]
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] "FinalizerWatchdogDaemon" prio=10 tid=6 Sleeping
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | group="" sCount=1 dsCount=0 flags=1 obj=0x12cc0198 self=0x7a5b689c00
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | sysTid=32378 nice=4 cgrp=default sched=0/0 handle=0x7a41c4d4f0
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | state=S schedstat=( 840937 14178697 8 ) utm=0 stm=0 core=5 HZ=100
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | stack=0x7a41b4a000-0x7a41b4c000 stackSize=1041KB
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | held mutexes=
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: __switch_to+0xb4/0xc0
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: futex_wait_queue_me+0x108/0x240
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: futex_wait+0x130/0x440
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: do_futex+0x108/0x1790
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: SyS_futex+0x150/0x1c8
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: el0_irq_naked+0x2a4/0x1820
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #00 pc 000000000001f2b0 /system/lib64/libc.so (syscall+32)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #1 pc 00000000000d787c /system/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+168)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #2 pc 00000000003be038 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, long, int, bool, art::ThreadState)+656)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #3 pc 00000000003bfae0 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long, int, bool, art::ThreadState)+424)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Thread.sleep(Native method)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] - sleeping on <0x0f6326d8> (a java.lang.Object)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Thread.sleep(Thread.java:373)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] - locked <0x0f6326d8> (a java.lang.Object)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Thread.sleep(Thread.java:314)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Daemons$FinalizerWatchdogDaemon.sleepFor(Daemons.java:360)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Daemons$FinalizerWatchdogDaemon.waitForFinalization(Daemons.java:399)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:285)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Daemons$Daemon.run(Daemons.java:107)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Thread.run(Thread.java:764)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561]
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] "ADB-JDWP Connection Control Thread" prio=10 tid=7 WaitingInMainDebuggerLoop
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | group="" sCount=1 dsCount=0 flags=1 obj=0x12cc0228 self=0x7a51236800
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | sysTid=32375 nice=0 cgrp=default sched=0/0 handle=0x7a41f574f0
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | state=S schedstat=( 5160156 24510988 20 ) utm=0 stm=0 core=5 HZ=100
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | stack=0x7a41e5c000-0x7a41e5e000 stackSize=1009KB
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | held mutexes=
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: __switch_to+0xb4/0xc0
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: do_sys_poll+0x504/0xa80
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: SyS_ppoll+0x1a8/0x290
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: el0_irq_naked+0x2a4/0x1820
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #00 pc 000000000007d28c /system/lib64/libc.so (__ppoll+8)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #1 pc 000000000002f1bc /system/lib64/libc.so (poll+88)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #2 pc 0000000000006c50 /system/lib64/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+836)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #3 pc 0000000000005218 /system/lib64/libadbconnection.so (adbconnection::CallbackFunction(void*)+1060)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #4 pc 00000000000927c8 /system/lib64/libc.so (__pthread_start(void*)+36)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #5 pc 0000000000023c78 /system/lib64/libc.so (__start_thread+68)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] (no managed stack frames)
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561]
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] "FinalizerDaemon" prio=10 tid=8 Waiting
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | group="" sCount=1 dsCount=0 flags=1 obj=0x12cc02b0 self=0x7a5b664800
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | sysTid=32377 nice=4 cgrp=default sched=0/0 handle=0x7a41d534f0
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | state=S schedstat=( 11288280 17777867 31 ) utm=1 stm=0 core=7 HZ=100
2020-12-23 21:24:56.148 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | stack=0x7a41c50000-0x7a41c52000 stackSize=1041KB
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | held mutexes=
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: __switch_to+0xb4/0xc0
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: futex_wait_queue_me+0x108/0x240
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: futex_wait+0x298/0x440
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: do_futex+0x108/0x1790
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: SyS_futex+0x150/0x1c8
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: el0_irq_naked+0x2a4/0x1820
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #00 pc 000000000001f2ac /system/lib64/libc.so (syscall+28)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #1 pc 00000000000d7450 /system/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+148)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #2 pc 00000000003be024 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, long, int, bool, art::ThreadState)+636)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #3 pc 00000000003bfae0 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long, int, bool, art::ThreadState)+424)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Object.wait(Native method)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] - waiting on <0x061d8a31> (a java.lang.Object)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Object.wait(Object.java:422)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:188)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] - locked <0x061d8a31> (a java.lang.Object)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:209)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:236)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Daemons$Daemon.run(Daemons.java:107)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Thread.run(Thread.java:764)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561]
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] "Binder:32364_1" prio=10 tid=9 Native
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | group="" sCount=1 dsCount=0 flags=1 obj=0x12cc0338 self=0x7a52c3d000
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | sysTid=32380 nice=0 cgrp=default sched=0/0 handle=0x7a418434f0
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | state=S schedstat=( 9179583 15739321 29 ) utm=0 stm=0 core=6 HZ=100
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | stack=0x7a41748000-0x7a4174a000 stackSize=1009KB
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | held mutexes=
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: __switch_to+0xb4/0xc0
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: binder_ioctl_write_read+0x2a68/0x5248
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: binder_ioctl+0x3e4/0xa40
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: do_vfs_ioctl+0x59c/0xe58
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: SyS_ioctl+0x88/0x98
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: el0_irq_naked+0x2a4/0x1820
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #00 pc 000000000007d258 /system/lib64/libc.so (__ioctl+4)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #1 pc 000000000002cc00 /system/lib64/libc.so (ioctl+132)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #2 pc 0000000000065240 /system/lib64/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+244)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #3 pc 000000000006541c /system/lib64/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+24)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #4 pc 0000000000065b64 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+64)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #5 pc 0000000000088410 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #6 pc 000000000001010c /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+284)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #7 pc 00000000000b5498 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #8 pc 00000000000927c8 /system/lib64/libc.so (__pthread_start(void*)+36)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #9 pc 0000000000023c78 /system/lib64/libc.so (__start_thread+68)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] (no managed stack frames)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561]
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] "Binder:32364_2" prio=10 tid=10 Native
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | group="" sCount=1 dsCount=0 flags=1 obj=0x12cc03c0 self=0x7a5482a800
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | sysTid=32390 nice=0 cgrp=default sched=0/0 handle=0x7a417454f0
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | state=S schedstat=( 23497189 22116768 42 ) utm=2 stm=0 core=2 HZ=100
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | stack=0x7a4164a000-0x7a4164c000 stackSize=1009KB
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | held mutexes=
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: __switch_to+0xb4/0xc0
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: binder_ioctl_write_read+0x2a68/0x5248
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: binder_ioctl+0x3e4/0xa40
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: do_vfs_ioctl+0x59c/0xe58
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: SyS_ioctl+0x88/0x98
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: el0_irq_naked+0x2a4/0x1820
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #00 pc 000000000007d258 /system/lib64/libc.so (__ioctl+4)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #1 pc 000000000002cc00 /system/lib64/libc.so (ioctl+132)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #2 pc 0000000000065240 /system/lib64/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+244)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #3 pc 000000000006541c /system/lib64/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+24)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #4 pc 0000000000065b90 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+108)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #5 pc 0000000000088410 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #6 pc 000000000001010c /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+284)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #7 pc 00000000000b5498 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #8 pc 00000000000927c8 /system/lib64/libc.so (__pthread_start(void*)+36)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #9 pc 0000000000023c78 /system/lib64/libc.so (__start_thread+68)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] (no managed stack frames)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561]
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] "Binder:32364_3" prio=10 tid=11 Native
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | group="" sCount=1 dsCount=0 flags=1 obj=0x12cc0448 self=0x7a52c44800
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | sysTid=32402 nice=0 cgrp=default sched=0/0 handle=0x7a416474f0
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | state=S schedstat=( 98088807 128742293 584 ) utm=4 stm=4 core=6 HZ=100
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | stack=0x7a4154c000-0x7a4154e000 stackSize=1009KB
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | held mutexes=
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: __switch_to+0xb4/0xc0
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: binder_ioctl_write_read+0x2a68/0x5248
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: binder_ioctl+0x3e4/0xa40
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: do_vfs_ioctl+0x59c/0xe58
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: SyS_ioctl+0x88/0x98
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: el0_irq_naked+0x2a4/0x1820
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #00 pc 000000000007d258 /system/lib64/libc.so (__ioctl+4)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #1 pc 000000000002cc00 /system/lib64/libc.so (ioctl+132)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #2 pc 0000000000065240 /system/lib64/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+244)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #3 pc 000000000006541c /system/lib64/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+24)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #4 pc 0000000000065b90 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+108)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #5 pc 0000000000088410 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #6 pc 000000000001010c /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+284)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #7 pc 00000000000b5498 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #8 pc 00000000000927c8 /system/lib64/libc.so (__pthread_start(void*)+36)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #9 pc 0000000000023c78 /system/lib64/libc.so (__start_thread+68)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] (no managed stack frames)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561]
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] "Profile Saver" prio=10 tid=12 Native
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | group="" sCount=1 dsCount=0 flags=1 obj=0x12cc04d0 self=0x7a54876000
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | sysTid=32438 nice=9 cgrp=default sched=0/0 handle=0x7a40b104f0
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | state=S schedstat=( 10822346 10866508 25 ) utm=1 stm=0 core=6 HZ=100
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | stack=0x7a40a15000-0x7a40a17000 stackSize=1009KB
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #2 pc 0000000000014c48 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+60)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #3 pc 0000000000351374 /system/lib64/libhwui.so (???)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: __switch_to+0xb4/0xc0
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Object.wait(Native method)
2020-12-23 21:24:56.149 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:665)
2020-12-23 21:24:56.150 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: futex_wait+0x130/0x440
2020-12-23 21:24:56.150 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] "DefaultDispatcher-worker-3" prio=10 tid=18 TimedWaiting
2020-12-23 21:24:56.150 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: do_futex+0x108/0x1790
2020-12-23 21:24:56.150 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.lang.Thread.parkFor$(Thread.java:2137)
2020-12-23 21:24:56.150 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] - locked <0x010f986d> (a java.lang.Object)
2020-12-23 21:24:56.150 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | sysTid=32490 nice=0 cgrp=default sched=0/0 handle=0x7a3ed374f0
2020-12-23 21:24:56.150 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.io.DataInputStream.readByte(DataInputStream.java:268)
2020-12-23 21:24:56.150 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | stack=0x7a3eb2e000-0x7a3eb30000 stackSize=1041KB
2020-12-23 21:24:56.151 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #1 pc 00000000000d7450 /system/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+148)
2020-12-23 21:24:56.151 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] native: #1 pc 00000000000d787c /system/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+168)
2020-12-23 21:24:56.151 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: SyS_ppoll+0x1a8/0x290
2020-12-23 21:24:56.152 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | group="" sCount=1 dsCount=0 flags=1 obj=0x130838d8 self=0x7a40386000
2020-12-23 21:24:56.152 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] - locked <0x0485cdfa> (a java.lang.Object)
2020-12-23 21:24:56.152 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
2020-12-23 21:24:56.152 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] | held mutexes=
2020-12-23 21:24:56.152 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] at android.os.MessageQueue.next(MessageQueue.java:330)
2020-12-23 21:24:56.152 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561] kernel: __switch_to+0xb4/0xc0
2020-12-23 21:24:56.154 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:561]
2020-12-23 21:24:56.154 32364-32364/com.livestreaming.channelize.io A/g.channelize.i: runtime.cc:569] at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:511)

--------- beginning of crash

2020-12-23 21:24:56.155 32364-32364/com.livestreaming.channelize.io A/libc: Fatal signal 6 (SIGABRT), code -6 (SI_TKILL) in tid 32364 (g.channelize.io), pid 32364 (g.channelize.io)
2020-12-23 21:24:56.342 32616-32616/? A/DEBUG: Softversion: PD1928BF_EX_A_1.70.2
2020-12-23 21:24:56.342 32616-32616/? A/DEBUG: Time: 2020-12-23 21:24:56
2020-12-23 21:24:56.342 32616-32616/? A/DEBUG: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
2020-12-23 21:24:56.342 32616-32616/? A/DEBUG: Build fingerprint: 'vivo/1916/1916:9/PKQ1.190626.001/compiler10282355:user/release-keys'
2020-12-23 21:24:56.342 32616-32616/? A/DEBUG: Revision: '0'
2020-12-23 21:24:56.342 32616-32616/? A/DEBUG: ABI: 'arm64'
2020-12-23 21:24:56.342 32616-32616/? A/DEBUG: pid: 32364, tid: 32364, name: g.channelize.io >>> com.livestreaming.channelize.io <<<
2020-12-23 21:24:56.342 32616-32616/? A/DEBUG: signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
2020-12-23 21:24:56.342 32616-32616/? A/DEBUG: Abort message: 'java_vm_ext.cc:542] JNI DETECTED ERROR IN APPLICATION: java_object == null'
2020-12-23 21:24:56.342 32616-32616/? A/DEBUG: x0 0000000000000000 x1 0000000000007e6c x2 0000000000000006 x3 0000000000000008
2020-12-23 21:24:56.342 32616-32616/? A/DEBUG: x4 fefeff79dd56d667 x5 fefeff79dd56d667 x6 fefeff79dd56d667 x7 7f7f7f7fff7fff7f
2020-12-23 21:24:56.342 32616-32616/? A/DEBUG: x8 0000000000000083 x9 6831f1fe57afdf6b x10 0000000000000000 x11 fffffffc7ffffbdf
2020-12-23 21:24:56.342 32616-32616/? A/DEBUG: x12 0000000000000001 x13 ffffffffffffffff x14 ffffffffff000000 x15 ffffffffffffffff
2020-12-23 21:24:56.342 32616-32616/? A/DEBUG: x16 0000007adf395298 x17 0000007adf2b6d14 x18 0000000000000010 x19 0000000000007e6c
2020-12-23 21:24:56.342 32616-32616/? A/DEBUG: x20 0000000000007e6c x21 0000007a40819bc0 x22 0000000000000002 x23 0000007a5afbf833
2020-12-23 21:24:56.342 32616-32616/? A/DEBUG: x24 0000007a5afbf6e7 x25 0000000000000001 x26 0000007fdb9c8240 x27 0000000000000043
2020-12-23 21:24:56.342 32616-32616/? A/DEBUG: x28 0000007a5b710ee0 x29 0000007fdb9c80f0
2020-12-23 21:24:56.342 32616-32616/? A/DEBUG: sp 0000007fdb9c80b0 lr 0000007adf2a8394 pc 0000007adf2a83bc
2020-12-23 21:24:56.348 32616-32616/? A/DEBUG: backtrace:
2020-12-23 21:24:56.348 32616-32616/? A/DEBUG: #00 pc 00000000000223bc /system/lib64/libc.so (abort+116)
2020-12-23 21:24:56.348 32616-32616/? A/DEBUG: #1 pc 00000000004655a0 /system/lib64/libart.so (art::Runtime::Abort(char const*)+1196)
2020-12-23 21:24:56.348 32616-32616/? A/DEBUG: #2 pc 0000000000008ce0 /system/lib64/libbase.so (android::base::LogMessage::~LogMessage()+724)
2020-12-23 21:24:56.348 32616-32616/? A/DEBUG: #3 pc 00000000002e61e0 /system/lib64/libart.so (art::JavaVMExt::JniAbort(char const*, char const*)+1640)
2020-12-23 21:24:56.348 32616-32616/? A/DEBUG: #4 pc 0000000000332130 /system/lib64/libart.so (art::JNI::GetObjectClass(_JNIEnv*, _jobject*)+1012)
2020-12-23 21:24:56.348 32616-32616/? A/DEBUG: #5 pc 00000000000eb8f8 /system/lib64/libart.so (art::(anonymous namespace)::CheckJNI::GetObjectClass(_JNIEnv*, _jobject*)+712)
2020-12-23 21:24:56.348 32616-32616/? A/DEBUG: #6 pc 000000000024107c /data/app/com.livestreaming.channelize.io-37NOwvKoGTraPzzoYW9oqA==/lib/arm64/libagora-rtc-sdk.so

App is crashing in rwa audio and video data

2020-12-13 12:12:34.212 6533-6533/io.agora.api.example A/libc: Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x4 in tid 6533 (ora.api.example), pid 6533 (ora.api.example)
2020-12-13 12:12:34.215 6120-6350/com.ai.agorandk E/agora_vrp: replaced by swap before render. gap=80 ms. all replaced by swap=4, stream=0
2020-12-13 12:12:34.265 6120-6120/com.ai.agorandk D/OrientationEventListener: Orientation is:351 X:-0.8600629 Y:-5.7322245 Z:-8.281897
2020-12-13 12:12:34.295 6120-6350/com.ai.agorandk E/agora_vrp: replaced by swap before render. gap=79 ms. all replaced by swap=5, stream=0
2020-12-13 12:12:34.310 6691-6691/? A/DEBUG: Softversion: PD1928BF_EX_A_1.70.2
2020-12-13 12:12:34.310 6691-6691/? A/DEBUG: Time: 2020-12-13 12:12:34
2020-12-13 12:12:34.310 6691-6691/? A/DEBUG: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
2020-12-13 12:12:34.310 6691-6691/? A/DEBUG: Build fingerprint: 'vivo/1916/1916:9/PKQ1.190626.001/compiler10282355:user/release-keys'
2020-12-13 12:12:34.310 6691-6691/? A/DEBUG: Revision: '0'
2020-12-13 12:12:34.310 6691-6691/? A/DEBUG: ABI: 'arm64'
2020-12-13 12:12:34.310 6691-6691/? A/DEBUG: pid: 6533, tid: 6533, name: ora.api.example >>> io.agora.api.example <<<
2020-12-13 12:12:34.310 6691-6691/? A/DEBUG: signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x4
2020-12-13 12:12:34.310 6691-6691/? A/DEBUG: Cause: null pointer dereference
2020-12-13 12:12:34.310 6691-6691/? A/DEBUG: x0 0000000000000004 x1 0000007adf35d4d0 x2 0000007fdb9c5340 x3 0000007adf397212
2020-12-13 12:12:34.310 6691-6691/? A/DEBUG: x4 0000000000000004 x5 0000000000000002 x6 0000000000000030 x7 0000007fdb9c4dc4
2020-12-13 12:12:34.310 6691-6691/? A/DEBUG: x8 0101010101010101 x9 0000000000000002 x10 0000000000000000 x11 00000000ffffffff
2020-12-13 12:12:34.310 6691-6691/? A/DEBUG: x12 0000007fdb9c4dc8 x13 0000000000000000 x14 0000007fdb9c4de0 x15 0000000000000001
2020-12-13 12:12:34.310 6691-6691/? A/DEBUG: x16 0000007adf3950c8 x17 0000007adf2a4850 x18 0000007fdb9c5358 x19 0000007fdb9c5370
2020-12-13 12:12:34.310 6691-6691/? A/DEBUG: x20 0000000000000017 x21 000000007fffffff x22 0000007a3f79c1e1 x23 0000000000000000
2020-12-13 12:12:34.310 6691-6691/? A/DEBUG: x24 0000007fdb9c5234 x25 0000007fdb9c4de0 x26 0000000000000004 x27 0000007fdb9c5358
2020-12-13 12:12:34.310 6691-6691/? A/DEBUG: x28 00000000ffffffff x29 0000007fdb9c5330
2020-12-13 12:12:34.310 6691-6691/? A/DEBUG: sp 0000007fdb9c4ba0 lr 0000007adf2f20b4 pc 0000007adf2a4860
2020-12-13 12:12:34.313 6691-6691/? A/DEBUG: backtrace:
2020-12-13 12:12:34.313 6691-6691/? A/DEBUG: #00 pc 000000000001e860 /system/lib64/libc.so (strlen+16)
2020-12-13 12:12:34.313 6691-6691/? A/DEBUG: #1 pc 000000000006c0b0 /system/lib64/libc.so (__vfprintf+6056)
2020-12-13 12:12:34.313 6691-6691/? A/DEBUG: #2 pc 000000000008d95c /system/lib64/libc.so (vsnprintf+164)
2020-12-13 12:12:34.313 6691-6691/? A/DEBUG: #3 pc 000000000004effc /system/lib64/libc.so (__vsnprintf_chk+72)
2020-12-13 12:12:34.313 6691-6691/? A/DEBUG: #4 pc 0000000000153e60 /data/app/io.agora.api.example-OOdaYpo7ql9uiz8qzrc7Og==/lib/arm64/libagora-rtc-sdk.so

In Screen share, Start broadcast from iPhone stuck on the receiver end

I am trying Screen share on my iPhone, when I click start broadcast it seems it's fine but on the receiver side, the screen gets stuck, and only a stuck image appears actually, other than that I can't see anything. When I tried screen share on an android phone it is working fine for the receiver side, I can see the screen on my iPhone. I am not getting warnings or errors in my console. please suggest

Android lib-raw-data doesn't work with app bundle

It works fine with regular APK, getting callbacks and everything but with app bundle it doesn't work and not getting any callback.
I don't see
agora-raw-data-plugin: loadAgoraRtcEnginePlugin
log.

I only see
agora-raw-data-plugin: setVideoDecodeByteBuffer uid: 67532, _javaDirectDecodeBuffer: 0xb6ba9010

How can we make it work with app bundle? @yoreland

Btw old raw-data-api-java works with app bundle, but we migrated to new latest agora version and can't use it anymore.

not able to ope the app

getting crash with below error as soon I am launching the app.
Process: io.agora.tutorials1v1acall, PID: 4765
java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/io.agora.tutorials1v1acall-7raLUzc8PZu31RWWrMcrbg==/base.apk", zip file "/data/app/io.agora.tutorials1v1acall-7raLUzc8PZu31RWWrMcrbg==/split_config.en.apk", zip file "/data/app/io.agora.tutorials1v1acall-7raLUzc8PZu31RWWrMcrbg==/split_config.xxhdpi.apk"],nativeLibraryDirectories=[/data/app/io.agora.tutorials1v1acall-7raLUzc8PZu31RWWrMcrbg==/lib/arm64, /system/lib64, /system/product/lib64]]] couldn't find "libagora-core.so"

In Screen share, Start broadcast not working in iOS 14

screen sharing not working when start broadcast from Live Broadcast Popup,
And some time giving this error message popup
image

AgoraUploader.startBroadcast(to: "CHANNEL_NAME")

Specially it's not working in iOS 14 device.
I have checked it's with iOS 13 device and it's working.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.