Code Monkey home page Code Monkey logo

voice-quickstart-android's Introduction

Twilio Voice Quickstart for Android

NOTE: This sample application uses the Programmable Voice Android 6.x APIs. If you are using prior versions of the SDK, we highly recommend planning your migration to the latest version as soon as possible.

Get started with Voice on Android

  • Quickstart - Run the quickstart app
  • Examples - Customize your voice experience with these examples

References

Voice Android SDK Versions

Quickstart

The quickstart is broken into two flavors, "standard" & "connection_service", the latter showing how to integrate with the Android Telecom subsystem but requiring Android API 26. To get started with the Quickstart application follow these steps. Steps 1-5 will enable the application to make a call. The remaining steps 7-10 will enable the application to receive incoming calls in the form of push notifications using FCM.

  1. Generate google-services.json
  2. Open this project in Android Studio
  3. Use Twilio CLI to deploy access token and TwiML application to Twilio Serverless
  4. Create a TwiML application for the access token
  5. Generate an access token for the quickstart
  6. Run the app
  7. Create a Push Credential using your FCM Server API Key
  8. Receive an incoming call
  9. Make client to client call
  10. Make client to PSTN call

1. Generate google-services.json

The Programmable Voice Android SDK uses Firebase Cloud Messaging push notifications to let your application know when it is receiving an incoming call. If you want your users to receive incoming calls, you’ll need to enable FCM in your application.

Follow the steps under Use the Firebase Assistant in the Firebase Developers Guide. Once you connect and sync to Firebase successfully, you will be able to download the google-services.json for your application.

Login to Firebase console and make a note of generated Server Key. You will need them in step 7.

Make sure the generated google-services.json is downloaded to the app directory of the quickstart project to replace the existing app/google-services.json stub json file. If you are using the Firebase plugin make sure to remove the stub google-services.json file first.

Missing valid google-services.json will result in a build failure with the following error message : "

2. Open the project in Android Studio

3. Use Twilio CLI to deploy access token and TwiML application to Twilio Serverless

You must have the following installed:

  • Node.js v10+
  • NPM v6+ (comes installed with newer Node versions)

Run npm install to install all dependencies from NPM.

Install twilio-cli with:

$ npm install -g twilio-cli

Login to the Twilio CLI. You will be prompted for your Account SID and Auth Token, both of which you can find on the dashboard of your Twilio console.

$ twilio login

Once successfully logged in, an API Key, a secret get created and stored in your keychain as the twilio-cli password in SKxxxx|secret format. Please make a note of these values to use them in the Server/.env file.

This app requires the Serverless plug-in. Install the CLI plugin with:

$ twilio plugins:install @twilio-labs/plugin-serverless

Before deploying, create a Server/.env by copying from Server/.env.example

$ cp Server/.env.example Server/.env

Update Server/.env with your Account SID, auth token, API Key and secret.

ACCOUNT_SID=ACxxxx
AUTH_TOKEN=xxxxxx
API_KEY_SID=SKxxxx
API_SECRET=xxxxxx
APP_SID=APxxxx(available in step 4)
PUSH_CREDENTIAL_SID=CRxxxx(available in step 7)

The Server folder contains a basic server component which can be used to vend access tokens or generate TwiML response for making call to a number or another client. The app is deployed to Twilio Serverless with the serverless plug-in:

$ cd Server
$ twilio serverless:deploy

The server component that's baked into this quickstart is in Node.js. If you’d like to roll your own or better understand the Twilio Voice server side implementations, please see the list of starter projects in the following supported languages below:

Follow the instructions in the project's README to get the application server up and running locally and accessible via the public Internet.

4. Create a TwiML application for the Access Token

Next, we need to create a TwiML application. A TwiML application identifies a public URL for retrieving TwiML call control instructions. When your QS app makes a call to the Twilio cloud, Twilio will make a webhook request to this URL, your application server will respond with generated TwiML, and Twilio will execute the instructions you’ve provided.

Use Twilio CLI to create a TwiML app with the make-call endpoint you have just deployed (Note: replace the value of --voice-url parameter with your make-call endpoint you just deployed to Twilio Serverless)

$ twilio api:core:applications:create \
    --friendly-name=my-twiml-app \
    --voice-method=POST \
    --voice-url="https://my-quickstart-dev.twil.io/make-call"

You should receive an Appliciation SID that looks like this

APxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

5. Generate an access token for the quickstart

Install the token plug-in

$ twilio plugins:install @twilio-labs/plugin-token

Use the TwiML App SID you just created to generate an access token

$ twilio token:voice --identity=alice --voice-app-sid=APxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Copy the access token string. Your Android app will use this token to connect to Twilio.

6. Run the app

Now let’s go back to the app, update the placeholder of accessToken with access token string you just copied in VoiceActivity.java.

 private String accessToken = "PASTE_YOUR_ACCESS_TOKEN_HERE";

Build and run the quickstart app on an Android device.

Press the call button to open the call dialog.

Leave the dialog text field empty and press the call button to start a call. You will hear the congratulatory message. Support for dialing another client or number is described in steps 9 and 10.

7. Create a Push Credential using your FCM Server Key

You will need to store the FCM Server key(The Server key of your project from the Firebase console, found under Settings/Cloud messaging) with Twilio so that we can send push notifications to your app on your behalf. Once you store the Server key with Twilio, it will get assigned a Push Credential SID so that you can later specify which key we should use to send push notifications.

Please follow this document to create a FCMv1 token. Once that token is created, go to your Twilio Console and from the "Account" drop-down on the upper right, select "Credentials".

From the within the "Credentials" page, select the tab labeled "Push Credentials" and then click the large "+" button.

After providing a friendly name, from the drop-down menu labeled "Type" select "FCM Push Credentials" and paste the key you generated in Firebase in the third box labeled "FCM Secret". Under the list of created "Push Credentials" you should now find your new push credential SID.

The newly created Push Credential SID should look like this

CRxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Now let's generate another access token and add the Push Credential to the Voice Grant.

$ twilio token:voice \
    --identity=alice \
    --voice-app-sid=APxxxx \
    --push-credential-sid=CRxxxxs

8. Receiving an Incoming Notification

You are now ready to receive incoming calls. Update your app with the access token generated from step 7 and rebuild your app. The Voice.register() method will register your mobile application with the FCM device token as well as the access token. Once registered, hit your application server's /place-call endpoint: https://my-quickstart-dev.twil.io/place-call?to=alice. This will trigger a Twilio REST API request that will make an inbound call to your mobile app.

Your application will be brought to the foreground and you will see an alert dialog. The app will be brought to foreground even when your screen is locked.

"

Once your app accepts the call, you should hear a congratulatory message.

9. Make client to client call

To make client to client calls, you need the application running on two devices. To run the application on an additional device, make sure you use a different identity in your access token when registering the new device.

Press the call button to open the call dialog.

Enter the client identity of the newly registered device to initiate a client to client call from the first device.

10. Make client to PSTN call

A verified phone number is one that you can use as your Caller ID when making outbound calls with Twilio. This number has not been ported into Twilio and you do not pay Twilio for this phone number.

To make client to number calls, first get a valid Twilio number to your account via https://www.twilio.com/console/phone-numbers/verified. Update your server code and replace the callerNumber with the verified number. Restart the server so that it uses the new value.

Press the call button to open the call dialog.

Enter a PSTN number and press the call button to place a call.

Examples

In addition to the quickstart we've also added an example that shows how to create and customize media experience in your app:

  • Custom Audio Device - Demonstrates how to use Twilio's Programmable Voice SDK with audio playback and recording functionality provided by a custom AudioDevice.

More Documentation

You can find more documentation on getting started as well as our latest Javadoc below:

Twilio Helper Libraries

To learn more about how to use TwiML and the Programmable Voice Calls API, check out our TwiML quickstarts:

Issues and Support

Please file any issues you find here on Github. For general inquiries related to the Voice SDK you can file a support ticket. Please ensure that you are not sharing any Personally Identifiable Information(PII) or sensitive account information (API keys, credentials, etc.) when reporting an issue.

License

MIT

voice-quickstart-android's People

Contributors

afalls-twilio avatar aidan-greenman avatar aymenn avatar bobiechen-twilio avatar dependabot[bot] avatar dprothero avatar dvillavicenciotw avatar fabriziomoscon avatar girtis avatar idelgado avatar jefflinwood avatar kbagchigwc avatar ocarevs avatar ramapal avatar rocboronat avatar sarahcstringer avatar uriel-frankel 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  avatar

voice-quickstart-android's Issues

BETA6: I cannot make a call: Generic Error

on Emulator Android 7.0.0 Samsung 8

I am using the react-native fork:
hoxfon/react-native-twilio-programmable-voice#21
I managed to integrate beta5 and it works perfectly with FCM. But when I upgrade the same code to beta6 I received these errors:

05-11 10:53:08.497 27017-27436/com.hoxfon.HoxFon.DEV.debug E/CallControlManager: received transport error; status: 0
05-11 10:53:10.513 27017-27172/com.hoxfon.HoxFon.DEV.debug E/TwilioVoice: CallListener onDisconnected error: 31000, Generic error

Attache there is a screen shot of my debug session in Android Studio.
screen shot 2017-05-11 at 15 50 03

The execution reaches class CllControlManager line 450

What exactly has changes from beta5 to beta6?

Not able to registered twilio for incoming calls

Hi,

I am using Voice quickstart SDK for Android, version beta14. It runs fine but sometimes does not listen incoming calls and print the error when I try to register it for incoming calls.

The error given by Twilio -
07-14 16:03:49.631 19177-20105/com.app.dealer_app W/MessageQueue: Handler (android.os.Handler) {17b6fbd} sending message to a Handler on a dead thread
java.lang.IllegalStateException: Handler (android.os.Handler) {17b6fbd} sending message to a Handler on a dead thread
at android.os.MessageQueue.enqueueMessage(MessageQueue.java:325)
at android.os.Handler.enqueueMessage(Handler.java:631)
at android.os.Handler.sendMessageAtTime(Handler.java:600)
at android.os.Handler.sendMessageDelayed(Handler.java:570)
at android.os.Handler.post(Handler.java:326)
at com.twilio.voice.Registrar.onSuccess(Registrar.java:78)

Please look into this and provide me the solution.

speaker mode turns on automatically

I am facing a strange problem. While calling, when I tap any button on mobile (either its mute button, call end button etc.), the speaker of my phone gets on. And now when I try to switch off speaker, it gets close for just a second but again speaker turns on automatically.

This problem is only occuring in lenovo z2 plus(zuk 2). On other devices, it is working fine. Please tell me if this is problem of SDK or I am missing something in implementing SDK.

Logcat is attached

Logcat.txt

Can not get the call ringing state?

Hi team,

When make an outgoing call, there is only two call state event callback onConnected() and onDisconnected().
I noticed that after onConnected() be called, the phone began to ringing. and when conversation begin, there is no any other event callback. So we can not correctly show the conversation time (when should we start to show the call time to use?), How to detect the ringing state and IN CALL state when use voice SDK? then we can show the correct UI to our users.

thanks

soundPool NPE

For example you create an instance soundPoolManager = SoundPoolManager.getInstance(this); in CallActivity
Then call relese method in onDestroy

  @Override
    public void onDestroy() {
        soundPoolManager.release();
        super.onDestroy();
    }

If you go to CallActivity second time soundPoolManager = SoundPoolManager.getInstance(this); will return existing static instance with null soundPool object. SoundPoolManager constructor will not be called

Call.Listener delegate is never being called.

Just converted our app from twilio.client to twilio.voice. I connect just fine on initiating a call (Call instance is returned), but my Call.Listener delegates are never called. This is an outgoing call. Here's the relevant log dump. This is with beta6:

05-05 09:31:36.160 28261-28261/org.crowdmarket.crowdmarket I/InternetClasses.Phone: Twilio Voice Client Version: 2.0.0-beta6
05-05 09:31:36.331 28261-28261/org.crowdmarket.crowdmarket D/InternetClasses.Phone: accessToken: eyJjdHkiOiAidHdpbGlvLWZwYTt2PTEiLCAidHlwIjogIkpXVCIsICJhbGciOiAiSFMyNTYifQ.eyJleHAiOiAxNDk0MDAxODk3LCAianRpIjogIlNLODI3YWI0MDAzZmFhNDFiMGZjZWY5NWRmN2FkZTUxMTYtMTQ5Mzk5ODI5NyIsICJncmFudHMiOiB7ImlkZW50aXR5IjogIjU5MGM5YWQ4ZTFiYTRiYTk0ZTgyMzVjYyIsICJ2b2ljZSI6IHsicHVzaF9jcmVkZW50aWFsX3NpZCI6ICJDUmU5ODJhYjg5Mjk5YTM5MzM2ZjliNTdlNjBkOTJhMTU2IiwgIm91dGdvaW5nIjogeyJhcHBsaWNhdGlvbl9zaWQiOiAiQVBkNWI4N2RhYmNkYjk1NTkwMzFhMmZjYjhkZjJiNjU5NCJ9fX0sICJpc3MiOiAiU0s4MjdhYjQwMDNmYWE0MWIwZmNlZjk1ZGY3YWRlNTExNiIsICJzdWIiOiAiQUM4MDkyOGRlMDFhZjM1MzczNmNjN2I2OTI1MjYzNTVhNiJ9.ud2E3GYEDc5c1nk24e85crdxKc2LrhjR7xih1BZgwzk
05-05 09:31:36.372 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.372 os_core_unix.c !pjlib 2.5.1 for POSIX initialized
05-05 09:31:36.375 28261-28261/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.375 sip_endpoint.c .Creating endpoint instance...
05-05 09:31:36.375 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.375 pjlib .select() I/O Queue created (0x7f2021836090)
05-05 09:31:36.375 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.375 sip_endpoint.c .Module "mod-msg-print" registered
05-05 09:31:36.375 28261-28261/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.375 sip_transport. .Transport manager created.
05-05 09:31:36.375 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.375 pjsua_core.c .PJSUA state changed: NULL --> CREATED
05-05 09:31:36.376 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.376 sip_endpoint.c .Module "mod-pjsua-log" registered
05-05 09:31:36.376 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.376 pjsua_core.c .Nameserver 10.0.2.3 added
05-05 09:31:36.376 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.376 sip_endpoint.c .Module "mod-tsx-layer" registered
05-05 09:31:36.376 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.376 sip_endpoint.c .Module "mod-stateful-util" registered
05-05 09:31:36.377 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.376 sip_endpoint.c .Module "mod-ua" registered
05-05 09:31:36.377 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.377 sip_endpoint.c .Module "mod-100rel" registered
05-05 09:31:36.377 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.377 sip_endpoint.c .Module "mod-pjsua" registered
05-05 09:31:36.377 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.377 sip_endpoint.c .Module "mod-invite" registered
05-05 09:31:36.377 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.377 pjsua_core.c .Trying STUN server global.stun.twilio.com (1 of 1)..
05-05 09:31:36.377 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.377 resolver.c .Transmitting 51 bytes to NS 0 (10.0.2.3:53): DNS SRV query for _stun._udp.global.stun.twilio.com: Success
05-05 09:31:36.378 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.377 opensl_dev.c ..OpenSL sound library initialized
05-05 09:31:36.378 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.378 android_jni_de ..Android JNI sound library initialized
05-05 09:31:36.378 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.378 pjlib ..select() I/O Queue created (0x7f203ccfac28)
05-05 09:31:36.382 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.382 sip_endpoint.c .Module "mod-evsub" registered
05-05 09:31:36.382 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.382 sip_endpoint.c .Module "mod-presence" registered
05-05 09:31:36.382 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.382 sip_endpoint.c .Module "mod-mwi" registered
05-05 09:31:36.382 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.382 sip_endpoint.c .Module "mod-refer" registered
05-05 09:31:36.382 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.382 sip_endpoint.c .Module "mod-pjsua-pres" registered
05-05 09:31:36.382 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.382 sip_endpoint.c .Module "mod-pjsua-im" registered
05-05 09:31:36.382 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.382 sip_endpoint.c .Module "mod-pjsua-options" registered
05-05 09:31:36.382 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.382 pjsua_core.c .1 SIP worker threads created
05-05 09:31:36.382 28261-28261/org.crowdmarket.crowdmarket W/PJSIP: 09:31:36.382 pjsua_core.c .pjsua version 2.5.1 for Linux-3.10/x86_64 initialized
05-05 09:31:36.382 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.382 pjsua_core.c .PJSUA state changed: CREATED --> INIT
05-05 09:31:36.386 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.386 tlstp:43161 SIP TLS listener is ready for incoming connections at 10.0.2.15:43161
05-05 09:31:36.387 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.387 pjsua_core.c PJSUA state changed: INIT --> STARTING
05-05 09:31:36.387 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.387 sip_endpoint.c .Module "mod-unsolicited-mwi" registered
05-05 09:31:36.387 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.387 pjsua_core.c .PJSUA state changed: STARTING --> RUNNING
05-05 09:31:36.390 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.390 pjsua_acc.c Adding account: id=sip:[email protected]
05-05 09:31:36.390 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.390 pjsua_acc.c .Account sip:[email protected] added with id 0
05-05 09:31:36.393 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.393 sip_endpoint.c Module "mod-pjsua-log" unregistered
05-05 09:31:36.393 28261-28261/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.393 sip_endpoint.c Module "mod-pjsua-log" registered
05-05 09:31:36.405 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.405 resolver.c !Received 51 bytes DNS response from 10.0.2.3:53
05-05 09:31:36.405 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.405 resolver.c Nameserver 10.0.2.3:53 state changed Probing --> Active
05-05 09:31:36.405 28261-28857/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.405 _stun._udp.glo DNS SRV resolution failed for _stun._udp.global.stun.twilio.com: DNS "Format error" (PJLIB_UTIL_EDNS_FORMERR)
05-05 09:31:36.405 28261-28857/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.405 _stun._udp.glo DNS SRV resolution failed for _stun._udp.global.stun.twilio.com, trying resolving A record for global.stun.twilio.com
05-05 09:31:36.405 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.405 _stun._udp.glo Starting async DNS A query_job for global.stun.twilio.com
05-05 09:31:36.405 28261-28857/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.405 resolver.c Transmitting 40 bytes to NS 0 (10.0.2.3:53): DNS A query for global.stun.twilio.com: Success
05-05 09:31:36.405 28261-28859/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.405 pjsua_call.c !Making call with acc #0 to sip:[email protected];transport=TLS
05-05 09:31:36.405 28261-28859/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.405 pjsua_aud.c .Set sound device: capture=-1, playback=-2
05-05 09:31:36.405 28261-28859/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.405 pjsua_aud.c ..Opening sound device (speaker + mic) PCM@16000/1/20ms
05-05 09:31:36.406 28261-28859/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.406 opensl_dev.c ...Creating OpenSL stream
05-05 09:31:36.408 28261-28261/org.crowdmarket.crowdmarket D/CallControlManager: got connectivity broadcast: haveConn=true, reason=null, isFailover=false
05-05 09:31:36.408 28261-28261/org.crowdmarket.crowdmarket D/CallControlManager: NET CHANGE EVENT: connected=true, wasConnected=true, netTypeChanged=true
05-05 09:31:36.408 28261-28261/org.crowdmarket.crowdmarket D/CallControlManager: switched networks to type 0
05-05 09:31:36.420 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.420 resolver.c !Received 115 bytes DNS response from 10.0.2.3:53
05-05 09:31:36.420 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.420 resolver.c Nameserver 10.0.2.3:53 state changed Active --> Active
05-05 09:31:36.420 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.420 _stun._udp.glo DNS A for global.stun.twilio.com: 54.244.51.42
05-05 09:31:36.420 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.420 _stun._udp.glo Server resolution complete, 1 server entry(s) found
05-05 09:31:36.420 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.420 stunresolve .TX 36 bytes STUN message to 54.244.51.42:3478:
--- begin STUN message ---
STUN Binding request
Hdr: length=16, magic=2112a442, tsx_id=9f477a9713574982000113ab
Attributes:
SOFTWARE: length=12, value="pjnath-2.5.1"
--- end of STUN message ---
05-05 09:31:36.420 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.420 utsx0x7f20232d .STUN client transaction created
05-05 09:31:36.420 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.420 utsx0x7f20232d .STUN sending message (transmit count=1)
05-05 09:31:36.465 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.465 stun_msg.c .Unrecognized attribute type 0x802b
05-05 09:31:36.465 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.465 stunresolve .RX 92 bytes STUN message from 54.244.51.42:3478:
--- begin STUN message ---
STUN Binding success response
Hdr: length=72, magic=2112a442, tsx_id=9f477a9713574982000113ab
Attributes:
XOR-MAPPED-ADDRESS: length=8, IPv4 addr=73.153.102.24:63290
MAPPED-ADDRESS: length=8, IPv4 addr=73.153.102.24:63290
Attr 0x802b: length=8
SOFTWARE: length=30, value="Citrix-3.2.3.96 'Marshal West'"
--- end of STUN message ---
05-05 09:31:36.465 28261-28857/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.465 stunresolve .STUN mapped address found/changed: 73.153.102.24:63290
05-05 09:31:36.466 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.466 stunresolve .STUN sock 0x7f20232d4828 request, ref_cnt=8
05-05 09:31:36.466 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.466 stunresolve .STUN session 0x7f20230f1828 destroy request, ref_cnt=8
05-05 09:31:36.467 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.466 utsx0x7f20232d .STUN client transaction 0x7f20232d6e30 stopped, ref_cnt=9
05-05 09:31:36.467 28261-28857/org.crowdmarket.crowdmarket I/PJSIP: 09:31:36.467 pjsua_core.c .STUN resolution success, using global.stun.twilio.com, address is 54.244.51.42:3478
05-05 09:31:36.467 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.467 natck0x7f20218 .Local address is 10.0.2.15:39791
05-05 09:31:36.467 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.467 natck0x7f20218 .Server set to 54.244.51.42:3478
05-05 09:31:36.467 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.467 natck0x7f20218 .Performing Test I: Binding request to 54.244.51.42:3478
05-05 09:31:36.467 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.467 natck0x7f20218 ..TX 28 bytes STUN message to 54.244.51.42:3478:
--- begin STUN message ---
STUN Binding request
Hdr: length=8, magic=096700d3, tsx_id=6895428676261ebc00000000
Attributes:
CHANGE-REQUEST: length=4, value=0 (0x0)
--- end of STUN message ---
05-05 09:31:36.467 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.467 utsx0x7f20232d ..STUN client transaction created
05-05 09:31:36.467 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.467 utsx0x7f20232d ..STUN sending message (transmit count=1)
05-05 09:31:36.467 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.467 stun_session.c .tdata 0x7f20232d6ca8 destroy request, force=0, tsx=0x7f20232d6e30
05-05 09:31:36.467 28261-28857/org.crowdmarket.crowdmarket D/PJSIP: 09:31:36.467 utsx0x7f20232d .STUN transaction 0x7f20232d6e30 schedule destroy

A design problem with SoundPoolManager

I am wondering if you plan on integrating SoundPoolManager into the final API. If not then disregard this note. Otherwise it's a bad idea to integrate hard resource ID's into the class itself, unless you provide an public method to override them.

Beta12 closes websocket

After I successfully register ala

Voice.register(mContext, accessToken, fcmToken, mRegistered);

I put a breakpoint on my websocket close event handler & wait for about 1.5 mins & my websocket gets closed. Only on android, the same code runs fine on chrome. I have no code in my app that explicitly closes my websocket. The only way I can close it is to exit the app.

(I'm using websocket in a webview for additional business logic)

Getting call loop when disconnecting the call or receiver not answering the call.

With this new voice SDK, I have implemented the complete call flow for outbound and inbound call. I have multiple twilio numbers.
When calling a twilio number from another one, and after some rings if I am disconnecting the call from my side or if no one responds from the other side, again I am getting an incoming call which going into a loop. Once its coming to caller number and after one or two rings it's going to the receiver's number. I have configured one outbound API call which generates an call back for the caller, if receiver doesn't receives the call. Basically this outbound API call is a voice message for the caller configured by receiver for his number if unavailable to answer the call.

Could you please tell me where I am going wrong and how to solve this issue ? Thanks in advance.

Registration Error: 20101, Invalid Access Token

I'm getting this error "20101, Invalid Access Token" at the time of registering the voice client, using " Voice.register()" function.
Now as you said in Issue #30 that we've to register before Call.
Every time this error (20101) is coming for me, now after this error I tried to call and it'll connect.
I can't understand how it's going to connect but you've to take a look into this, I've forked this project and in the addition, I just Implement the code of getting token, after getting token I call this function: registerForCallInvites() , and it gives me this error(20101). I still am able to call(outgoing), but can't receive the incoming calls.
can you help me to sort it out?
thanks.

Register GCM token with Twilio getting error code 31403

When I am registering with twilio along with parameter access token and GCM token.
VoiceClient.register(getApplicationContext(), accessToken, gcmToken, registrationListener);

getting below error, So kindly suggest where is the exact problem.
Error: 31403, code:31403, message:Unauthorized answer from service

Previously I was using voice call, it was working perfectly. Now updating programmable voice sdk with access token for authentication.

Outgoing call CallException message is bound with the error code

Is there a public method of CallException which returns only the error message without the code?
Right now getMessage() returns "code:31002, message:Connection declined"

I think VoiceException should have a public method to get the pure errorMessage without the errorCode.
I would like the message to be a string so that if needed it ok to show it to users of the app.

public abstract class VoiceException extends Exception {
    private int errorCode;
    private String errorMessage;

    public VoiceException(int errorCode, String errorMessage) {
        this.errorCode = errorCode;
        this.errorMessage = errorMessage;
    }

    public String getMessage() {
        return String.format(Locale.getDefault(), "code:%d, message:%s", new Object[]{Integer.valueOf(this.errorCode), this.errorMessage});
    }

    public int getErrorCode() {
        return this.errorCode;
    }
}

31201:message:Authorization error

@idelgado
Some time when user A(MO) tried to make a call to user B(MT) authorization error coming.

"Outgoing call onDisconnected code:31201, message:Authorization error"

Regards,
Ajit

bad call quality in android

In android voice call quality is not good as in ios. Both devices are tested in a very good network state. Is there any voice quality setup in sdk? So that voice quality can be adjusted to for different network states.

Error reporting when credentials are "empty"

GCM was working fine this AM. But after a few calls GCM stopped sending me call invite messages. I have no idea why. I thought I might be able to find out why by just paying attention to the message generated by your registration listener, but it said "registration successful." Apparently that wasn't the case. When I visited the Twilio dashboard I found that there had been an error with "Empty Credentials" which should probably read something more like "Credential Error". Anyway It said that the error was about 2 hours old when it was really only minutes. Then looking at the details of the error, the reported time was expressed in UTC. This is inconsistent with the times reported in the call logs. I would rather not convert from UTC to DMT. So, anyway, after a wait of about 20 mins I tried to call into my Android app once again & I received my Call Invite just fine with the same credentials.

the issues are:

  1. GCM shouldn't drop out with good credentials.
  2. In the dashboard, report error times by user's time zone.
  3. If there is a problem with a credential don't give an affirmative response during initial token registration. Or ...
  4. Provide a real time error reporting event as a web-hook or an in-app event or both.

Because you can't predict what Google is going to do or how the www will behave, logging the error is your first line of defense but in this case my server is processing web-hook calls just fine and so is my client. And I do need to respond appropriately to whatever error might happen.

btw, as I am writing this I tried the same test again & this time I did not receive the Call Invite.

How to set the caller and callee number when make outgoing call?

I do not find the way to set the caller and callee number in the sample code.

activeCall = Voice.call(VoiceActivity.this, TWILIO_ACCESS_TOKEN, twiMLParams, callListener);

in the docments, no description for parameter twiMLParams. what kind of params I can set in the twiMLParams? just set " From : xxxx" , and " To :yyy" for caller and callee number?

programatic creation of fcm credential fails

$credential = $client->ipMessaging->credentials->create(
"fcm",
[
"friendlyName" => "madamada",
"secret" => "valid fcm server key",
]
);

This fails with an exception stating that "Secret" is required. But works with the api explorer. I've tried "Secret" and with a valid fcm key (server key from google's cloud tool).

BTW, this used to work just fine with gcm. Also ... this seems weird that you would put the fcm key in the secret rather than the ApiKey.

Crash on Call initialize

Facing the issue with Nexus5 (armabi-v7) and latest sdk ( com.twilio:video-android:1.0.0-beta16 ).
It is working fine if i run application for particular architecture.But crash when i release app in play store.
added Video.setLogLevel(LogLevel.DEBUG);

`04-24 10:43:26.385 32736-32736/? I/org.webrtc.Logging: MediaCodecVideoDecoder: Trying to find HW decoder for mime video/x-vnd.on2.vp8
04-24 10:43:26.385 32736-32736/? I/org.webrtc.Logging: MediaCodecVideoDecoder: Found candidate decoder OMX.qcom.video.decoder.vp8
04-24 10:43:26.386 32736-32736/? I/org.webrtc.Logging: MediaCodecVideoDecoder: Found target decoder OMX.qcom.video.decoder.vp8. Color: 0x13
04-24 10:43:26.387 32736-32736/? I/org.webrtc.Logging: MediaCodecVideoDecoder: Trying to find HW decoder for mime video/x-vnd.on2.vp9
04-24 10:43:26.387 32736-32736/? I/org.webrtc.Logging: MediaCodecVideoDecoder: Found candidate decoder OMX.google.vp9.decoder
04-24 10:43:26.387 32736-32736/? I/org.webrtc.Logging: MediaCodecVideoDecoder: No HW decoder found for mime video/x-vnd.on2.vp9
04-24 10:43:26.387 32736-32736/? I/org.webrtc.Logging: MediaCodecVideoDecoder: Trying to find HW decoder for mime video/avc
04-24 10:43:26.387 32736-32736/? I/org.webrtc.Logging: MediaCodecVideoDecoder: Found candidate decoder OMX.qcom.video.decoder.avc
04-24 10:43:26.388 32736-32736/? I/org.webrtc.Logging: MediaCodecVideoDecoder: Found target decoder OMX.qcom.video.decoder.avc. Color: 0x13
04-24 10:43:26.390 32736-3888/? D/JVM: AttachCurrentThreadIfNeeded::ctor@[tid=3888]
04-24 10:43:26.390 32736-3888/? D/JVM: Attaching thread to JVM
04-24 10:43:26.391 32736-3888/? D/JVM: JVM::environment@[tid=3888]
04-24 10:43:26.391 32736-3888/? D/JVM: JNIEnvironment::ctor@[tid=3888]
04-24 10:43:26.391 32736-3888/? D/AudioManager: ctor@[tid=3888]
04-24 10:43:26.391 32736-3888/? D/JVM: JNIEnvironment::RegisterNatives(org/webrtc/voiceengine/WebRtcAudioManager)
04-24 10:43:26.391 32736-3888/? D/JVM: NativeRegistration::ctor@[tid=3888]
04-24 10:43:26.391 32736-3888/? D/JVM: NativeRegistration::NewObject@[tid=3888]
04-24 10:43:26.391 32736-3888/? W/System.err: java.lang.NoSuchMethodError: no non-static method "Lorg/webrtc/voiceengine/WebRtcAudioManager;.(Landroid/content/Context;J)V"
04-24 10:43:26.391 32736-3888/? E/rtc: #
# Fatal error in ../../webrtc/modules/utility/source/helpers_android.cc, line 51
# last system error: 0
# Check failed: !jni->ExceptionCheck()
# Error during GetMethodID: , (Landroid/content/Context;J)V
#

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

04-24 10:43:26.511 3890-3888/? A/google-breakpad: -----BEGIN BREAKPAD MICRODUMP-----
04-24 10:43:26.511 3890-3888/? A/google-breakpad: V WebView:55.0.2883.91
04-24 10:43:26.511 3890-3888/? A/google-breakpad: O A arm 04 armv7l google/hammerhead/hammerhead:6.0.1/M4B30X/3237893:user/release-keys
04-24 10:43:26.511 3890-3888/? A/google-breakpad: P webview
04-24 10:43:26.511 3890-3888/? A/google-breakpad: G OpenGL ES 3.0 [email protected] AU@ (GIT@I96aee987eb)|Qualcomm|Adreno (TM) 330
04-24 10:43:26.517 3890-3888/? A/google-breakpad: H 12C00000 FFFF1000 00B7 41131000 9C326000 0C:2E 0D:16 0E:15 0F:23 10:11 11:01 14:03 15:03 16:04 17:07 18:0D 19:05 1A:03 1C:02 1E:01
04-24 10:43:26.517 3890-3888/? A/google-breakpad: S 0 889FB270 889FB000 00001000
04-24 10:43:26.523 3890-3888/? A/google-breakpad: S 889FB000 1CB19F885400000030B09F8890DD8270000000001CB19F8800174E9CA998C5B41CB19F880000000030B09F8840B09F8800000000E0721213B8B09F88DC000000B4B09F88AB00D05B00174E9C8CB09F88000000008090069478B09F8858B19F88A0B19F8800174E9C80900694010020004300000005002000020000007CB19F888090069400174E9CC01ED4B68C174E9CB0B09F8890DD8270C4B09F881CB19F8834B19F88273994B41CB19F880A58E170000000000A58E170000000000000000000000000000000000000000000000000000000000000000000000000AB00D05B94D5D3B61CB19F8800000000E4B19F8810B19F88DCB19F880100000090DD827000000000CF3CB8B41CB19F880A58E17008E156700A58E17058DE827000000000000000000A58E170010000000400000034B19F88E072121394D5D3B604000000B03AC7B4F83AC7B4F039C7B4183AC7B4403AC7B4743AC7B410FED9B4BC1AAC700001000048076070ECB19F88E4B19F8804000000000000006C81C8B400174E9C
04-24 10:43:26.523 3890-3888/? A/google-breakpad: S 889FB180 4300000043000000E4B19F8890DD8270D0A1D9B47CDECBB4DCB19F8800174E9C04000000D85EDDB404000000D85EDDB468017E8FA92FD1B62099D4B668017E8F0E00000068017E8F8048F19200007E8F8848F192E000000094D5D3B60E0000000053DDB43F42D2B600000000000000001B00000031EDD1B60E00000000C0D7B4E000000000174E9C8090069400C0D7B400174E9C381EC7B4000043000100000088B29F8800174E9C7138ADB4A06ACBB48848F19200F81C9100007E8FC8B29F880CA3D4B68048F192DFFFFFFF0000000030B99F8830B99F8800000000DD78D0B678B99F8880B99F8830B99F88517BD0B678B99F880600000000000000FCB29F88FCB29F881343CEB694B29F88C514CEB680900694DFFFFFFF0A091000757ED0B6CC04D4B600000000FCB29F88C8B29F882404D4B6B0F4CDB645000000A717D288FCB29F88C0514489E1000000D700000000F81C91AB00D05BFCB29F88F8B29F880A000000F7DB3089610831894336DC88000000007C494489C0514489DC364189
04-24 10:43:26.523 3890-3888/? A/google-breakpad: S 889FB300 88364189C051448900000000000000000000000000C51794D7C51794FFC5179401010000FF00000000C51794D7C5179410000000F0364189021000000600000000000000000000000000000000B39F88C0514489000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000AB00D05BC01ED4B68090069420543C92B4B39F887CB49F8861083189F7DB3089C54EDC8880FC3B9268B49F88481BD993210000000B00000080FC3B920A00000038B49F88E8B39F880A0000000A00000039B49F888848F19280FC3B9200007E8F8CB49F880CA3D4B68048F19294D5D3B68848F19280FC3B925B02D2B68CB49F882DB49F880A00000090BA6E0138B49F88B13DDC880A000000000000000100000073FB308980FC3B9200000000000000000000000000000000AB00D05B0065059420543C927CB49F88C01ED4B6020910000065059490BA6E01000000003F35D3886108318902091000775ADC8800650594FFFFFFFF0053DDB400000000
04-24 10:43:26.524 3890-3888/? A/google-breakpad: S 889FB480 020931891D0931890532D388210000000B00000080FC3B9208000000980400000053DDB4E747D2B60100000000000000000000000CA3D4B6010000008048F19294D5D3B60CA3D4B68848F192A94ED2B60000000000000040EBF145D61900000040420F0040420F0000000000EBF145D6DB15000000000000010000004400000080074591C01ED4B628B59F880000000001000000AB00D05B0000000080074591C01ED4B65030438900000000BD29D388AB00D05B6784D2888848F1928001000094D5D3B6110000000053DDB43F42D2B600000000000000002B00000031EDD1B611000000C01ED4B680010000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060010000C01ED4B6E0B69F8800B69F88AB00D05B0100000080074591C01ED4B6E0B69F880000000000000000
04-24 10:43:26.524 3890-3888/? A/google-breakpad: S 889FB600 01000000952BD388000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000709AD4B62085D0929859DDB40000D0920053DDB42085D0928848F1922085D09200000000B848F192A33BD1B6080000004C00D0924C00D092B848F1928048F192CB3BD1B64C00D0920000D0923952D2B65B02D2B6A475D4B6000000000000000000000000E298B09000000000000000000000000000000000AB00D05B209C259DE4B69F8800000000E0B69F88000000004129D488209C259D10B79F88000000002929D4885CA7AF888098B09010B79F8808B79F880000000067CDD388E098B0907175D2880097B090BB7A41D680CC3689992F31895CA7AF880000000000000000E3AD298900000000000000008BA5AF88C0B89F88010000008098B090F498B090C0B89F8801000000FFFFFFFFFFFFFFFF9151D28800000000000000000000000000000000FFFFFFFFFFFFFFFF0000000000000000FFFFFFFFFFFFFFFF
04-24 10:43:26.524 3890-3888/? A/google-breakpad: S 889FB780 FFFFFFFF90BA6E010000000001000000C01ED4B6B8B79F8816FD3089B9FC308990AC368977FB308907FD30890CFD308900000000E098B09000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000AB00D05B000000003954D2888098B0900000000000000000FFFFFFFFC0B89F8800000000FFFFFFFFC776D288F4DA3089F4DA30890000000000000000000000000000000000000000000000000000000000000000000000006073C28F70B99F8830B99F8878000000848BF9B6
04-24 10:43:26.525 3890-3888/? A/google-breakpad: S 889FB900 3099B09000D08F884D7DD288857DD28830B99F886174D0B64174D0B638B99F884174D0B6451BCEB678B99F880000000030A9AF8830C98F88300F0000E07F00000000000000D08F8830E90F0000100000000000000000000000000000000000004D7DD2886073C28F0000000000707C950100000000F00F0078B99F8830B99F88160000000000000000000000AB00D05B0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000008048F192000000000000000000000000000000000100000000174E9C0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
04-24 10:43:26.525 3890-3888/? A/google-breakpad: S 889FBA80 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000009850CB920000000000000000010000008098B09000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
04-24 10:43:26.525 3890-3888/? A/google-breakpad: S 889FBC00 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
04-24 10:43:26.526 3890-3888/? A/google-breakpad: S 889FBD80 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
04-24 10:43:26.526 3890-3888/? A/google-breakpad: S 889FBF00 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
04-24 10:43:26.526 3890-3888/? A/google-breakpad: C 0600004000000000300F00000600000078B99F8880B99F8830B99F88000000000C0100000A00000080900694FCB29F880A0910000600000070B29F88617BD0B6509FD0B610000F400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
04-24 10:43:26.526 3890-3888/? A/google-breakpad: M B6F9B000 00000000 00005000 193A0C499FA710C22C906681C0F89A670 app_process32
04-24 10:43:26.526 3890-3888/? A/google-breakpad: M 72950000 01ED6000 0172D000 000000000000000000000000000000000 system@[email protected]
04-24 10:43:26.526 3890-3888/? A/google-breakpad: M 88AFB000 00000000 00905000 8E2B01ED891DC0BEB6AEFF8DF5E4268D0 libjingle_peerconnection_so.so
04-24 10:43:26.527 3890-3888/? A/google-breakpad: M 9743F000 00147000 000FA000 000000000000000000000000000000000 base.odex
04-24 10:43:26.527 3890-3888/? A/google-breakpad: M 97DCD000 00000000 00004000 3388B46F29DD79CB14ED38FD27C912980 libOpenSLES.so
04-24 10:43:26.527 3890-3888/? A/google-breakpad: M A01E7000 00000000 00004000 24246BB670B5D5FA004F4D328B8E4D880 libwebviewchromium_plat_support.so
04-24 10:43:26.527 3890-3888/? A/google-breakpad: M A133B000 0114E000 00F98000 000000000000000000000000000000000 base.odex
04-24 10:43:26.527 3890-3888/? A/google-breakpad: M A32D4000 00000000 02378000 BF012B766DEF00036DEA227FB4B0FAE60 libwebviewchromium.so
04-24 10:43:26.527 3890-3888/? A/google-breakpad: M A96D4000 00000000 00004000 1186930A8F49E5F02B81F36B4772C0110 libwebviewchromium_loader.so
04-24 10:43:26.527 3890-3888/? A/google-breakpad: M A9779000 00000000 00003000 E86115E8C6E927001B3B1DCAF56028CC0 libjnigraphics.so
04-24 10:43:26.527 3890-3888/? A/google-breakpad: M A977E000 00000000 00008000 36B70CE8129A921488159BD97847C5860 libcompiler_rt.so
04-24 10:43:26.527 3890-3888/? A/google-breakpad: M A9787000 00000000 0000F000 28E59C774D1DC0B81544C4B61E2AF14E0 libandroid.so
04-24 10:43:26.527 3890-3888/? A/google-breakpad: M A9772000 00000000 00447000 C1FD4B15B4837CE09F7C23F1A5CF1CEB0 libsc-a3xx.so
04-24 10:43:26.527 3890-3888/? A/google-breakpad: M A9BE7000 00000000 00114000 8BAB07BC3ED5F869FA8A2C29411CA29F0 libGLESv2_adreno.so
04-24 10:43:26.527 3890-3888/? A/google-breakpad: M A9D31000 00000000 00033000 B7B9D6F14CB892A5D59DE9C6965DFEA80 libGLESv1_CM_adreno.so
04-24 10:43:26.527 3890-3888/? A/google-breakpad: M A9D67000 00000000 00005000 B77504A5EB0AB2A7E06A3BEE532F11710 libadreno_utils.so
04-24 10:43:26.527 3890-3888/? A/google-breakpad: M A9D70000 00000000 0003B000 59375F20F46277C79376B1EA437AB02E0 libgsl.so
04-24 10:43:26.527 3890-3888/? A/google-breakpad: M A9DAD000 00000000 0002B000 D7A6ADD4D179AD971D22C2B4F0D9E41B0 libEGL_adreno.so
04-24 10:43:26.527 3890-3888/? A/google-breakpad: M AB18E000 00000000 00018000 B04267D6932192186853403B34A636500 libkeymaster1.so
04-24 10:43:26.527 3890-3888/? A/google-breakpad: M AB1A9000 00000000 00014000 338DE85845C50CCE08D7E8AB6FC0FCCE0 libsoftkeymasterdevice.so
04-24 10:43:26.527 3890-3888/? A/google-breakpad: M AB213000 00000000 0000B000 3E11CADB98A3CB51AF15D37F5DBDEDE20 libkeystore_binder.so
04-24 10:43:26.528 3890-3888/? A/google-breakpad: M AB220000 00000000 00017000 3B2F279DF1E89FE66BF63D45988D6D980 libjavacrypto.so
04-24 10:43:26.528 3890-3888/? A/google-breakpad: M AB236000 00000000 00021000 D9921AE776ABBC9B9DCE747EF8953E8A0 libexif.so
04-24 10:43:26.528 3890-3888/? A/google-breakpad: M AB263000 00000000 00045000 A5142224674141CEB124E340789824960 libmedia_jni.so
04-24 10:43:26.528 3890-3888/? A/google-breakpad: M ACC02000 00000000 00009000 BACBBA13BAF63FDD14BF40B84F772D3F0 libkeymaster_messages.so
04-24 10:43:26.528 3890-3888/? A/google-breakpad: M ACC0D000 00000000 0000E000 3937955766C22021B16578D512D4E9830 libstagefright_amrnb_common.so
04-24 10:43:26.528 3890-3888/? A/google-breakpad: M ACC1D000 00000000 00015000 B0C5918AE09050178FAEAE43FA29D3600 libmtp.so
04-24 10:43:26.528 3890-3888/? A/google-breakpad: M AE384000 00000000 00004000 6FB01F06F8AF23A5D85902FA943DAFB80 libkeystore-engine.so
04-24 10:43:26.528 3890-3888/? A/google-breakpad: M AEE9E000 00000000 001B3000 39950644FB7072A572B1A84D409AF0050 librealm-jni.so
04-24 10:43:26.528 3890-3888/? A/google-breakpad: M B06C8000 00000000 00034000 E0C932435E0C44EC5DC9E1976D11658B0 libjavacore.so
04-24 10:43:26.528 3890-3888/? A/google-breakpad: M B074F000 00000000 00003000 05AB783FC39A13A57FB895A250BF1C970 memtrack.msm8974.so
04-24 10:43:26.528 3890-3888/? A/google-breakpad: M B3646000 00000000 0000A000 325F1F0186F90B27807C3F2EBBF8F8AC0 eglsubAndroid.so
04-24 10:43:26.528 3890-3888/? A/google-breakpad: M B3658000 00000000 00006000 B2F771B839C52B531AC3E03D8994123E0 libqdutils.so
04-24 10:43:26.528 3890-3888/? A/google-breakpad: M B3660000 00000000 00005000 5D84C60E5F362D25B277913D222929890 libmemalloc.so
04-24 10:43:26.528 3890-3888/? A/google-breakpad: M B3876000 00000000 00006000 0D46F308891586D53FEFA888079D88B20 gralloc.msm8974.so
04-24 10:43:26.528 3890-3888/? A/google-breakpad: M B4857000 00000000 0045B000 6D26BB0DBB493E7ED4A814914ECF27850 libart.so
04-24 10:43:26.528 3890-3888/? A/google-breakpad: M B4E04000 00000000 00003000 F61906BA1BEB278C34B9A8A6A4AF80820 libsigchain.so
04-24 10:43:26.528 3890-3888/? A/google-breakpad: M B4E06000 00000000 00A35000 E79326377E168BA620C88135338321A50 libLLVM.so
04-24 10:43:26.528 3890-3888/? A/google-breakpad: M B588F000 00000000 00035000 1F7A1A279869A393EAC78B57C56445520 libbcinfo.so
04-24 10:43:26.528 3890-3888/? A/google-breakpad: M B58C7000 00000000 00058000 F994835A343389C79F4C30936C9004B30 libbcc.so
04-24 10:43:26.528 3890-3888/? A/google-breakpad: M B5922000 00000000 0000B000 D8C092C1525B356CB13120FF56BB97380 libcommon_time_client.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B5932000 00000000 00017000 444772154CB6CD48C30C918052E56F190 libprotobuf-cpp-lite.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B594D000 00000000 00007000 9EB6557DD2AFBED3942745369C2432330 libstagefright_avc_common.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B5957000 00000000 00003000 F830D5FCA8CE68AA16F4E7011897D9500 libstagefright_enc_common.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B595D000 00000000 00004000 DCAE8541CE2FD7D421A500AA705392630 libpowermanager.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B5965000 00000000 0001D000 A13A0221FB379E549828C9206B7FA6230 libvorbisidec.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B5985000 00000000 00005000 CC4F2FB7800C2C6A6777CD503A198A740 libstagefright_yuv.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B598C000 00000000 0002E000 5B28D6F78B382DEA6AF10CE5F674BEA70 libstagefright_omx.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B59C0000 00000000 0003B000 DA62E34FF93B1765240288A71EAB823B0 libopus.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B59FE000 00000000 00007000 D0FCBF2C2CA22C1F15D8E4B10941F3520 libmediautils.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B5A08000 00000000 00016000 D0986C2BED782C8671E5FE07E837B4960 libdrmframework.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B5A23000 00000000 0001F000 D0EDA30ECD09284153FDAF4E32DAA51B0 libRScpp.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B5A44000 00000000 0003E000 179532B0AE18BF9C1E6CD7E79C75D40F0 libRS.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B5A86000 00000000 00007000 86FCEBAFB9790E0EBD115368F48D2C930 libspeexresampler.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B5A8F000 00000000 00009000 8C20262CB8CE5045100A935610F791270 libnbaio.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B5A9A000 00000000 00012000 D5651523083F8FDC12B0711D98F2B9050 libpcre.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B5AAF000 00000000 00005000 186C27905220043491FB10AF8779F9ED0 libwpa_client.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B5AB7000 00000000 0006D000 6717CFE62FEECECB00ABD6C1E9233FF70 libGLES_trace.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B5B29000 00000000 00064000 392AAD0F679066BE5ED9492EB23572350 libft2.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B5B91000 00000000 00025000 7A96CB2ACCBC8E9A57A36DF1777FDA280 libpng.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B5BB9000 00000000 00003000 975DFFF3F80C05D28A719CC59D45EF520 libsync.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B5BBE000 00000000 00005000 AD54FCB8953F0872A7D7506365A820DF0 libstdc++.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B5BC5000 00000000 00010000 68DAA924AA53242911B524DD5F2F365B0 libunwind.so
04-24 10:43:26.529 3890-3888/? A/google-breakpad: M B5C1D000 00000000 00009000 A625E650FD1A868F979B40295D18F37F0 libbase.so
04-24 10:43:26.530 3890-3888/? A/google-breakpad: M B5C28000 00000000 00005000 0221BA677798F79F0EDE71D73000B0830 libeffects.so
04-24 10:43:26.530 3890-3888/? A/google-breakpad: M B5C2F000 00000000 00003000 5B66E45FEF4A48E1BE145D2A7D196CA90 libstagefright_http_support.so
04-24 10:43:26.530 3890-3888/? A/google-breakpad: M B5C36000 00000000 00018000 1378833BA17F4B188F63ACA4D93284E40 libstagefright_foundation.so
04-24 10:43:26.530 3890-3888/? A/google-breakpad: M B5C4B000 00000000 00154000 71F570FFDD8FFDA85CA781F3D990FAA40 libstagefright.so
04-24 10:43:26.530 3890-3888/? A/google-breakpad: M B5DAB000 00000000 0006D000 CFB26F63B09DAE77611077B596B368B80 libhwui.so
04-24 10:43:26.530 3890-3888/? A/google-breakpad: M B5E1E000 00000000 00003000 31F35FE9AE237D34526084C7735BAD710 libradio_metadata.so
04-24 10:43:26.530 3890-3888/? A/google-breakpad: M B5E24000 00000000 00004000 359D832D9304E16B432A7F383964CB230 libnativebridge.so
04-24 10:43:26.530 3890-3888/? A/google-breakpad: M B5E2B000 00000000 00004000 C87225D3ECC6F5C77A87D8ACC190D75E0 libprocessgroup.so
04-24 10:43:26.530 3890-3888/? A/google-breakpad: M B5E32000 00000000 0000E000 E5BF43FB98B262E19922EFAFC405041A0 libminikin.so
04-24 10:43:26.530 3890-3888/? A/google-breakpad: M B5E42000 00000000 0000B000 D80CA7515725DD8FAB7948D50CDF5EAA0 libsoundtrigger.so
04-24 10:43:26.530 3890-3888/? A/google-breakpad: M B5E51000 00000000 0000B000 91DCA759F70CDD7679C8E9D3A523CA800 libradio.so
04-24 10:43:26.530 3890-3888/? A/google-breakpad: M B5E60000 00000000 00004000 82D86258B8C7231531BB04050783E8690 libnetd_client.so
04-24 10:43:26.530 3890-3888/? A/google-breakpad: M B5E67000 00000000 0000D000 BEEA59C940CE9D29A335E3F3DE9D0C290 libimg_utils.so
04-24 10:43:26.530 3890-3888/? A/google-breakpad: M B5E71000 00000000 00418000 82AB4D7DADE6D5C118789D0F63E33A850 libpdfium.so
04-24 10:43:26.530 3890-3888/? A/google-breakpad: M B6298000 00000000 00007000 0D95C16E0319BAF0A66F8EE9561484B80 libaudioutils.so
04-24 10:43:26.530 3890-3888/? A/google-breakpad: M B62A2000 00000000 0001B000 989408FFAB506BEA338258520EC0D8A80 libz.so
04-24 10:43:26.530 3890-3888/? A/google-breakpad: M B62C0000 00000000 0004C000 7FBACB0A5DB01E4014768154A89319810 libharfbuzz_ng.so
04-24 10:43:26.530 3890-3888/? A/google-breakpad: M B630F000 00000000 00004000 FD7850F1D6C7CD3BABCBC5EA0AD4815E0 libusbhost.so
04-24 10:43:26.530 3890-3888/? A/google-breakpad: M B6316000 00000000 00038000 274D060A09DE8149C4E1933FD725BA450 libjpeg.so
04-24 10:43:26.530 3890-3888/? A/google-breakpad: M B6339000 00000000 000A8000 9B17D7EC1CAEA2CB8513FD65ADFDC7CA0 libmedia.so
04-24 10:43:26.530 3890-3888/? A/google-breakpad: M B63F7000 00000000 0017A000 94E93744076C64969C2B0177F08614C30 libicui18n.so
04-24 10:43:26.531 3890-3888/? A/google-breakpad: M B6576000 00000000 0011E000 737022BF3716A277DA9D773DBDA6AC420 libicuuc.so
04-24 10:43:26.531 3890-3888/? A/google-breakpad: M B66A4000 00000000 00023000 1B7165386FE605802D368C055589C8880 libssl.so
04-24 10:43:26.531 3890-3888/? A/google-breakpad: M B66CA000 00000000 00090000 F04FF1057C411459F79A9C7BAA88731E0 libcrypto.so
04-24 10:43:26.531 3890-3888/? A/google-breakpad: M B6767000 00000000 00053000 A0B77A1519EC8DA5A6CD4E48511EDCF10 libsonivox.so
04-24 10:43:26.531 3890-3888/? A/google-breakpad: M B67C2000 00000000 0000E000 E0C69154C412CA47264F984B241997B20 libselinux.so
04-24 10:43:26.531 3890-3888/? A/google-breakpad: M B67D3000 00000000 00006000 09840C0CD88A3BD9EF8E92B458432A400 libhardware_legacy.so
04-24 10:43:26.531 3890-3888/? A/google-breakpad: M B67DC000 00000000 00003000 BE1E106B295304277CD701BB7AD933C50 libhardware.so
04-24 10:43:26.531 3890-3888/? A/google-breakpad: M B67E1000 00000000 00004000 B1EDA46D6613B27D961784B34D6DC87C0 libETC1.so
04-24 10:43:26.531 3890-3888/? A/google-breakpad: M B67E7000 00000000 0000D000 8CA0C6B93197C860AAEC6A913B5A81E30 libGLESv2.so
04-24 10:43:26.531 3890-3888/? A/google-breakpad: M B67F6000 00000000 00008000 12DB6B4FBF4C256B18521A7A9C7768590 libGLESv1_CM.so
04-24 10:43:26.531 3890-3888/? A/google-breakpad: M B67F8000 00000000 00064000 98A69E98CAF5A6410304D401BBA5066A0 libEGL.so
04-24 10:43:26.531 3890-3888/? A/google-breakpad: M B686A000 00000000 00063000 563A21DA52824524EFD978971ECEBE930 libsqlite.so
04-24 10:43:26.531 3890-3888/? A/google-breakpad: M B68BF000 00000000 00263000 88A157352C0FA3FFE49492763A7A444A0 libskia.so
04-24 10:43:26.531 3890-3888/? A/google-breakpad: M B6B43000 00000000 00008000 3E55FEDB37E880D84772B7318046BCB80 libcamera_metadata.so
04-24 10:43:26.531 3890-3888/? A/google-breakpad: M B6B49000 00000000 00028000 F159F41CC71E5C5FF2C1A47EEBB2173C0 libcamera_client.so
04-24 10:43:26.531 3890-3888/? A/google-breakpad: M B6B79000 00000000 0003C000 C4CB7CB4954EDCE882441D60420ACB6B0 libinputflinger.so
04-24 10:43:26.531 3890-3888/? A/google-breakpad: M B6BB8000 00000000 0001C000 1ACD55BF512ADF8086813BFE7A26FB970 libinput.so
04-24 10:43:26.531 3890-3888/? A/google-breakpad: M B6BD0000 00000000 00055000 6BE57CD94DF5CE13FA91904D864D13D90 libgui.so
04-24 10:43:26.531 3890-3888/? A/google-breakpad: M B6C33000 00000000 0000D000 9D45E134A41A4A59E527F776AF5AE4FC0 libui.so
04-24 10:43:26.531 3890-3888/? A/google-breakpad: M B6C43000 00000000 00007000 4FCE682A944F5EE77E8DC7B6939050FA0 libnetutils.so
04-24 10:43:26.531 3890-3888/? A/google-breakpad: M B6C4C000 00000000 00007000 2784CC1BA0E241691B489738CC145AC50 libnativehelper.so
04-24 10:43:26.532 3890-3888/? A/google-breakpad: M B6C55000 00000000 00014000 57974C7186E91CD6E25891B4663B4A5D0 libexpat.so
04-24 10:43:26.532 3890-3888/? A/google-breakpad: M B6C6C000 00000000 00027000 1860FE1627974D5FBD86574F36F2809D0 libandroidfw.so
04-24 10:43:26.532 3890-3888/? A/google-breakpad: M B6C96000 00000000 00003000 862C020387AF6F23AB952159C80579E70 libmemtrack.so
04-24 10:43:26.532 3890-3888/? A/google-breakpad: M B6C9B000 00000000 00009000 8013F5C42578C880B4427DD0634FA2C30 libbacktrace.so
04-24 10:43:26.532 3890-3888/? A/google-breakpad: M B6CA6000 00000000 00020000 5F30D52DD65FD9D4E72DB9E22B4A2D1B0 libm.so
04-24 10:43:26.532 3890-3888/? A/google-breakpad: M B6CC8000 00000000 00072000 A004D5DB1BCC805B1B17BFF9AD8DE8860 libc.so
04-24 10:43:26.532 3890-3888/? A/google-breakpad: M B6D49000 00000000 0008A000 FE7C3DF45D70A711B6323BF19B6A2C000 libc++.so
04-24 10:43:26.532 3890-3888/? A/google-breakpad: M B6DD9000 00000000 00029000 4F4924CEDD6EEC82549212B98F9C83540 libwilhelm.so
04-24 10:43:26.532 3890-3888/? A/google-breakpad: M B6DF8000 00000000 000DC000 53E4383102BCBCEAC7193F8C0FE5125D0 libandroid_runtime.so
04-24 10:43:26.532 3890-3888/? A/google-breakpad: M B6EE5000 00000000 00029000 9966E0A84C6CB362772E4970F274471C0 libbinder.so
04-24 10:43:26.532 3890-3888/? A/google-breakpad: M B6F17000 00000000 00008000 96D4ED3EE6B87C498EF4A82A2AA5DF8A0 liblog.so
04-24 10:43:26.532 3890-3888/? A/google-breakpad: M B6F22000 00000000 00018000 4937CBE356A4A147E8364A69DEB2AC890 libutils.so
04-24 10:43:26.532 3890-3888/? A/google-breakpad: M B6F3D000 00000000 0000E000 D515AE7FBFE9FBF600AA38A048404C940 libcutils.so
04-24 10:43:26.532 3890-3888/? A/google-breakpad: M B6F79000 00000000 0001D000 0BBFA1D2AB7B7CBE9F683CCF8BBFB0DA0 linker
04-24 10:43:26.532 3890-3888/? A/google-breakpad: -----END BREAKPAD MICRODUMP-----
04-24 10:43:26.555 32736-3888/? W/google-breakpad: ### ### ### ### ### ### ### ### ### ### ### ### ###
04-24 10:43:26.555 32736-3888/? W/google-breakpad: Chrome build fingerprint:
04-24 10:43:26.555 32736-3888/? W/google-breakpad: 3.0.24
04-24 10:43:26.555 32736-3888/? W/google-breakpad: 20000032
04-24 10:43:26.555 32736-3888/? W/google-breakpad: ### ### ### ### ### ### ### ### ### ### ### ### ###
04-24 10:43:26.555 32736-3888/? A/libc: Fatal signal 6 (SIGABRT), code -6 in tid 3888 (Thread-1837)
04-24 10:43:26.660 194-194/? A/DEBUG: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
04-24 10:43:26.660 194-194/? A/DEBUG: Build fingerprint: 'google/hammerhead/hammerhead:6.0.1/M4B30X/3237893:user/release-keys'
04-24 10:43:26.660 194-194/? A/DEBUG: Revision: '11'
04-24 10:43:26.660 194-194/? A/DEBUG: ABI: 'arm'
04-24 10:43:26.660 194-194/? A/DEBUG: pid: 32736, tid: 3888, name: Thread-1837 >>> com.luvr <<<
04-24 10:43:26.660 194-194/? A/DEBUG: signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
04-24 10:43:26.693 194-194/? A/DEBUG: r0 00000000 r1 00000f30 r2 00000006 r3 889fb978
04-24 10:43:26.693 194-194/? A/DEBUG: r4 889fb980 r5 889fb930 r6 00000000 r7 0000010c
04-24 10:43:26.693 194-194/? A/DEBUG: r8 0000000a r9 94069080 sl 889fb2fc fp 0010090a
04-24 10:43:26.693 194-194/? A/DEBUG: ip 00000006 sp 889fb270 lr b6d07b61 pc b6d09f50 cpsr 400f0010
04-24 10:43:26.719 194-194/? A/DEBUG: backtrace:
04-24 10:43:26.719 194-194/? A/DEBUG: #00 pc 00041f50 /system/lib/libc.so (tgkill+12)
04-24 10:43:26.719 194-194/? A/DEBUG: #1 pc 0003fb5d /system/lib/libc.so (pthread_kill+32)
04-24 10:43:26.719 194-194/? A/DEBUG: #2 pc 0001c30f /system/lib/libc.so (raise+10)
04-24 10:43:26.719 194-194/? A/DEBUG: #3 pc 000194c1 /system/lib/libc.so (__libc_android_abort+34)
04-24 10:43:26.719 194-194/? A/DEBUG: #4 pc 000174ac /system/lib/libc.so (abort+4)
04-24 10:43:26.720 194-194/? A/DEBUG: #5 pc 002267a3 /data/app/com.luvr-1/lib/arm/libjingle_peerconnection_so.so
04-24 10:43:26.720 194-194/? A/DEBUG: #6 pc 002c863f /data/app/com.luvr-1/lib/arm/libjingle_peerconnection_so.so
04-24 10:43:26.720 194-194/? A/DEBUG: #7 pc 002c9ec1 /data/app/com.luvr-1/lib/arm/libjingle_peerconnection_so.so
04-24 10:43:26.720 194-194/? A/DEBUG: #8 pc 0023853b /data/app/com.luvr-1/lib/arm/libjingle_peerconnection_so.so
04-24 10:43:26.721 194-194/? A/DEBUG: #9 pc 002379b9 /data/app/com.luvr-1/lib/arm/libjingle_peerconnection_so.so
04-24 10:43:26.721 194-194/? A/DEBUG: #10 pc 00237b91 /data/app/com.luvr-1/lib/arm/libjingle_peerconnection_so.so
04-24 10:43:26.721 194-194/? A/DEBUG: #11 pc 0024793d /data/app/com.luvr-1/lib/arm/libjingle_peerconnection_so.so
04-24 10:43:26.721 194-194/? A/DEBUG: #12 pc 00241d65 /data/app/com.luvr-1/lib/arm/libjingle_peerconnection_so.so
04-24 10:43:26.721 194-194/? A/DEBUG: #13 pc 0022c56f /data/app/com.luvr-1/lib/arm/libjingle_peerconnection_so.so
04-24 10:43:26.722 194-194/? A/DEBUG: #14 pc 0022a18f /data/app/com.luvr-1/lib/arm/libjingle_peerconnection_so.so
04-24 10:43:26.722 194-194/? A/DEBUG: #15 pc 0022c6c5 /data/app/com.luvr-1/lib/arm/libjingle_peerconnection_so.so
04-24 10:43:26.722 194-194/? A/DEBUG: #16 pc 0022cd83 /data/app/com.luvr-1/lib/arm/libjingle_peerconnection_so.so
04-24 10:43:26.722 194-194/? A/DEBUG: #17 pc 0003f45f /system/lib/libc.so (_ZL15__pthread_startPv+30)
04-24 10:43:26.722 194-194/? A/DEBUG: #18 pc 00019b43 /system/lib/libc.so (__start_thread+6)
04-24 10:43:27.659 194-194/? W/debuggerd: type=1400 audit(0.0:3118): avc: denied { read } for name="kgsl-3d0" dev="tmpfs" ino=5747 scontext=u:r:debuggerd:s0 tcontext=u:object_r:gpu_device:s0 tclass=chr_file permissive=0
04-24 10:43:27.829 194-194/? W/debuggerd: type=1400 audit(0.0:3119): avc: denied { read } for name="kgsl-3d0" dev="tmpfs" ino=5747 scontext=u:r:debuggerd:s0 tcontext=u:object_r:gpu_device:s0 tclass=chr_file permissive=0
04-24 10:43:28.140 194-194/? A/DEBUG: Tombstone written to: /data/tombstones/tombstone_05
04-24 10:43:28.140 194-194/? E/DEBUG: AM write failed: Broken pipe
04-24 10:43:28.142 778-3892/? W/ActivityManager: Force finishing activity com.luvr/.activity.MainHostActivity
04-24 10:43:28.151 778-795/? I/BootReceiver: Copying /data/tombstones/tombstone_05 to DropBox (SYSTEM_TOMBSTONE)
04-24 10:43:28.219 188-188/? E/lowmemorykiller: Error writing /proc/32736/oom_score_adj; errno=22
`

Changes from beta-3 to beta-4 are design changes

These 3 packages are gone.

import com.twilio.voice.IncomingCall;
import com.twilio.voice.IncomingCallMessage;
import com.twilio.voice.IncomingCallMessageListener;

Just so you know the word "beta" is used to represent a fully complete design that might have bugs. When you are still doing design changes your product is still "alpha". So I don't want to be rude. But consider the impact you have on others when you use "beta" when you mean "alpha".

Remember that "Perfect is the enemy of good".

Outgoing call not disconnecting

Hi,

Please look at this, its urgent. I am using 'com.twilio:voice-android:2.0.0-beta14'.

When I dial a number and it running on data network(not wifi) then sometimes it does not disconnect for a long time i.e. I hit disconnect button it does not disconnect from call even continuous hit of disconnect button not disconnecting the call for a long time.

Here are debug logs, please look at this -

You can see in logs that sometimes disconnect call in a single hit of button but sometimes it does not disconnect call even for many hit of button. Please provide the reason and solutions.

07-06 10:46:50.153 6376-6376/? I/art: Late-enabling -Xcheck:jni
07-06 10:46:50.227 6376-6376/com.app.dealer_app D/FirebaseApp: com.google.firebase.auth.FirebaseAuth is not linked. Skipping initialization.
07-06 10:46:50.247 6376-6376/com.app.dealer_app W/InstanceID/Rpc: Found 10015
07-06 10:46:50.257 6376-6376/com.app.dealer_app D/FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization.
07-06 10:46:50.265 6376-6376/com.app.dealer_app I/FA: App measurement is starting up, version: 10298
07-06 10:46:50.279 6376-6376/com.app.dealer_app I/FA: To enable faster debug mode event logging run:
adb shell setprop debug.firebase.analytics.app com.app.dealer_app
07-06 10:46:50.289 6376-6376/com.app.dealer_app I/FirebaseInitProvider: FirebaseApp initialization successful
07-06 10:46:50.604 6376-6435/com.app.dealer_app D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: true
07-06 10:46:50.756 6376-6435/com.app.dealer_app I/Adreno: QUALCOMM build : 576fcee, I44fb0b5862
Build Date : 08/26/15
OpenGL ES Shader Compiler Version: XE031.05.13.02
Local Branch : M13
Remote Branch :
Remote Branch :
Reconstruct Branch :
07-06 10:46:50.763 6376-6435/com.app.dealer_app I/OpenGLRenderer: Initialized EGL, version 1.4
07-06 10:46:50.933 6376-6408/com.app.dealer_app D/FA: Connected to remote service
07-06 10:46:53.441 6376-6472/com.app.dealer_app E/Volley: [549] a.a: Request at https://app.callproof.com/hustle/check/token has been redirected to http://app.callproof.com/hustle/check/token/
07-06 10:46:54.261 6376-6472/com.app.dealer_app E/Volley: [549] a.a: Request at https://app.callproof.com/hustle/check/token has been redirected to https://app.callproof.com/hustle/check/token/
07-06 10:46:55.780 6376-6408/com.app.dealer_app I/FA: Tag Manager is not found and thus will not be used
07-06 10:46:55.785 6376-6408/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=5175, _sc=SplashActivity, _si=-8312459897050214430}]
07-06 10:46:56.340 6376-6438/com.app.dealer_app I/ModelSpecificDistanceCalculator: Successfully saved new distance model file
07-06 10:46:56.343 6376-6438/com.app.dealer_app W/ModelSpecificDistanceCalculator: Cannot find match for this device. Using default
07-06 10:46:56.343 6376-6438/com.app.dealer_app I/ModelSpecificDistanceCalculator: Successfully updated distance model with latest from online database
07-06 10:47:02.752 6376-6408/com.app.dealer_app D/FA: Logging event (FE): _s, Bundle[{_o=auto, _sc=LoginActivity, _si=-8312459897050214429}]
07-06 10:47:02.780 6376-6408/com.app.dealer_app D/FA: Connected to remote service
07-06 10:47:07.582 6376-6408/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=10745, _sc=LoginActivity, _si=-8312459897050214429}]
07-06 10:47:07.606 6376-6376/com.app.dealer_app I/AppCompatViewInflater: app:theme is now deprecated. Please move to using android:theme instead.
07-06 10:47:07.829 6376-6816/com.app.dealer_app E/ProviderInstaller: libgmscore version mismatch (0 vs. 11055)
07-06 10:47:07.829 6376-6816/com.app.dealer_app W/IonConscrypt: Conscrypt initialization failed.
07-06 10:47:26.642 6376-6408/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=18899, _sc=HomeActivity, _si=-8312459897050214428}]
07-06 10:47:26.817 6376-6376/com.app.dealer_app I/PJSIP: 10:47:26.817 os_core_unix.c !pjlib 2.5.1 for POSIX initialized
07-06 10:47:26.819 6376-6376/com.app.dealer_app D/PJSIP: 10:47:26.819 sip_endpoint.c .Creating endpoint instance...
07-06 10:47:26.819 6376-6376/com.app.dealer_app I/PJSIP: 10:47:26.819 pjlib .select() I/O Queue created (0x974fd044)
07-06 10:47:26.819 6376-6376/com.app.dealer_app I/PJSIP: 10:47:26.819 sip_endpoint.c .Module "mod-msg-print" registered
07-06 10:47:26.819 6376-6376/com.app.dealer_app D/PJSIP: 10:47:26.819 sip_transport. .Transport manager created.
07-06 10:47:26.819 6376-6376/com.app.dealer_app I/PJSIP: 10:47:26.819 pjsua_core.c .PJSUA state changed: NULL --> CREATED
07-06 10:47:26.845 6376-7318/com.app.dealer_app W/AudioTrack: AUDIO_OUTPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, output 48000 Hz
07-06 10:47:26.848 6376-7318/com.app.dealer_app W/AudioRecord: AUDIO_INPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, primary 48000 Hz
07-06 10:47:26.930 6376-6408/com.app.dealer_app D/FA: Connected to remote service
07-06 10:47:26.932 6376-6376/com.app.dealer_app D/CallControlManager: got connectivity broadcast: haveConn=true, reason=null, isFailover=false
07-06 10:47:26.937 6376-6376/com.app.dealer_app D/CallControlManager: got wifi SSID: "IdeaMessenger306"
07-06 10:47:26.937 6376-6376/com.app.dealer_app D/CallControlManager: NET CHANGE EVENT: connected=true, wasConnected=true, netTypeChanged=true
07-06 10:47:26.937 6376-6376/com.app.dealer_app D/CallControlManager: switched networks to type 1
07-06 10:47:27.233 6376-6437/com.app.dealer_app D/BluetoothAdapter: STATE_ON
07-06 10:47:27.317 6376-7318/com.app.dealer_app D/CallControlManager: onCallSDPCreated notification received
07-06 10:47:27.320 6376-7318/com.app.dealer_app D/CallControlManager: received CALLING
07-06 10:47:27.793 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:47:27.794 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:47:29.120 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:47:29.120 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:47:29.681 6376-7316/com.app.dealer_app D/CallControlManager: received EARLY
07-06 10:47:29.683 6376-7316/com.app.dealer_app D/CallControlManager: onTransactionState received CA857159ea02b3f83bc16d5045369d8aaf
07-06 10:47:29.821 6376-7316/com.app.dealer_app D/CallControlManager: received DISCONNECTED
07-06 10:47:29.822 6376-7316/com.app.dealer_app D/InternalCall: Publishing event : disconnected-by-local
07-06 10:47:29.890 6376-7316/com.app.dealer_app D/EventPublisher: Start publishing events to : https://eventgw.twilio.com/v3/EndpointEvents
{"name":"disconnected-by-local","group":"connection","timestamp":"2017-07-06T05:17:29.827Z","level":"INFO","private":false,"payload_type":"application/json","publisher":"twilio-voice-android","publisher_metadata":{"client_address":"FE80::C42:E9FF:FEAA:DFAB","os_name":"android","os_version":"6.0","device_model":"Motorola Nexus 6","device_vendor":"motorola","device_type":"Nexus 6","cpu_architecture":"armeabi-v7a"},"payload":{"timestamp_ms":1499318249823,"call_sid":"CA857159ea02b3f83bc16d5045369d8aaf","sdk_version":"2.0.0-beta14","platform":"android","direction":"OUTGOING"}}
07-06 10:47:29.892 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect 111
07-06 10:47:29.919 6376-6408/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=3073, _sc=TwilioOutgoingCallActivity, _si=-8312459897050214427}]
07-06 10:47:30.957 6376-7318/com.app.dealer_app D/CallControlManager: onCallSDPCreated notification received
07-06 10:47:30.960 6376-7318/com.app.dealer_app D/CallControlManager: received CALLING
07-06 10:47:31.003 6376-7318/com.app.dealer_app D/CallCommandHandlerImpl: Shutting down thread
07-06 10:47:31.029 6376-7374/com.app.dealer_app D/EventPublisher: Response: 200 - OK
07-06 10:47:31.864 6376-6376/com.app.dealer_app D/CallControlManager: received DISCONNECTED
07-06 10:47:31.864 6376-6376/com.app.dealer_app D/InternalCall: Publishing event : disconnected-by-remote
07-06 10:47:31.864 6376-6376/com.app.dealer_app W/InternalCall: sid is null. Not publishing disconnected-by-remote event.
07-06 10:47:32.395 6376-6376/com.app.dealer_app I/Choreographer: Skipped 85 frames! The application may be doing too much work on its main thread.
07-06 10:47:32.431 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect 111
07-06 10:47:32.483 6376-6408/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=1521, _sc=TwilioOutgoingCallActivity, _si=-8312459897050214426}]
07-06 10:47:50.288 6376-6408/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=17773, _sc=HomeActivity, _si=-8312459897050214428}]
07-06 10:47:50.433 6376-6376/com.app.dealer_app I/PJSIP: 10:47:50.433 os_core_unix.c !pjlib 2.5.1 for POSIX initialized
07-06 10:47:50.435 6376-6376/com.app.dealer_app I/PJSIP: 10:47:50.435 pjlib .select() I/O Queue created (0x8cbbd044)
07-06 10:47:50.436 6376-6376/com.app.dealer_app I/PJSIP: 10:47:50.436 sip_endpoint.c .Module "mod-msg-print" registered
07-06 10:47:50.436 6376-6376/com.app.dealer_app I/PJSIP: 10:47:50.436 pjsua_core.c .PJSUA state changed: NULL --> CREATED
07-06 10:47:50.448 6376-7712/com.app.dealer_app W/AudioTrack: AUDIO_OUTPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, output 48000 Hz
07-06 10:47:50.453 6376-7712/com.app.dealer_app W/AudioRecord: AUDIO_INPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, primary 48000 Hz
07-06 10:47:50.503 6376-6376/com.app.dealer_app D/CallControlManager: got connectivity broadcast: haveConn=true, reason=null, isFailover=false
07-06 10:47:50.504 6376-6376/com.app.dealer_app D/CallControlManager: got wifi SSID: "IdeaMessenger306"
07-06 10:47:50.505 6376-6376/com.app.dealer_app D/CallControlManager: NET CHANGE EVENT: connected=true, wasConnected=true, netTypeChanged=true
07-06 10:47:50.505 6376-6376/com.app.dealer_app D/CallControlManager: switched networks to type 1
07-06 10:47:50.506 6376-6408/com.app.dealer_app D/FA: Connected to remote service
07-06 10:47:50.927 6376-7712/com.app.dealer_app D/CallControlManager: onCallSDPCreated notification received
07-06 10:47:50.928 6376-7712/com.app.dealer_app D/CallControlManager: received CALLING
07-06 10:47:51.898 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:47:51.898 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:47:54.461 6376-7710/com.app.dealer_app D/CallControlManager: received EARLY
07-06 10:47:54.463 6376-7710/com.app.dealer_app D/CallControlManager: onTransactionState received CA2a625b0031311293a36244b2677a8275
07-06 10:47:54.467 6376-7710/com.app.dealer_app D/CallControlManager: received CONNECTING
07-06 10:47:54.467 6376-7710/com.app.dealer_app A/PJSIP: 10:47:54.467 pjsua_call.c .....Unable to create media session: No active media stream after negotiation (PJMEDIA_SDPNEG_ENOMEDIA) [status=220048]
07-06 10:47:54.470 6376-7710/com.app.dealer_app D/CallControlManager: received CONFIRMED
07-06 10:47:54.471 6376-7710/com.app.dealer_app D/CallControlManager: onTransactionState received CA2a625b0031311293a36244b2677a8275
07-06 10:47:54.601 6376-7710/com.app.dealer_app D/CallControlManager: received DISCONNECTED
07-06 10:47:54.603 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect 111
07-06 10:47:54.629 6376-6408/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=4177, _sc=TwilioOutgoingCallActivity, _si=-8312459897050214425}]
07-06 10:47:54.665 6376-6376/com.app.dealer_app I/CycledLeScanner: Adjusted nextScanStartTime to be Thu Jul 06 10:47:51 GMT+05:30 2017
07-06 10:47:55.606 6376-7712/com.app.dealer_app D/CallCommandHandlerImpl: Shutting down thread
07-06 10:48:40.985 6376-8773/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=46332, _sc=HomeActivity, _si=-8312459897050214428}]
07-06 10:48:41.011 6376-8773/com.app.dealer_app D/FA: Connected to remote service
07-06 10:49:16.245 6376-9601/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=35119, _sc=HomeActivity, _si=-8312459897050214428}]
07-06 10:49:16.280 6376-9601/com.app.dealer_app D/FA: Connected to remote service
07-06 10:49:48.774 6376-9601/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=32461, _sc=HomeActivity, _si=-8312459897050214428}]
07-06 10:49:48.918 6376-6376/com.app.dealer_app I/PJSIP: 10:49:48.918 os_core_unix.c !pjlib 2.5.1 for POSIX initialized
07-06 10:49:48.920 6376-6376/com.app.dealer_app I/PJSIP: 10:49:48.920 pjlib .select() I/O Queue created (0x95ffc044)
07-06 10:49:48.920 6376-6376/com.app.dealer_app I/PJSIP: 10:49:48.920 sip_endpoint.c .Module "mod-msg-print" registered
07-06 10:49:48.920 6376-6376/com.app.dealer_app I/PJSIP: 10:49:48.920 pjsua_core.c .PJSUA state changed: NULL --> CREATED
07-06 10:49:48.932 6376-10348/com.app.dealer_app W/AudioTrack: AUDIO_OUTPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, output 48000 Hz
07-06 10:49:48.937 6376-10348/com.app.dealer_app W/AudioRecord: AUDIO_INPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, primary 48000 Hz
07-06 10:49:48.986 6376-6376/com.app.dealer_app D/CallControlManager: got connectivity broadcast: haveConn=true, reason=null, isFailover=false
07-06 10:49:48.987 6376-6376/com.app.dealer_app D/CallControlManager: NET CHANGE EVENT: connected=true, wasConnected=true, netTypeChanged=true
07-06 10:49:48.987 6376-6376/com.app.dealer_app D/CallControlManager: switched networks to type 0
07-06 10:49:48.988 6376-9601/com.app.dealer_app D/FA: Connected to remote service
07-06 10:49:49.415 6376-10348/com.app.dealer_app D/CallControlManager: onCallSDPCreated notification received
07-06 10:49:49.417 6376-10348/com.app.dealer_app D/CallControlManager: received CALLING
07-06 10:49:50.155 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:49:50.156 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:49:52.493 6376-10346/com.app.dealer_app D/CallControlManager: received EARLY
07-06 10:49:52.494 6376-10346/com.app.dealer_app D/CallControlManager: onTransactionState received CA4317afcd79ad206c88cc934be0153756
07-06 10:49:52.759 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:49:52.759 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:49:53.284 6376-10346/com.app.dealer_app D/CallControlManager: received DISCONNECTED
07-06 10:49:53.284 6376-10346/com.app.dealer_app D/InternalCall: Publishing event : disconnected-by-local
07-06 10:49:53.299 6376-10346/com.app.dealer_app D/EventPublisher: Start publishing events to : https://eventgw.twilio.com/v3/EndpointEvents
{"name":"disconnected-by-local","group":"connection","timestamp":"2017-07-06T05:19:53.286Z","level":"INFO","private":false,"payload_type":"application/json","publisher":"twilio-voice-android","publisher_metadata":{"client_address":"FE80::C42:E9FF:FEAA:DFAB","os_name":"android","os_version":"6.0","device_model":"Motorola Nexus 6","device_vendor":"motorola","device_type":"Nexus 6","cpu_architecture":"armeabi-v7a"},"payload":{"timestamp_ms":1499318393285,"call_sid":"CA4317afcd79ad206c88cc934be0153756","sdk_version":"2.0.0-beta14","platform":"android","direction":"OUTGOING"}}
07-06 10:49:53.300 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect 111
07-06 10:49:53.328 6376-9601/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=4391, _sc=TwilioOutgoingCallActivity, _si=-8312459897050214424}]
ler_app D/BluetoothAdapter: STATE_ON
07-06 10:49:54.300 6376-10348/com.app.dealer_app D/CallCommandHandlerImpl: Shutting down thread
07-06 10:49:54.951 6376-10420/com.app.dealer_app D/EventPublisher: Response: 200 - OK
07-06 10:49:59.337 6376-9601/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=5990, _sc=HomeActivity, _si=-8312459897050214428}]
07-06 10:49:59.487 6376-6376/com.app.dealer_app I/PJSIP: 10:49:59.487 os_core_unix.c !pjlib 2.5.1 for POSIX initialized
07-06 10:49:59.490 6376-6376/com.app.dealer_app I/PJSIP: 10:49:59.490 pjlib .select() I/O Queue created (0x8c451044)
07-06 10:49:59.490 6376-6376/com.app.dealer_app I/PJSIP: 10:49:59.490 sip_endpoint.c .Module "mod-msg-print" registered
07-06 10:49:59.490 6376-6376/com.app.dealer_app I/PJSIP: 10:49:59.490 pjsua_core.c .PJSUA state changed: NULL --> CREATED
07-06 10:49:59.505 6376-10540/com.app.dealer_app W/AudioTrack: AUDIO_OUTPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, output 48000 Hz
07-06 10:49:59.509 6376-10540/com.app.dealer_app W/AudioRecord: AUDIO_INPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, primary 48000 Hz
07-06 10:49:59.561 6376-9601/com.app.dealer_app D/FA: Connected to remote service
07-06 10:49:59.561 6376-6376/com.app.dealer_app D/CallControlManager: got connectivity broadcast: haveConn=true, reason=null, isFailover=false
07-06 10:49:59.562 6376-6376/com.app.dealer_app D/CallControlManager: NET CHANGE EVENT: connected=true, wasConnected=true, netTypeChanged=true
07-06 10:49:59.562 6376-6376/com.app.dealer_app D/CallControlManager: switched networks to type 0
07-06 10:49:59.971 6376-10540/com.app.dealer_app D/CallControlManager: onCallSDPCreated notification received
07-06 10:49:59.976 6376-10540/com.app.dealer_app D/CallControlManager: received CALLING
07-06 10:50:01.146 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:50:01.146 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:50:03.563 6376-10538/com.app.dealer_app D/CallControlManager: received EARLY
07-06 10:50:03.564 6376-10538/com.app.dealer_app D/CallControlManager: onTransactionState received CAf4c9795dca88ee3374de1b0a26fb172a
07-06 10:50:03.933 6376-10538/com.app.dealer_app D/CallControlManager: received CONNECTING
07-06 10:50:03.935 6376-10538/com.app.dealer_app D/CallControlManager: received CONFIRMED
07-06 10:50:03.936 6376-10538/com.app.dealer_app D/CallControlManager: onTransactionState received CAf4c9795dca88ee3374de1b0a26fb172a
07-06 10:50:04.379 6376-10538/com.app.dealer_app D/CallControlManager: received DISCONNECTED
07-06 10:50:04.379 6376-10538/com.app.dealer_app D/InternalCall: Publishing event : disconnected-by-local
07-06 10:50:04.400 6376-10538/com.app.dealer_app D/EventPublisher: Start publishing events to : https://eventgw.twilio.com/v3/EndpointEvents
{"name":"disconnected-by-local","group":"connection","timestamp":"2017-07-06T05:20:04.384Z","level":"INFO","private":false,"payload_type":"application/json","publisher":"twilio-voice-android","publisher_metadata":{"client_address":"FE80::C42:E9FF:FEAA:DFAB","os_name":"android","os_version":"6.0","device_model":"Motorola Nexus 6","device_vendor":"motorola","device_type":"Nexus 6","cpu_architecture":"armeabi-v7a"},"payload":{"timestamp_ms":1499318404381,"call_sid":"CAf4c9795dca88ee3374de1b0a26fb172a","sdk_version":"2.0.0-beta14","platform":"android","direction":"OUTGOING"}}
07-06 10:50:04.401 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect 111
07-06 10:50:04.454 6376-9601/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=4938, _sc=TwilioOutgoingCallActivity, _si=-8312459897050214423}]
07-06 10:50:05.401 6376-10540/com.app.dealer_app D/CallCommandHandlerImpl: Shutting down thread
07-06 10:50:05.741 6376-10616/com.app.dealer_app D/EventPublisher: Response: 200 - OK
07-06 10:50:09.318 6376-9601/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=4847, _sc=HomeActivity, _si=-8312459897050214428}]
07-06 10:50:09.488 6376-6376/com.app.dealer_app I/PJSIP: 10:50:09.488 os_core_unix.c !pjlib 2.5.1 for POSIX initialized
07-06 10:50:09.490 6376-6376/com.app.dealer_app I/PJSIP: 10:50:09.490 pjlib .select() I/O Queue created (0x95ffc044)
07-06 10:50:09.490 6376-6376/com.app.dealer_app I/PJSIP: 10:50:09.490 sip_endpoint.c .Module "mod-msg-print" registered
07-06 10:50:09.490 6376-6376/com.app.dealer_app I/PJSIP: 10:50:09.490 pjsua_core.c .PJSUA state changed: NULL --> CREATED
07-06 10:50:09.505 6376-10718/com.app.dealer_app W/AudioTrack: AUDIO_OUTPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, output 48000 Hz
07-06 10:50:09.509 6376-10718/com.app.dealer_app W/AudioRecord: AUDIO_INPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, primary 48000 Hz
07-06 10:50:09.572 6376-6376/com.app.dealer_app D/CallControlManager: got connectivity broadcast: haveConn=true, reason=null, isFailover=false
07-06 10:50:09.573 6376-6376/com.app.dealer_app D/CallControlManager: NET CHANGE EVENT: connected=true, wasConnected=true, netTypeChanged=true
07-06 10:50:09.573 6376-6376/com.app.dealer_app D/CallControlManager: switched networks to type 0
07-06 10:50:09.939 6376-6437/com.app.dealer_app D/BluetoothAdapter: STATE_ON
07-06 10:50:09.995 6376-10718/com.app.dealer_app D/CallControlManager: onCallSDPCreated notification received
07-06 10:50:09.997 6376-10718/com.app.dealer_app D/CallControlManager: received CALLING
07-06 10:50:12.139 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:50:12.139 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:50:12.833 6376-10716/com.app.dealer_app D/CallControlManager: received EARLY
07-06 10:50:12.834 6376-10716/com.app.dealer_app D/CallControlManager: onTransactionState received CA459bb092cce03da46f09b847da1e8480
07-06 10:50:13.173 6376-10716/com.app.dealer_app D/CallControlManager: received DISCONNECTED
07-06 10:50:13.173 6376-10716/com.app.dealer_app D/InternalCall: Publishing event : disconnected-by-local
07-06 10:50:13.190 6376-10716/com.app.dealer_app D/EventPublisher: Start publishing events to : https://eventgw.twilio.com/v3/EndpointEvents
{"name":"disconnected-by-local","group":"connection","timestamp":"2017-07-06T05:20:13.175Z","level":"INFO","private":false,"payload_type":"application/json","publisher":"twilio-voice-android","publisher_metadata":{"client_address":"FE80::C42:E9FF:FEAA:DFAB","os_name":"android","os_version":"6.0","device_model":"Motorola Nexus 6","device_vendor":"motorola","device_type":"Nexus 6","cpu_architecture":"armeabi-v7a"},"payload":{"timestamp_ms":1499318413173,"call_sid":"CA459bb092cce03da46f09b847da1e8480","sdk_version":"2.0.0-beta14","platform":"android","direction":"OUTGOING"}}
07-06 10:50:13.191 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect 111
07-06 10:50:13.215 6376-9601/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=3707, _sc=TwilioOutgoingCallActivity, _si=-8312459897050214422}]
07-06 10:50:14.192 6376-10718/com.app.dealer_app D/CallCommandHandlerImpl: Shutting down thread
07-06 10:50:14.435 6376-10773/com.app.dealer_app D/EventPublisher: Response: 200 - OK
07-06 10:50:16.191 6376-9601/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=2967, _sc=HomeActivity, _si=-8312459897050214428}]
07-06 10:50:16.201 6376-6376/com.app.dealer_app I/BeaconService: set scan intervals received
07-06 10:50:16.350 6376-6376/com.app.dealer_app I/PJSIP: 10:50:16.350 os_core_unix.c !pjlib 2.5.1 for POSIX initialized
07-06 10:50:16.352 6376-6376/com.app.dealer_app I/PJSIP: 10:50:16.351 pjlib .select() I/O Queue created (0x8c451044)
07-06 10:50:16.352 6376-6376/com.app.dealer_app I/PJSIP: 10:50:16.352 sip_endpoint.c .Module "mod-msg-print" registered
07-06 10:50:16.352 6376-6376/com.app.dealer_app I/PJSIP: 10:50:16.352 pjsua_core.c .PJSUA state changed: NULL --> CREATED
07-06 10:50:16.367 6376-10845/com.app.dealer_app W/AudioTrack: AUDIO_OUTPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, output 48000 Hz
07-06 10:50:16.370 6376-10845/com.app.dealer_app W/AudioRecord: AUDIO_INPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, primary 48000 Hz
07-06 10:50:16.414 6376-6376/com.app.dealer_app D/CallControlManager: got connectivity broadcast: haveConn=true, reason=null, isFailover=false
07-06 10:50:16.415 6376-6376/com.app.dealer_app D/CallControlManager: NET CHANGE EVENT: connected=true, wasConnected=true, netTypeChanged=true
07-06 10:50:16.415 6376-6376/com.app.dealer_app D/CallControlManager: switched networks to type 0
07-06 10:50:16.680 6376-6437/com.app.dealer_app D/BluetoothAdapter: STATE_ON
07-06 10:50:16.805 6376-10845/com.app.dealer_app D/CallControlManager: onCallSDPCreated notification received
07-06 10:50:16.807 6376-10845/com.app.dealer_app D/CallControlManager: received CALLING
07-06 10:50:17.538 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:50:17.539 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:50:24.836 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:50:24.836 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:50:32.895 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:50:32.895 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:50:34.974 6376-10843/com.app.dealer_app D/CallControlManager: received EARLY
07-06 10:50:34.978 6376-10843/com.app.dealer_app D/CallControlManager: onTransactionState received CAfa291874604f558c1cd2f7df291f0a21
07-06 10:50:34.980 6376-10843/com.app.dealer_app D/CallControlManager: received CONNECTING
07-06 10:50:34.983 6376-10843/com.app.dealer_app D/CallControlManager: received CONFIRMED
07-06 10:50:34.984 6376-10843/com.app.dealer_app D/CallControlManager: onTransactionState received CAfa291874604f558c1cd2f7df291f0a21
07-06 10:50:37.258 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:50:37.258 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:50:39.522 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:50:39.523 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:50:41.337 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:50:41.337 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:50:44.589 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:50:44.589 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:50:46.289 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:50:46.289 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:50:47.099 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:50:47.100 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:50:47.769 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:50:47.769 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:50:48.403 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:50:48.403 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:50:48.991 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:50:48.991 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:50:49.541 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:50:49.541 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:50:50.064 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:50:50.064 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:50:51.057 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:50:51.057 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:50:51.694 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:50:51.694 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:50:52.341 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:50:52.342 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:50:52.914 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:50:52.915 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:50:53.223 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:50:53.223 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:51:00.667 6376-10843/com.app.dealer_app D/CallControlManager: received DISCONNECTED
07-06 10:51:00.667 6376-10843/com.app.dealer_app D/InternalCall: Publishing event : disconnected-by-local
07-06 10:51:00.696 6376-10843/com.app.dealer_app D/EventPublisher: Start publishing events to : https://eventgw.twilio.com/v3/EndpointEvents
{"name":"disconnected-by-local","group":"connection","timestamp":"2017-07-06T05:21:00.675Z","level":"INFO","private":false,"payload_type":"application/json","publisher":"twilio-voice-android","publisher_metadata":{"client_address":"FE80::C42:E9FF:FEAA:DFAB","os_name":"android","os_version":"6.0","device_model":"Motorola Nexus 6","device_vendor":"motorola","device_type":"Nexus 6","cpu_architecture":"armeabi-v7a"},"payload":{"timestamp_ms":1499318460669,"call_sid":"CAfa291874604f558c1cd2f7df291f0a21","sdk_version":"2.0.0-beta14","platform":"android","direction":"OUTGOING"}}
07-06 10:51:00.697 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect 111
07-06 10:51:00.754 6376-11506/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=44372, _sc=TwilioOutgoingCallActivity, _si=-8312459897050214421}]
07-06 10:51:00.774 6376-6376/com.app.dealer_app I/BeaconService: set scan intervals received
07-06 10:51:00.776 6376-6376/com.app.dealer_app I/CycledLeScanner: Adjusted nextScanStartTime to be Thu Jul 06 10:50:16 GMT+05:30 2017
07-06 10:51:00.800 6376-11506/com.app.dealer_app D/FA: Connected to remote service
07-06 10:51:01.697 6376-10845/com.app.dealer_app D/CallCommandHandlerImpl: Shutting down thread
07-06 10:51:02.514 6376-6438/com.app.dealer_app D/EventPublisher: Response: 200 - OK
07-06 10:52:47.844 6376-6383/com.app.dealer_app W/art: Suspending all threads took: 13.653ms
07-06 10:55:03.245 6376-6376/com.app.dealer_app I/BeaconService: set scan intervals received
07-06 10:55:03.247 6376-15112/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=242492, _sc=HomeActivity, _si=-8312459897050214428}]
07-06 10:55:03.251 6376-6376/com.app.dealer_app I/CycledLeScanner: Adjusted scanStopTime to be 425210
07-06 10:55:03.402 6376-6376/com.app.dealer_app I/PJSIP: 10:55:03.402 os_core_unix.c !pjlib 2.5.1 for POSIX initialized
07-06 10:55:03.405 6376-6376/com.app.dealer_app I/PJSIP: 10:55:03.405 pjlib .select() I/O Queue created (0x88abd044)
07-06 10:55:03.405 6376-6376/com.app.dealer_app I/PJSIP: 10:55:03.405 sip_endpoint.c .Module "mod-msg-print" registered
07-06 10:55:03.405 6376-6376/com.app.dealer_app I/PJSIP: 10:55:03.405 pjsua_core.c .PJSUA state changed: NULL --> CREATED
07-06 10:55:03.418 6376-15127/com.app.dealer_app W/AudioTrack: AUDIO_OUTPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, output 48000 Hz
07-06 10:55:03.423 6376-15127/com.app.dealer_app W/AudioRecord: AUDIO_INPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, primary 48000 Hz
07-06 10:55:03.458 6376-6376/com.app.dealer_app D/CallControlManager: got connectivity broadcast: haveConn=true, reason=null, isFailover=false
07-06 10:55:03.458 6376-6376/com.app.dealer_app D/CallControlManager: NET CHANGE EVENT: connected=true, wasConnected=true, netTypeChanged=true
07-06 10:55:03.459 6376-6376/com.app.dealer_app D/CallControlManager: switched networks to type 0
07-06 10:55:03.486 6376-15112/com.app.dealer_app D/FA: Connected to remote service
07-06 10:55:03.730 6376-6437/com.app.dealer_app D/BluetoothAdapter: STATE_ON
07-06 10:55:03.887 6376-15127/com.app.dealer_app D/CallControlManager: onCallSDPCreated notification received
07-06 10:55:03.889 6376-15127/com.app.dealer_app D/CallControlManager: received CALLING
07-06 10:55:06.988 6376-6475/com.app.dealer_app D/Volley: [552] a.a: HTTP response for request=<[ ] https://lookups.twilio.com/v1/PhoneNumbers/+919753206047?Type=carrier&Type=caller-name 0x50af61f4 NORMAL 44> [lifetime=3586], [size=347], [rc=200], [retryCount=0]
07-06 10:55:08.631 6376-15125/com.app.dealer_app D/CallControlManager: received EARLY
07-06 10:55:08.635 6376-15125/com.app.dealer_app D/CallControlManager: onTransactionState received CA452d6d9d5762bd13cac80907cfab9d48
07-06 10:55:09.012 6376-15125/com.app.dealer_app D/CallControlManager: received CONNECTING
07-06 10:55:09.030 6376-15125/com.app.dealer_app D/CallControlManager: received CONFIRMED
07-06 10:55:09.039 6376-15125/com.app.dealer_app D/CallControlManager: onTransactionState received CA452d6d9d5762bd13cac80907cfab9d48
07-06 10:55:09.048 6376-7374/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:09.039Z","timestamp_ms":1499318709039,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":0,"total_packets_received":0,"total_packets_lost":0,"total_bytes_received":0,"total_bytes_sent":0,"jitter":0,"rtt":0,"audio_level_in":0,"audio_level_out":0,"mos":4.437552191410176}
07-06 10:55:10.062 6376-7374/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:10.059Z","timestamp_ms":1499318710059,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":51,"total_packets_received":0,"total_packets_lost":0,"total_bytes_received":0,"total_bytes_sent":8160,"jitter":0,"rtt":0,"audio_level_in":128,"audio_level_out":0,"mos":4.437552191410176}
07-06 10:55:11.108 6376-7374/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:11.105Z","timestamp_ms":1499318711105,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":103,"total_packets_received":0,"total_packets_lost":0,"total_bytes_received":0,"total_bytes_sent":16480,"jitter":0,"rtt":0,"audio_level_in":128,"audio_level_out":0,"mos":4.437552191410176}
07-06 10:55:12.155 6376-7374/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:12.151Z","timestamp_ms":1499318712151,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":40,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":156,"total_packets_received":40,"total_packets_lost":0,"total_bytes_received":6400,"total_bytes_sent":24960,"jitter":2,"rtt":0,"audio_level_in":0,"audio_level_out":0,"mos":4.437552191410176}
07-06 10:55:13.196 6376-7374/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:13.194Z","timestamp_ms":1499318713194,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":209,"total_packets_received":92,"total_packets_lost":0,"total_bytes_received":14720,"total_bytes_sent":33440,"jitter":3,"rtt":0,"audio_level_in":0,"audio_level_out":0,"mos":4.437552191410176}
07-06 10:55:14.240 6376-7374/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:14.238Z","timestamp_ms":1499318714238,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":259,"total_packets_received":144,"total_packets_lost":0,"total_bytes_received":23040,"total_bytes_sent":41440,"jitter":2,"rtt":140,"audio_level_in":0,"audio_level_out":0,"mos":4.3798704303221765}
07-06 10:55:15.277 6376-7374/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:15.274Z","timestamp_ms":1499318715274,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":53,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":312,"total_packets_received":197,"total_packets_lost":0,"total_bytes_received":31520,"total_bytes_sent":49920,"jitter":1,"rtt":140,"audio_level_in":0,"audio_level_out":11136,"mos":4.3798704303221765}
07-06 10:55:16.330 6376-7374/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:16.320Z","timestamp_ms":1499318716320,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":364,"total_packets_received":249,"total_packets_lost":0,"total_bytes_received":39840,"total_bytes_sent":58240,"jitter":1,"rtt":140,"audio_level_in":0,"audio_level_out":0,"mos":4.3798704303221765}
07-06 10:55:17.387 6376-7374/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:17.371Z","timestamp_ms":1499318717371,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":53,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":417,"total_packets_received":302,"total_packets_lost":0,"total_bytes_received":48320,"total_bytes_sent":66720,"jitter":2,"rtt":140,"audio_level_in":0,"audio_level_out":0,"mos":4.3798704303221765}
07-06 10:55:18.422 6376-7374/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:18.419Z","timestamp_ms":1499318718419,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":469,"total_packets_received":354,"total_packets_lost":0,"total_bytes_received":56640,"total_bytes_sent":75040,"jitter":2,"rtt":140,"audio_level_in":0,"audio_level_out":11136,"mos":4.3798704303221765}
07-06 10:55:18.458 6376-7374/com.app.dealer_app D/EventPublisher: Start publishing events to : https://eventgw.twilio.com/v3/EndpointMetrics
{"name":"call-metric-event","group":"call-quality-stats","timestamp":"2017-07-06T05:25:18.425Z","level":"INFO","private":false,"payload_type":"application/json","publisher":"twilio-voice-android","publisher_metadata":{"client_address":"FE80::C42:E9FF:FEAA:DFAB","os_name":"android","os_version":"6.0","device_model":"Motorola Nexus 6","device_vendor":"motorola","device_type":"Nexus 6","cpu_architecture":"armeabi-v7a"},"payload":[{"timestamp":"2017-07-06T05:25:09.039Z","timestamp_ms":1499318709039,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":0,"total_packets_received":0,"total_packets_lost":0,"total_bytes_received":0,"total_bytes_sent":0,"jitter":0,"rtt":0,"audio_level_in":0,"audio_level_out":0,"mos":4.437552191410176},{"timestamp":"2017-07-06T05:25:10.059Z","timestamp_ms":1499318710059,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":51,"total_packets_received":0,"total_packets_lost":0,"total_bytes_received":0,"total_bytes_sent":8160,"jitter":0,"rtt":0,"audio_level_in":128,"audio_level_out":0,"mos":4.437552191410176},{"timestamp":"2017-07-06T05:25:11.105Z","timestamp_ms":1499318711105,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":103,"total_packets_received":0,"total_packets_lost":0,"total_bytes_received":0,"total_bytes_sent":16480,"jitter":0,"rtt":0,"audio_level_in":128,"audio_level_out":0,"mos":4.437552191410176},{"timestamp":"2017-07-06T05:25:12.151Z","timestamp_ms":1499318712151,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":40,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":156,"total_packets_received":40,"total_packets_lost":0,"total_bytes_received":6400,"total_bytes_sent":24960,"jitter":2,"rtt":0,"audio_level_in":0,"audio_level_out":0,"mos":4.437552191410176},{"timestamp":"2017-07-06T05:25:13.194Z","timestamp_ms":1499318713194,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":209,"total_packets_received":92,"total_packets_lost":0,"total_bytes_received":14720,"total_bytes_sent":33440,"jitter":3,"rtt":0,"audio_level_in":0,"audio_level_out":0,"mos":4.437552191410176},{"timestamp":"2017-07-06T05:25:14.238Z","timestamp_ms":1499318714238,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":259,"total_packets_received":144,"total_packets_lost":0,"total_bytes_received":23040,"total_bytes_sent":41440,"jitter":2,"rtt":140,"audio_level_in":0,"audio_level_out":0,"mos":4.3798704303221765},{"timestamp":"2017-07-06T05:25:15.274Z","timestamp_ms":1499318715274,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":53,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":312,"total_packets_received":197,"total_packets_lost":0,"total_bytes_received":31520,"total_bytes_sent":49920,"jitter":1,"rtt":140,"audio_level_in":0,"audio_level_out":11136,"mos":4.3798704303221765},{"timestamp":"2017-07-06T05:25:16.320Z","timestamp_ms":1499318716320,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":364,"total_packets_received":249,"total_packets_lost":0,"total_bytes_received":39840,"total_bytes_sent":58240,"jitter":1,"rtt":140,"audio_level_in":0,"audio_level_out":0,"mos":4.3798704303221765},{"timestamp":"2017-07-06T05:25:17.371Z","timestamp_ms":1499318717371,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":53
07-06 10:55:19.475 6376-7374/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:19.466Z","timestamp_ms":1499318719466,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":53,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":521,"total_packets_received":407,"total_packets_lost":0,"total_bytes_received":65120,"total_bytes_sent":83360,"jitter":2,"rtt":152,"audio_level_in":0,"audio_level_out":0,"mos":4.357358664626177}
07-06 10:55:20.486 6376-7374/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:20.482Z","timestamp_ms":1499318720482,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":50,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":572,"total_packets_received":457,"total_packets_lost":0,"total_bytes_received":73120,"total_bytes_sent":91520,"jitter":2,"rtt":152,"audio_level_in":0,"audio_level_out":0,"mos":4.357358664626177}
07-06 10:55:20.559 6376-10420/com.app.dealer_app D/EventPublisher: Response: 200 - OK
07-06 10:55:21.508 6376-7374/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:21.505Z","timestamp_ms":1499318721505,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":623,"total_packets_received":509,"total_packets_lost":0,"total_bytes_received":81440,"total_bytes_sent":99680,"jitter":2,"rtt":152,"audio_level_in":0,"audio_level_out":11136,"mos":4.357358664626177}
07-06 10:55:22.243 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTED
07-06 10:55:22.244 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:55:22.543 6376-7374/com.app.dealer_app E/RTCMonitor: com.twilio.voice.impl.session.SessionException: pjsua_call_get_stream_stat(): Invalid value or argument (PJ_EINVAL)
07-06 10:55:22.753 6376-15125/com.app.dealer_app D/CallControlManager: received DISCONNECTED
07-06 10:55:22.754 6376-15125/com.app.dealer_app D/RTCMonitor: Stopped publishing
07-06 10:55:22.754 6376-15125/com.app.dealer_app D/InternalCall: Publishing event : disconnected-by-local
07-06 10:55:22.769 6376-15125/com.app.dealer_app D/EventPublisher: Start publishing events to : https://eventgw.twilio.com/v3/EndpointEvents
{"name":"disconnected-by-local","group":"connection","timestamp":"2017-07-06T05:25:22.756Z","level":"INFO","private":false,"payload_type":"application/json","publisher":"twilio-voice-android","publisher_metadata":{"client_address":"FE80::C42:E9FF:FEAA:DFAB","os_name":"android","os_version":"6.0","device_model":"Motorola Nexus 6","device_vendor":"motorola","device_type":"Nexus 6","cpu_architecture":"armeabi-v7a"},"payload":{"timestamp_ms":1499318722755,"call_sid":"CA452d6d9d5762bd13cac80907cfab9d48","sdk_version":"2.0.0-beta14","platform":"android","direction":"OUTGOING"}}
07-06 10:55:22.769 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect 111
07-06 10:55:22.878 6376-15112/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=19446, _sc=TwilioOutgoingCallActivity, _si=-8312459897050214420}]
07-06 10:55:22.909 6376-6376/com.app.dealer_app I/BeaconService: set scan intervals received
07-06 10:55:22.911 6376-6376/com.app.dealer_app I/CycledLeScanner: Adjusted nextScanStartTime to be Thu Jul 06 10:55:03 GMT+05:30 2017
07-06 10:55:22.912 6376-15112/com.app.dealer_app D/FA: Connected to remote service
07-06 10:55:23.758 6376-6437/com.app.dealer_app D/BluetoothAdapter: STATE_ON
07-06 10:55:23.762 6376-6792/com.app.dealer_app D/BluetoothLeScanner: onClientRegistered() - status=0 clientIf=5
07-06 10:55:23.770 6376-15127/com.app.dealer_app D/CallCommandHandlerImpl: Shutting down thread
07-06 10:55:24.542 6376-10616/com.app.dealer_app D/EventPublisher: Response: 200 - OK
76-15112/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=2612, _sc=HomeActivity, _si=-8312459897050214428}]
07-06 10:55:25.514 6376-6376/com.app.dealer_app I/BeaconService: set scan intervals received
07-06 10:55:25.663 6376-6376/com.app.dealer_app I/PJSIP: 10:55:25.663 os_core_unix.c !pjlib 2.5.1 for POSIX initialized
07-06 10:55:25.664 6376-6376/com.app.dealer_app I/PJSIP: 10:55:25.664 pjlib .select() I/O Queue created (0x871fc044)
07-06 10:55:25.664 6376-6376/com.app.dealer_app I/PJSIP: 10:55:25.664 sip_endpoint.c .Module "mod-msg-print" registered
07-06 10:55:25.664 6376-6376/com.app.dealer_app I/PJSIP: 10:55:25.664 pjsua_core.c .PJSUA state changed: NULL --> CREATED
07-06 10:55:25.683 6376-15475/com.app.dealer_app W/AudioTrack: AUDIO_OUTPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, output 48000 Hz
07-06 10:55:25.686 6376-15475/com.app.dealer_app W/AudioRecord: AUDIO_INPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, primary 48000 Hz
07-06 10:55:25.720 6376-6376/com.app.dealer_app D/CallControlManager: got connectivity broadcast: haveConn=true, reason=null, isFailover=false
07-06 10:55:25.720 6376-6376/com.app.dealer_app D/CallControlManager: NET CHANGE EVENT: connected=true, wasConnected=true, netTypeChanged=true
07-06 10:55:25.721 6376-6376/com.app.dealer_app D/CallControlManager: switched networks to type 0
07-06 10:55:25.985 6376-6437/com.app.dealer_app D/BluetoothAdapter: STATE_ON
07-06 10:55:26.142 6376-15475/com.app.dealer_app D/CallControlManager: onCallSDPCreated notification received
07-06 10:55:26.143 6376-15475/com.app.dealer_app D/CallControlManager: received CALLING
07-06 10:55:30.083 6376-15473/com.app.dealer_app D/CallControlManager: received EARLY
07-06 10:55:30.086 6376-15473/com.app.dealer_app D/CallControlManager: onTransactionState received CA13c7caf05f04729949446f35b6caa204
07-06 10:55:30.638 6376-15473/com.app.dealer_app D/CallControlManager: received CONNECTING
07-06 10:55:30.653 6376-15473/com.app.dealer_app D/CallControlManager: received CONFIRMED
07-06 10:55:30.656 6376-10773/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:30.655Z","timestamp_ms":1499318730655,"call_sid":"CA13c7caf05f04729949446f35b6caa204","sdk_version":"2.0.0-beta14","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":0,"total_packets_received":0,"total_packets_lost":0,"total_bytes_received":0,"total_bytes_sent":0,"jitter":0,"rtt":0,"audio_level_in":0,"audio_level_out":0,"mos":4.437552191410176}
07-06 10:55:30.656 6376-15473/com.app.dealer_app D/CallControlManager: onTransactionState received CA13c7caf05f04729949446f35b6caa204
07-06 10:55:31.690 6376-10773/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:31.688Z","timestamp_ms":1499318731688,"call_sid":"CA13c7caf05f04729949446f35b6caa204","sdk_version":"2.0.0-beta14","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":52,"total_packets_received":0,"total_packets_lost":0,"total_bytes_received":0,"total_bytes_sent":8320,"jitter":0,"rtt":0,"audio_level_in":256,"audio_level_out":0,"mos":4.437552191410176}
07-06 10:55:32.735 6376-10773/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:32.732Z","timestamp_ms":1499318732732,"call_sid":"CA13c7caf05f04729949446f35b6caa204","sdk_version":"2.0.0-beta14","packets_received":4,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":104,"total_packets_received":4,"total_packets_lost":0,"total_bytes_received":640,"total_bytes_sent":16640,"jitter":0,"rtt":0,"audio_level_in":128,"audio_level_out":8704,"mos":4.437552191410176}
07-06 10:55:33.774 6376-10773/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:33.771Z","timestamp_ms":1499318733771,"call_sid":"CA13c7caf05f04729949446f35b6caa204","sdk_version":"2.0.0-beta14","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":156,"total_packets_received":56,"total_packets_lost":0,"total_bytes_received":8960,"total_bytes_sent":24960,"jitter":2,"rtt":0,"audio_level_in":0,"audio_level_out":0,"mos":4.437552191410176}
07-06 10:55:34.793 6376-10773/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:34.791Z","timestamp_ms":1499318734791,"call_sid":"CA13c7caf05f04729949446f35b6caa204","sdk_version":"2.0.0-beta14","packets_received":51,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":207,"total_packets_received":107,"total_packets_lost":0,"total_bytes_received":17120,"total_bytes_sent":33120,"jitter":2,"rtt":0,"audio_level_in":0,"audio_level_out":0,"mos":4.437552191410176}
07-06 10:55:35.836 6376-10773/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:35.835Z","timestamp_ms":1499318735835,"call_sid":"CA13c7caf05f04729949446f35b6caa204","sdk_version":"2.0.0-beta14","packets_received":53,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":260,"total_packets_received":160,"total_packets_lost":0,"total_bytes_received":25600,"total_bytes_sent":41600,"jitter":2,"rtt":0,"audio_level_in":0,"audio_level_out":10240,"mos":4.437552191410176}
07-06 10:55:36.844 6376-10773/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:36.843Z","timestamp_ms":1499318736843,"call_sid":"CA13c7caf05f04729949446f35b6caa204","sdk_version":"2.0.0-beta14","packets_received":51,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":311,"total_packets_received":211,"total_packets_lost":0,"total_bytes_received":33760,"total_bytes_sent":49760,"jitter":3,"rtt":293,"audio_level_in":0,"audio_level_out":0,"mos":3.8962170648821766}
07-06 10:55:37.897 6376-10773/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:37.883Z","timestamp_ms":1499318737883,"call_sid":"CA13c7caf05f04729949446f35b6caa204","sdk_version":"2.0.0-beta14","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":363,"total_packets_received":263,"total_packets_lost":0,"total_bytes_received":42080,"total_bytes_sent":58080,"jitter":1,"rtt":293,"audio_level_in":0,"audio_level_out":0,"mos":3.8962170648821766}
07-06 10:55:38.918 6376-10773/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:38.917Z","timestamp_ms":1499318738917,"call_sid":"CA13c7caf05f04729949446f35b6caa204","sdk_version":"2.0.0-beta14","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":414,"total_packets_received":315,"total_packets_lost":0,"total_bytes_received":50400,"total_bytes_sent":66240,"jitter":1,"rtt":293,"audio_level_in":0,"audio_level_out":0,"mos":3.8962170648821766}
07-06 10:55:39.948 6376-10773/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:39.946Z","timestamp_ms":1499318739946,"call_sid":"CA13c7caf05f04729949446f35b6caa204","sdk_version":"2.0.0-beta14","packets_received":51,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":465,"total_packets_received":366,"total_packets_lost":0,"total_bytes_received":58560,"total_bytes_sent":74400,"jitter":2,"rtt":293,"audio_level_in":128,"audio_level_out":0,"mos":3.8962170648821766}
07-06 10:55:39.984 6376-10773/com.app.dealer_app D/EventPublisher: Start publishing events to : https://eventgw.twilio.com/v3/EndpointMetrics
{"name":"call-metric-event","group":"call-quality-stats","timestamp":"2017-07-06T05:25:39.950Z","level":"INFO","private":false,"payload_type":"application/json","publisher":"twilio-voice-android","publisher_metadata":{"client_address":"FE80::C42:E9FF:FEAA:DFAB","os_name":"android","os_version":"6.0","device_model":"Motorola Nexus 6","device_vendor":"motorola","device_type":"Nexus 6","cpu_architecture":"armeabi-v7a"},"payload":[{"timestamp":"2017-07-06T05:25:30.655Z","timestamp_ms":1499318730655,"call_sid":"CA13c7caf05f04729949446f35b6caa204","sdk_version":"2.0.0-beta14","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":0,"total_packets_received":0,"total_packets_lost":0,"total_bytes_received":0,"total_bytes_sent":0,"jitter":0,"rtt":0,"audio_level_in":0,"audio_level_out":0,"mos":4.437552191410176},{"timestamp":"2017-07-06T05:25:31.688Z","timestamp_ms":1499318731688,"call_sid":"CA13c7caf05f04729949446f35b6caa204","sdk_version":"2.0.0-beta14","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":52,"total_packets_received":0,"total_packets_lost":0,"total_bytes_received":0,"total_bytes_sent":8320,"jitter":0,"rtt":0,"audio_level_in":256,"audio_level_out":0,"mos":4.437552191410176},{"timestamp":"2017-07-06T05:25:32.732Z","timestamp_ms":1499318732732,"call_sid":"CA13c7caf05f04729949446f35b6caa204","sdk_version":"2.0.0-beta14","packets_received":4,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":104,"total_packets_received":4,"total_packets_lost":0,"total_bytes_received":640,"total_bytes_sent":16640,"jitter":0,"rtt":0,"audio_level_in":128,"audio_level_out":8704,"mos":4.437552191410176},{"timestamp":"2017-07-06T05:25:33.771Z","timestamp_ms":1499318733771,"call_sid":"CA13c7caf05f04729949446f35b6caa204","sdk_version":"2.0.0-beta14","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":156,"total_packets_received":56,"total_packets_lost":0,"total_bytes_received":8960,"total_bytes_sent":24960,"jitter":2,"rtt":0,"audio_level_in":0,"audio_level_out":0,"mos":4.437552191410176},{"timestamp":"2017-07-06T05:25:34.791Z","timestamp_ms":1499318734791,"call_sid":"CA13c7caf05f04729949446f35b6caa204","sdk_version":"2.0.0-beta14","packets_received":51,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":207,"total_packets_received":107,"total_packets_lost":0,"total_bytes_received":17120,"total_bytes_sent":33120,"jitter":2,"rtt":0,"audio_level_in":0,"audio_level_out":0,"mos":4.437552191410176},{"timestamp":"2017-07-06T05:25:35.835Z","timestamp_ms":1499318735835,"call_sid":"CA13c7caf05f04729949446f35b6caa204","sdk_version":"2.0.0-beta14","packets_received":53,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":260,"total_packets_received":160,"total_packets_lost":0,"total_bytes_received":25600,"total_bytes_sent":41600,"jitter":2,"rtt":0,"audio_level_in":0,"audio_level_out":10240,"mos":4.437552191410176},{"timestamp":"2017-07-06T05:25:36.843Z","timestamp_ms":1499318736843,"call_sid":"CA13c7caf05f04729949446f35b6caa204","sdk_version":"2.0.0-beta14","packets_received":51,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":311,"total_packets_received":211,"total_packets_lost":0,"total_bytes_received":33760,"total_bytes_sent":49760,"jitter":3,"rtt":293,"audio_level_in":0,"audio_level_out":0,"mos":3.8962170648821766},{"timestamp":"2017-07-06T05:25:37.883Z","timestamp_ms":1499318737883,"call_sid":"CA13c7caf05f04729949446f35b6caa204","sdk_version":"2.0.0-beta14","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":363,"total_packets_received":263,"total_packets_lost":0,"total_bytes_received":42080,"total_bytes_sent":58080,"jitter":1,"rtt":293,"audio_level_in":0,"audio_level_out":0,"mos":3.8962170648821766},{"timestamp":"2017-07-06T05:25:38.917Z","timestamp_ms":1499318738917,"call_sid":"CA13c7caf05f04729949446f35b6caa204","sdk_version":"2.0.0-beta14","packets_received"
07-06 10:55:41.019 6376-10773/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:41.016Z","timestamp_ms":1499318741016,"call_sid":"CA13c7caf05f04729949446f35b6caa204","sdk_version":"2.0.0-beta14","packets_received":53,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":518,"total_packets_received":419,"total_packets_lost":0,"total_bytes_received":67040,"total_bytes_sent":82880,"jitter":1,"rtt":293,"audio_level_in":640,"audio_level_out":0,"mos":3.8962170648821766}
07-06 10:55:41.850 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTED
07-06 10:55:41.850 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:55:41.919 6376-6438/com.app.dealer_app D/EventPublisher: Response: 200 - OK
07-06 10:55:42.040 6376-10773/com.app.dealer_app E/RTCMonitor: com.twilio.voice.impl.session.SessionException: pjsua_call_get_stream_stat(): Invalid value or argument (PJ_EINVAL)
07-06 10:55:42.240 6376-15473/com.app.dealer_app D/CallControlManager: received DISCONNECTED
07-06 10:55:42.240 6376-15473/com.app.dealer_app D/RTCMonitor: Stopped publishing
07-06 10:55:42.240 6376-15473/com.app.dealer_app D/InternalCall: Publishing event : disconnected-by-local
07-06 10:55:42.256 6376-15473/com.app.dealer_app D/EventPublisher: Start publishing events to : https://eventgw.twilio.com/v3/EndpointEvents
{"name":"disconnected-by-local","group":"connection","timestamp":"2017-07-06T05:25:42.242Z","level":"INFO","private":false,"payload_type":"application/json","publisher":"twilio-voice-android","publisher_metadata":{"client_address":"FE80::C42:E9FF:FEAA:DFAB","os_name":"android","os_version":"6.0","device_model":"Motorola Nexus 6","device_vendor":"motorola","device_type":"Nexus 6","cpu_architecture":"armeabi-v7a"},"payload":{"timestamp_ms":1499318742241,"call_sid":"CA13c7caf05f04729949446f35b6caa204","sdk_version":"2.0.0-beta14","platform":"android","direction":"OUTGOING"}}
07-06 10:55:42.256 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect 111
07-06 10:55:42.340 6376-15112/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=16654, _sc=TwilioOutgoingCallActivity, _si=-8312459897050214419}]
07-06 10:55:42.376 6376-6376/com.app.dealer_app I/BeaconService: set scan intervals received
07-06 10:55:42.377 6376-6376/com.app.dealer_app I/CycledLeScanner: Adjusted nextScanStartTime to be Thu Jul 06 10:55:25 GMT+05:30 2017
07-06 10:55:42.378 6376-15112/com.app.dealer_app D/FA: Connected to remote service
07-06 10:55:43.000 6376-6437/com.app.dealer_app D/BluetoothAdapter: STATE_ON
07-06 10:55:43.003 6376-6389/com.app.dealer_app D/BluetoothLeScanner: onClientRegistered() - status=0 clientIf=5
07-06 10:55:43.257 6376-15475/com.app.dealer_app D/CallCommandHandlerImpl: Shutting down thread
07-06 10:55:44.373 6376-10420/com.app.dealer_app D/EventPublisher: Response: 200 - OK
07-06 10:55:45.533 6376-15112/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=3170, _sc=HomeActivity, _si=-8312459897050214428}]
07-06 10:55:45.543 6376-6376/com.app.dealer_app I/BeaconService: set scan intervals received
07-06 10:55:45.715 6376-6376/com.app.dealer_app I/PJSIP: 10:55:45.715 os_core_unix.c !pjlib 2.5.1 for POSIX initialized
07-06 10:55:45.717 6376-6376/com.app.dealer_app I/PJSIP: 10:55:45.717 pjlib .select() I/O Queue created (0x88abd044)
07-06 10:55:45.717 6376-6376/com.app.dealer_app I/PJSIP: 10:55:45.717 sip_endpoint.c .Module "mod-msg-print" registered
07-06 10:55:45.717 6376-6376/com.app.dealer_app I/PJSIP: 10:55:45.717 pjsua_core.c .PJSUA state changed: NULL --> CREATED
07-06 10:55:45.728 6376-15797/com.app.dealer_app W/AudioTrack: AUDIO_OUTPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, output 48000 Hz
07-06 10:55:45.730 6376-15797/com.app.dealer_app W/AudioRecord: AUDIO_INPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, primary 48000 Hz
07-06 10:55:45.735 6376-15797/com.app.dealer_app E/AudioRecord: start() status -38
07-06 10:55:45.785 6376-6437/com.app.dealer_app D/BluetoothAdapter: STATE_ON
07-06 10:55:45.786 6376-6376/com.app.dealer_app D/CallControlManager: got connectivity broadcast: haveConn=true, reason=null, isFailover=false
07-06 10:55:45.787 6376-6376/com.app.dealer_app D/CallControlManager: NET CHANGE EVENT: connected=true, wasConnected=true, netTypeChanged=true
07-06 10:55:45.787 6376-6376/com.app.dealer_app D/CallControlManager: switched networks to type 0
07-06 10:55:45.959 6376-15797/com.app.dealer_app D/CallControlManager: onCallSDPCreated notification received
07-06 10:55:45.961 6376-15797/com.app.dealer_app D/CallControlManager: received CALLING
376-15795/com.app.dealer_app D/CallControlManager: received EARLY
07-06 10:55:49.564 6376-15795/com.app.dealer_app D/CallControlManager: onTransactionState received CA5fbfd91fa35cb2ce0843bd01916b1d9e
07-06 10:55:49.914 6376-15795/com.app.dealer_app D/CallControlManager: received CONNECTING
07-06 10:55:49.918 6376-15795/com.app.dealer_app D/CallControlManager: received CONFIRMED
07-06 10:55:49.919 6376-15795/com.app.dealer_app D/CallControlManager: onTransactionState received CA5fbfd91fa35cb2ce0843bd01916b1d9e
07-06 10:55:49.928 6376-7374/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:49.922Z","timestamp_ms":1499318749922,"call_sid":"CA5fbfd91fa35cb2ce0843bd01916b1d9e","sdk_version":"2.0.0-beta14","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":0,"total_packets_received":0,"total_packets_lost":0,"total_bytes_received":0,"total_bytes_sent":0,"jitter":0,"rtt":0,"audio_level_in":0,"audio_level_out":0,"mos":4.437552191410176}
07-06 10:55:50.981 6376-7374/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:50.978Z","timestamp_ms":1499318750978,"call_sid":"CA5fbfd91fa35cb2ce0843bd01916b1d9e","sdk_version":"2.0.0-beta14","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":50,"total_packets_received":0,"total_packets_lost":0,"total_bytes_received":0,"total_bytes_sent":8000,"jitter":0,"rtt":0,"audio_level_in":0,"audio_level_out":0,"mos":4.437552191410176}
07-06 10:55:52.035 6376-7374/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:52.033Z","timestamp_ms":1499318752033,"call_sid":"CA5fbfd91fa35cb2ce0843bd01916b1d9e","sdk_version":"2.0.0-beta14","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":104,"total_packets_received":0,"total_packets_lost":0,"total_bytes_received":0,"total_bytes_sent":16640,"jitter":0,"rtt":0,"audio_level_in":0,"audio_level_out":0,"mos":4.437552191410176}
07-06 10:55:53.083 6376-7374/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:53.080Z","timestamp_ms":1499318753080,"call_sid":"CA5fbfd91fa35cb2ce0843bd01916b1d9e","sdk_version":"2.0.0-beta14","packets_received":46,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":156,"total_packets_received":46,"total_packets_lost":0,"total_bytes_received":7360,"total_bytes_sent":24960,"jitter":4,"rtt":0,"audio_level_in":0,"audio_level_out":0,"mos":4.437552191410176}
07-06 10:55:54.108 6376-7374/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-07-06T05:25:54.106Z","timestamp_ms":1499318754106,"call_sid":"CA5fbfd91fa35cb2ce0843bd01916b1d9e","sdk_version":"2.0.0-beta14","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":208,"total_packets_received":98,"total_packets_lost":0,"total_bytes_received":15680,"total_bytes_sent":33280,"jitter":9,"rtt":0,"audio_level_in":0,"audio_level_out":0,"mos":4.437552191410176}
07-06 10:55:54.183 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTED
07-06 10:55:54.184 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:55:54.694 6376-15795/com.app.dealer_app D/CallControlManager: received DISCONNECTED
07-06 10:55:54.694 6376-15795/com.app.dealer_app D/RTCMonitor: Stopped publishing
07-06 10:55:54.694 6376-15795/com.app.dealer_app D/InternalCall: Publishing event : disconnected-by-local
07-06 10:55:54.694 6376-7374/com.app.dealer_app D/RTCMonitor: java.lang.InterruptedException
07-06 10:55:54.710 6376-15795/com.app.dealer_app D/EventPublisher: Start publishing events to : https://eventgw.twilio.com/v3/EndpointEvents
{"name":"disconnected-by-local","group":"connection","timestamp":"2017-07-06T05:25:54.696Z","level":"INFO","private":false,"payload_type":"application/json","publisher":"twilio-voice-android","publisher_metadata":{"client_address":"FE80::C42:E9FF:FEAA:DFAB","os_name":"android","os_version":"6.0","device_model":"Motorola Nexus 6","device_vendor":"motorola","device_type":"Nexus 6","cpu_architecture":"armeabi-v7a"},"payload":{"timestamp_ms":1499318754695,"call_sid":"CA5fbfd91fa35cb2ce0843bd01916b1d9e","sdk_version":"2.0.0-beta14","platform":"android","direction":"OUTGOING"}}
07-06 10:55:54.711 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect 111
07-06 10:55:54.825 6376-15112/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=9085, _sc=TwilioOutgoingCallActivity, _si=-8312459897050214418}]
07-06 10:55:54.863 6376-6376/com.app.dealer_app I/BeaconService: set scan intervals received
07-06 10:55:54.865 6376-6376/com.app.dealer_app I/CycledLeScanner: Adjusted nextScanStartTime to be Thu Jul 06 10:55:45 GMT+05:30 2017
07-06 10:55:54.866 6376-15112/com.app.dealer_app D/FA: Connected to remote service
07-06 10:55:55.711 6376-15797/com.app.dealer_app D/CallCommandHandlerImpl: Shutting down thread
07-06 10:55:56.392 6376-10616/com.app.dealer_app D/EventPublisher: Response: 200 - OK
07-06 10:55:57.171 6376-6437/com.app.dealer_app D/BluetoothAdapter: STATE_ON
07-06 10:55:57.175 6376-6389/com.app.dealer_app D/BluetoothLeScanner: onClientRegistered() - status=0 clientIf=5
07-06 10:55:58.821 6376-15112/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=3988, _sc=HomeActivity, _si=-8312459897050214428}]
07-06 10:55:58.827 6376-6376/com.app.dealer_app I/BeaconService: set scan intervals received
07-06 10:55:58.981 6376-6376/com.app.dealer_app I/PJSIP: 10:55:58.981 os_core_unix.c !pjlib 2.5.1 for POSIX initialized
07-06 10:55:58.983 6376-6376/com.app.dealer_app I/PJSIP: 10:55:58.983 pjlib .select() I/O Queue created (0x871fc044)
07-06 10:55:58.983 6376-6376/com.app.dealer_app I/PJSIP: 10:55:58.983 sip_endpoint.c .Module "mod-msg-print" registered
07-06 10:55:58.983 6376-6376/com.app.dealer_app I/PJSIP: 10:55:58.983 pjsua_core.c .PJSUA state changed: NULL --> CREATED
07-06 10:55:58.995 6376-16025/com.app.dealer_app W/AudioTrack: AUDIO_OUTPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, output 48000 Hz
07-06 10:55:58.998 6376-16025/com.app.dealer_app W/AudioRecord: AUDIO_INPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, primary 48000 Hz
07-06 10:55:59.037 6376-6376/com.app.dealer_app D/CallControlManager: got connectivity broadcast: haveConn=true, reason=null, isFailover=false
07-06 10:55:59.037 6376-6376/com.app.dealer_app D/CallControlManager: NET CHANGE EVENT: connected=true, wasConnected=true, netTypeChanged=true
07-06 10:55:59.038 6376-6376/com.app.dealer_app D/CallControlManager: switched networks to type 0
07-06 10:55:59.385 6376-6437/com.app.dealer_app D/BluetoothAdapter: STATE_ON
07-06 10:55:59.435 6376-16025/com.app.dealer_app D/CallControlManager: onCallSDPCreated notification received
07-06 10:55:59.437 6376-16025/com.app.dealer_app D/CallControlManager: received CALLING
07-06 10:56:00.755 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:56:00.755 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:56:02.633 6376-16023/com.app.dealer_app D/CallControlManager: received EARLY
07-06 10:56:02.636 6376-16023/com.app.dealer_app D/CallControlManager: onTransactionState received CA7eb03c0ae4ccbc3416ef946f2910b819
07-06 10:56:02.968 6376-16023/com.app.dealer_app D/CallControlManager: received DISCONNECTED
07-06 10:56:02.969 6376-16023/com.app.dealer_app D/InternalCall: Publishing event : disconnected-by-local
07-06 10:56:02.987 6376-16023/com.app.dealer_app D/EventPublisher: Start publishing events to : https://eventgw.twilio.com/v3/EndpointEvents
{"name":"disconnected-by-local","group":"connection","timestamp":"2017-07-06T05:26:02.972Z","level":"INFO","private":false,"payload_type":"application/json","publisher":"twilio-voice-android","publisher_metadata":{"client_address":"FE80::C42:E9FF:FEAA:DFAB","os_name":"android","os_version":"6.0","device_model":"Motorola Nexus 6","device_vendor":"motorola","device_type":"Nexus 6","cpu_architecture":"armeabi-v7a"},"payload":{"timestamp_ms":1499318762969,"call_sid":"CA7eb03c0ae4ccbc3416ef946f2910b819","sdk_version":"2.0.0-beta14","platform":"android","direction":"OUTGOING"}}
07-06 10:56:02.987 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect 111
07-06 10:56:03.019 6376-15112/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=4018, _sc=TwilioOutgoingCallActivity, _si=-8312459897050214417}]
07-06 10:56:03.043 6376-6376/com.app.dealer_app I/BeaconService: set scan intervals received
07-06 10:56:03.045 6376-6376/com.app.dealer_app I/CycledLeScanner: Adjusted nextScanStartTime to be Thu Jul 06 10:55:59 GMT+05:30 2017
07-06 10:56:03.395 6376-6437/com.app.dealer_app D/BluetoothAdapter: STATE_ON
07-06 10:56:03.398 6376-6388/com.app.dealer_app D/BluetoothLeScanner: onClientRegistered() - status=0 clientIf=5
07-06 10:56:03.988 6376-16025/com.app.dealer_app D/CallCommandHandlerImpl: Shutting down thread
07-06 10:56:04.481 6376-6438/com.app.dealer_app D/EventPublisher: Response: 200 - OK
07-06 10:56:06.196 6376-15112/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=3169, _sc=HomeActivity, _si=-8312459897050214428}]
07-06 10:56:06.210 6376-6376/com.app.dealer_app I/BeaconService: set scan intervals received
07-06 10:56:06.359 6376-6376/com.app.dealer_app I/PJSIP: 10:56:06.359 os_core_unix.c !pjlib 2.5.1 for POSIX initialized
07-06 10:56:06.361 6376-6376/com.app.dealer_app I/PJSIP: 10:56:06.361 pjlib .select() I/O Queue created (0x88abd044)
07-06 10:56:06.361 6376-6376/com.app.dealer_app I/PJSIP: 10:56:06.361 sip_endpoint.c .Module "mod-msg-print" registered
07-06 10:56:06.361 6376-6376/com.app.dealer_app I/PJSIP: 10:56:06.361 pjsua_core.c .PJSUA state changed: NULL --> CREATED
07-06 10:56:06.372 6376-16161/com.app.dealer_app W/AudioTrack: AUDIO_OUTPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, output 48000 Hz
07-06 10:56:06.377 6376-16161/com.app.dealer_app W/AudioRecord: AUDIO_INPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, primary 48000 Hz
07-06 10:56:06.413 6376-6376/com.app.dealer_app D/CallControlManager: got connectivity broadcast: haveConn=true, reason=null, isFailover=false
07-06 10:56:06.413 6376-6376/com.app.dealer_app D/CallControlManager: NET CHANGE EVENT: connected=true, wasConnected=true, netTypeChanged=true
07-06 10:56:06.414 6376-6376/com.app.dealer_app D/CallControlManager: switched networks to type 0
07-06 10:56:06.663 6376-6437/com.app.dealer_app D/BluetoothAdapter: STATE_ON
07-06 10:56:06.853 6376-16161/com.app.dealer_app D/CallControlManager: onCallSDPCreated notification received
07-06 10:56:06.855 6376-16161/com.app.dealer_app D/CallControlManager: received CALLING
07-06 10:56:07.842 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:56:07.843 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:56:11.429 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:56:11.429 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:56:13.645 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:56:13.645 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:56:15.027 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:56:15.028 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:56:17.153 6376-16159/com.app.dealer_app D/CallControlManager: received EARLY
07-06 10:56:17.157 6376-16159/com.app.dealer_app D/CallControlManager: onTransactionState received CAd8caf59f183715d060fd41c28bcb82c0
07-06 10:56:17.160 6376-16159/com.app.dealer_app D/CallControlManager: received CONNECTING
07-06 10:56:17.162 6376-16159/com.app.dealer_app D/CallControlManager: received CONFIRMED
07-06 10:56:17.164 6376-16159/com.app.dealer_app D/CallControlManager: onTransactionState received CAd8caf59f183715d060fd41c28bcb82c0
07-06 10:56:17.629 6376-6376/com.app.dealer_app D/Call: Calling disconnect CONNECTING
07-06 10:56:17.629 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect
07-06 10:56:17.690 6376-16159/com.app.dealer_app D/CallControlManager: received DISCONNECTED
07-06 10:56:17.690 6376-16159/com.app.dealer_app D/InternalCall: Publishing event : disconnected-by-local
07-06 10:56:17.713 6376-16159/com.app.dealer_app D/EventPublisher: Start publishing events to : https://eventgw.twilio.com/v3/EndpointEvents
{"name":"disconnected-by-local","group":"connection","timestamp":"2017-07-06T05:26:17.692Z","level":"INFO","private":false,"payload_type":"application/json","publisher":"twilio-voice-android","publisher_metadata":{"client_address":"FE80::C42:E9FF:FEAA:DFAB","os_name":"android","os_version":"6.0","device_model":"Motorola Nexus 6","device_vendor":"motorola","device_type":"Nexus 6","cpu_architecture":"armeabi-v7a"},"payload":{"timestamp_ms":1499318777690,"call_sid":"CAd8caf59f183715d060fd41c28bcb82c0","sdk_version":"2.0.0-beta14","platform":"android","direction":"OUTGOING"}}
07-06 10:56:17.715 6376-6376/com.app.dealer_app I/TwilioOutgoingCallActivity: !!!!! disconnect 111
07-06 10:56:17.749 6376-15112/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=11366, _sc=TwilioOutgoingCallActivity, _si=-8312459897050214416}]
07-06 10:56:17.785 6376-6376/com.app.dealer_app I/BeaconService: set scan intervals received
07-06 10:56:17.787 6376-6376/com.app.dealer_app I/CycledLeScanner: Adjusted nextScanStartTime to be Thu Jul 06 10:56:06 GMT+05:30 2017
07-06 10:56:17.788 6376-15112/com.app.dealer_app D/FA: Connected to remote service
07-06 10:56:18.677 6376-6437/com.app.dealer_app D/BluetoothAdapter: STATE_ON
07-06 10:56:18.680 6376-6388/com.app.dealer_app D/BluetoothLeScanner: onClientRegistered() - status=0 clientIf=5
07-06 10:56:18.715 6376-16161/com.app.dealer_app D/CallCommandHandlerImpl: Shutting down thread
07-06 10:56:19.125 6376-10773/com.app.dealer_app D/EventPublisher: Response: 200 - OK

Please provide reason for this and solution as sson as possible.

Thanks

"Transport Error" message in CallException on WiFi

After calling CallInvite.accept, I'm getting the Call.Listener.onDisconnected callback with a CallException with a "transport error" message.
I can reproduce this error reliably on WiFi. (I had originally thought it was only on my office WiFi network, but I was wrong.)
This always happens on WiFi and never happens on LTE for me.

P.S. on sdk version 2.0.0-beta8

Logs D/EventPublisher: Start publishing events to : https://eventgw.twilio.com/v3/EndpointEvents 1T21:36:00.779Z","level":"INFO","private":false,"payload_type":"application\/json","publisher":"twilio-voice-android","publisher_metadata":{"client_address":"FE80::26DA:9BFF:FEEA:B0EC","os_name":"android","os_version":"6.0","device_model":"Motorola XT1575","device_vendor":"motorola","device_type":"XT1575","cpu_architecture":"arm64-v8a"},"payload":{"timestamp_ms":1496352960778,"call_sid":"CAf9a620696f313afd870d496fa0544c59","sdk_version":"2.0.0-beta8","platform":"android","direction":"INCOMING"}} I/PJSIP: 14:36:00.855 os_core_unix.c !pjlib 2.5.1 for POSIX initialized I/PJSIP: 14:36:00.965 pjlib .select() I/O Queue created (0x7f93e22090) I/PJSIP: 14:36:00.969 sip_endpoint.c .Module "mod-msg-print" registered I/PJSIP: 14:36:00.969 pjsua_core.c .PJSUA state changed: NULL --> CREATED D/EventPublisher: Start publishing events to : https://eventgw.twilio.com/v3/EndpointEvents 2017-06-01T21:36:01.217Z","level":"INFO","private":false,"payload_type":"application\/json","publisher":"twilio-voice-android","publisher_metadata":{"client_address":"FE80::26DA:9BFF:FEEA:B0EC","os_name":"android","os_version":"6.0","device_model":"Motorola XT1575","device_vendor":"motorola","device_type":"XT1575","cpu_architecture":"arm64-v8a"},"payload":{"timestamp_ms":1496352961216,"call_sid":"CAf9a620696f313afd870d496fa0544c59","sdk_version":"2.0.0-beta8","platform":"android","direction":"INCOMING"}} D/CallControlManager: got connectivity broadcast: haveConn=true, reason=null, isFailover=false W/AudioTrack: AUDIO_OUTPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, output 48000 Hz D/CallControlManager: got wifi SSID: "IFTTT Team" D/CallControlManager: NET CHANGE EVENT: connected=true, wasConnected=true, netTypeChanged=true W/AudioRecord: AUDIO_INPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, primary 48000 Hz D/EventPublisher: Response: 200 - OK D/CallControlManager: onCallSDPCreated notification received D/CallControlManager: received CALLING D/EventPublisher: Response: 200 - OK E/CallControlManager: received transport error; status: -1813708632 D/CallControlManager: switched networks to type 1 D/CallControlManager: received DISCONNECTED

Issue about incoming call

I have some questions about incoming call. In the sample code, if the payload data in FCM not null, the data will be passed to Voice SDK to handle incoming call, like following :

// Check if message contains a data payload.
    if (remoteMessage.getData().size() > 0) {
        Map<String, String> data = remoteMessage.getData();
        final int notificationId = (int) System.currentTimeMillis();
        Voice.handleMessage(this, data, new MessageListener() {
            @Override
            public void onCallInvite(CallInvite callInvite) {
                VoiceFirebaseMessagingService.this.notify(callInvite, notificationId);
                VoiceFirebaseMessagingService.this.sendCallInviteToActivity(callInvite, notificationId);
            }

            @Override
            public void onError(MessageException messageException) {
                Log.e(TAG, messageException.getLocalizedMessage());
            }
        });
    }
}

But in our app, we also use FCM to send our own payload data. So if there is any special data (key/value) in the FCM message payload data, I can use it to check if the message is coming from Twilio?

I debuged the message from twilio it is like following :
Bundle data: {twi_account_sid=AC6xxxxxxxxxxxx, twi_to=client:1211111111, twi_message_type=twilio.voice.cancel, twi_call_sid=CAxxxxxxxxxxxxxxxxxx, twi_message_id=FCMf7ff473cbdxxxxxxxxxxxxxxx, twi_from=+19298889899}
Can I use key twi_account_sid to check if the message is come from twilio?

The second question is that when I answer an incoming call, I will received a invite canceld message, is it a bug ? In this case, I do not know if the call is canceled by caller.

following is the log when I answer an incoming call

05-03 15:36:04.395 32688-1268/? D/FBMessagingService: Received onMessageReceived()
05-03 15:36:04.395 32688-1268/? D/FBMessagingService: Bundle data: {twi_account_sid=ACxxxxxxxxxxxxxxx, twi_to=client:12xxxxxxxxx, twi_bridge_token=eyJraWQiOiJKd2VTM0JpZi0xIiwiY3R5IjoidHdpbGlvLWZwYTt2PTEiLCJlbmMiOiJBMjU2R0NNIiwiYWxnIjoiZGlyIn0..kFfggiZl0YG3AAt1.iBIM_oqFJaRLixZPhPxqIr5kJ96oMtyQjWTw7ZzlMrwlqARsrdE8TTvvuRWEb2IftY7pQjrjeA3xVlOWeZrAWxr8QUuvCFvuYGhjz2GyNQVWpvd38wW0PkCmVJlCmwjz7V4NqdbbzebvI7Z9lqCGMLH0xrziOw4ehoJ8VB09-j85ETzBE6HEc5X7FNRoGUcrQkmdriMI9uYfMcGZzvtcwhRdcypRqz-WzZiEfL-NDUHfXQdmthhgyxEuLuHZksxJsg3r4hEz8ZJwO7-r903unPC4ry-VSQjD5U-wTCmAlqlhvePwpbdpRTinujxvrJErNWKPmx2wkIQpLyHSP1e7wXHTF8rJbMja_GF9zqTUfyEFi2YcG7yirdeVLu-y6NJ3QZaILwwokwRFGPN7OalukroUVSqq75vvkJE-3HkWfjJLEWjE0chsmzgXqNmTRCW7PdRS2rDluekhsvlSnc5jXnqJ0H8VHmI7yByNNrKo50COugo2CiDKLv9A9ylppMwP_EyijD9PQYiIj7qkDkJaWcJY2ej_QLUfSunvd6TCyQFEndbtIbzjzJnLK4oHTzJdGc6x49U0xZsnKaPLQgb2BltZj9U3Mx55nGHPxSohdaKR4n7Z8-f8jh5E9daXcTh7h-wXlMwSMzIPXlattCTJaw.yj58cOzFQ-YZkRbrnoX3eg, twi_message_type=twilio.voice.call, twi_call_sid=CA022c1840165507765f48dae0ebb569d8, twi_message_id=FCMd39cf3213cd441d49e69d227747a0f8d, twi_from=+1929xxxxxxxxxxxx}
05-03 15:36:04.395 32688-1268/? D/FBMessagingService: From: 383106764190
05-03 15:36:40.865 32688-1298/? D/FBMessagingService: Received onMessageReceived()
05-03 15:36:40.865 32688-1298/? D/FBMessagingService: Bundle data: {twi_account_sid=ACxxxxxxxxxxxxxxxx, twi_to=client:12xxxxxxxxxxxx, twi_message_type=twilio.voice.cancel, twi_call_sid=CA022c1840165507765f48dae0ebb569d8, twi_message_id=FCMf7ff473cbd674704a1e9a5c84528aa70, twi_from=+1929xxxxxxxxx}
05-03 15:36:40.865 32688-1298/? D/FBMessagingService: From: 383106764190

Invalid Access Token Issue (Beta 10)

Hello,

We're trying to upgrade to use the Android Voice Client SDK (2.0.0-BETA10), and we're running into issues registering the device for push notifications with FCM.

When we register the Voice SDK, we get an error back saying Error 20101 Invalid Access Token, TNException : Couldn't create registration.

When I look at the token that is generated by our server, it seems to be valid & signed correctly.

I can provide an example of a token we generate on our server side if it helps.

Missing info with the Twilio number that the caller dialled

When the app receives a call, is there a way to see what is the Twilio number that the caller dialled which eventually got connected by the server <Dial> TwiML?

from => Twilio number of the subaccount => to

Using the <Dial> TwiML I am only able to specify the callerId to either the caller number or the Twilio number the caller dialled.
In my App I wish to see both, because I use the caller number to lookup their name inside the phone contacts and I would like to present the incoming call price which is a function of the Twilio number the caller dialled.

No incoming calls in voice-quickstart-android

There is no error in logs - I am getting successfully registered as well.

Have also set up the push credential sid in my php backend - still I am not able to receive calls in this quickstart app

FCM intsead of GCM

We all know that GCM has been deprecated, so any documentation to use FCM with voice-calling.
because there are some methods in SDK that support GCM message checking via a bundle, and in FCM there is no bundle functionality.
provide me some info that will I use FCM or not!
if yes then provide the alternative of that functions.
Reply me ASAP.

API for waiting/busy call

Assuming I've got 2 android client. I call from client A to client B via Voice#call(). Client B currently receives CallInvite via FCM. So far so good. But client B currently has call in progress, so I need to issue CallInvite#reject method. But is there an API to notify client A that client B is busy (sound a busy sound?)
E.g. add params to CallInivte#reject method?

Call Error: 31001, TwiML application not found

I am trying to use the voice-quickstart-android and done everything as suggested. But still not able to connect the call. It is giving me error Call Error: 31001, TwiML application not found.

06-13 12:04:51.626 19481-19481/com.twilio.voice.quickstart V/SettingsInterface: from settings cache , name = sound_effects_enabled , value = 0
06-13 12:04:51.628 19481-21377/com.twilio.voice.quickstart V/AudioTrack: set(): streamType 0, sampleRate 16000, format 0x1, channelMask 0x1, frameCount 0, flags #4, notificationFrames 0, sessionId 86, transferType 0
06-13 12:04:51.628 19481-21377/com.twilio.voice.quickstart V/AudioTrack: set() streamType 0 frameCount 0 flags 0004
06-13 12:04:51.628 19481-21377/com.twilio.voice.quickstart D/AudioTrack: audiotrack 0x557a7dd910 set Type 0, rate 16000, fmt 1, chn 1, fcnt 0, flags 0004
06-13 12:04:51.630 19481-19481/com.twilio.voice.quickstart D/chenjian2: heightMeasureSpec :: 1073743104
06-13 12:04:51.632 19481-21377/com.twilio.voice.quickstart W/AudioTrack: AUDIO_OUTPUT_FLAG_FAST denied by client
06-13 12:04:51.632 19481-21377/com.twilio.voice.quickstart V/AudioTrack: createTrack_l() output 2 afLatency 139
06-13 12:04:51.632 19481-21377/com.twilio.voice.quickstart V/AudioTrack: afFrameCount=1024, minBufCount=6, afSampleRate=44100, afLatency=139
06-13 12:04:51.632 19481-21377/com.twilio.voice.quickstart V/AudioTrack: minFrameCount: 2229, afFrameCount=1024, minBufCount=6, sampleRate=16000, afSampleRate=44100, afLatency=139
06-13 12:04:51.632 19481-19481/com.twilio.voice.quickstart D/ColorDrawable: Color = -1118482, canvas = android.view.GLES20RecordingCanvas@310bc9f5, mTintMode = SRC_IN, mTint = null, ColorDrawable = android.graphics.drawable.ColorDrawable@208f3b2c
06-13 12:04:51.632 19481-19481/com.twilio.voice.quickstart D/ColorDrawable: Color = -6092530, canvas = android.view.GLES20RecordingCanvas@220bd38a, mTintMode = SRC_IN, mTint = null, ColorDrawable = android.graphics.drawable.ColorDrawable@15589fef
06-13 12:04:51.636 19481-21377/com.twilio.voice.quickstart D/AudioTrackCenter: addTrack, trackId:0x7f5cac7000, frameCount:2229, sampleRate:16000, trackPtr:0x557a7dd910
06-13 12:04:51.636 19481-21377/com.twilio.voice.quickstart D/AudioTrackCenter: mAfSampleRate 44100, sampleRate 16000, AfFrameCount 1024 , mAfSampleRate 44100, frameCount 2229
06-13 12:04:51.637 19481-21377/com.twilio.voice.quickstart D/AudioRecord: openRecord_l
06-13 12:04:51.637 19481-21377/com.twilio.voice.quickstart W/AudioRecord: AUDIO_INPUT_FLAG_FAST denied by client
06-13 12:04:51.668 19481-21377/com.twilio.voice.quickstart D/AudioRecord: return status 0
06-13 12:04:51.670 19481-24187/com.twilio.voice.quickstart V/AudioTrack: obtainBuffer(743) returned 2229 = 743 + 1486 err 0
06-13 12:04:51.670 19481-24187/com.twilio.voice.quickstart V/AudioTrack: obtainBuffer(740) returned 2226 = 740 + 1486 err 0
06-13 12:04:51.670 19481-24187/com.twilio.voice.quickstart V/AudioTrack: obtainBuffer(737) returned 2223 = 737 + 1486 err 0
06-13 12:04:51.670 19481-24187/com.twilio.voice.quickstart V/AudioTrack: obtainBuffer(417) returned 1903 = 417 + 1486 err 0
06-13 12:04:51.670 19481-24187/com.twilio.voice.quickstart V/AudioTrack: obtainBuffer(97) returned 1583 = 97 + 1486 err 0
06-13 12:04:51.670 19481-24187/com.twilio.voice.quickstart V/AudioTrack: obtainBuffer(743) returned 1486 = 743 + 743 err 0
06-13 12:04:51.670 19481-24187/com.twilio.voice.quickstart V/AudioTrack: obtainBuffer(520) returned 1263 = 520 + 743 err 0
06-13 12:04:51.670 19481-24187/com.twilio.voice.quickstart V/AudioTrack: obtainBuffer(200) returned 943 = 200 + 743 err 0
06-13 12:04:51.670 19481-24187/com.twilio.voice.quickstart V/AudioTrack: obtainBuffer(743) returned 743 = 743 + 0 err 0
06-13 12:04:51.670 19481-24187/com.twilio.voice.quickstart V/AudioTrack: obtainBuffer(623) returned 623 = 623 + 0 err 0
06-13 12:04:51.670 19481-24187/com.twilio.voice.quickstart V/AudioTrack: obtainBuffer(303) returned 303 = 303 + 0 err 0
06-13 12:04:51.670 19481-21377/com.twilio.voice.quickstart D/libc-netbsd: [getaddrinfo]: hostname=localhost; servname=(null); cache_mode=(null), netid=0; mark=0
06-13 12:04:51.670 19481-21377/com.twilio.voice.quickstart D/libc-netbsd: [getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=0; ai_family=2
06-13 12:04:51.677 19481-21377/com.twilio.voice.quickstart D/libc-netbsd: getaddrinfo: localhost get result from proxy >>
06-13 12:04:51.722 19481-24187/com.twilio.voice.quickstart V/AudioTrack: obtainBuffer(743) returned 743 = 743 + 0 err 0
06-13 12:04:51.722 19481-24187/com.twilio.voice.quickstart V/AudioTrack: obtainBuffer(726) returned 726 = 726 + 0 err 0
06-13 12:04:51.722 19481-24187/com.twilio.voice.quickstart V/AudioTrack: obtainBuffer(406) returned 406 = 406 + 0 err 0

reject call without RECORD_AUDIO permission

Currently (SDK version 2.0.0_beta7) there's no possibility to reject the call if the user didn't accept RECORD_AUDIO permission.
As for the following code snippet taken from CallInvite#reject method
if(!Utils.isAudioPermissionGranted(context)) { throw new SecurityException("Requires the RECORD_AUDIO permission"); }
the SecurityException will be thrown if RECORD_AUDIO permission is not granted.
Consider the following scenario: User A calling user B. User B didn't accept RECORD_AUDIO permission due to his paranoia/doesn't interesting in using voice calls/etc. User B receives the incoming call. If user B refuses to accept RECORD_AUDIO permission both accepting and rejecting CallInvite will cause and exception. Moreover, if the exception is caught and handle properly, user A will not receive "reject" event but will wait until the timeout expires and call automatically disconnected. Such sequence might be unacceptable under certain circumstances.
Suggestion: provide API to reject an incoming call that will require no user-granted permission.
Thanx

Using == to compare Strings

In VoiceActivity#handleIncomingCallIntent the following line is wrong

if (intent.getAction() == ACTION_INCOMING_CALL) {

it should be

if (ACTION_INCOMING_CALL.equals(intent.getAction())) {

Similarly, this line is wrong:

} else if(intent.getAction() == ACTION_FCM_TOKEN) {

it should be

} else if (ACTION_FCM_TOKEN.equals(intent.getAction())) {

cuts in Android SDK Calls

I have been trying the SDK in iOS and Android in the same network, at the same time. (Mobiles phones were side by side)
And I´m experiencing problems just with the Android Devices. Every call, in some moment (not the same minute every time), the call cuts the voice for 15-20 seconds and you can´t hear anything in both sides.
I have been monitoring this, and the Android Studio Monitor shows me that in that moments, the network received goes to 0, but, as I said before, in the call with iOS done in the same moment we didn't experienced any cuts.

This happens also in the Android Client SDK (stable-version).

Do you have knowledge of this issue?

Twilio incoming works - then stops in my Voice Quickstart Android App

@kbagchiGWC Please help me. Yes, I seriously want you or any other developer around to help me. I was enjoying Twilio services in my new business until a client asked me for incoming calls in our Android app, and this has become a nightmare for me. A true nightmare!

Incoming calls work for like 3-4 hours, and then suddenly stops. I am also refreshing the access tokens periodically, but again it just stops working.

I go ahead, reset my api key and secret, regenerate push credentials - it works again - and then incoming stops working after 3-4 hours. Outgoing is not affected at all during this course.

I can't see anything suspicious in logs - or anything alarming - and I have no clue why this is happening. I have already opened tickets in Twilio support, but I want one final resolution before I take my business elsewhere.

Heroku Build Fails

Heroku build fails, with message

-----> Python app detected
-----> Installing python-2.7.13
-----> Installing pip
-----> Installing requirements with pip
       Collecting Flask==0.10.1 (from -r /tmp/build_d384526423ee7785219394f160cb0537/twilio-voice-quickstart-server-python-1ed92ad/requirements.txt (line 1))
         Downloading Flask-0.10.1.tar.gz (544kB)
       Collecting Jinja2==2.7.3 (from -r /tmp/build_d384526423ee7785219394f160cb0537/twilio-voice-quickstart-server-python-1ed92ad/requirements.txt (line 2))
         Downloading Jinja2-2.7.3.tar.gz (378kB)
       Collecting MarkupSafe==0.23 (from -r /tmp/build_d384526423ee7785219394f160cb0537/twilio-voice-quickstart-server-python-1ed92ad/requirements.txt (line 3))
         Downloading MarkupSafe-0.23.tar.gz
       Collecting Werkzeug==0.9.6 (from -r /tmp/build_d384526423ee7785219394f160cb0537/twilio-voice-quickstart-server-python-1ed92ad/requirements.txt (line 4))
         Downloading Werkzeug-0.9.6.tar.gz (1.1MB)
       Collecting httplib2==0.9 (from -r /tmp/build_d384526423ee7785219394f160cb0537/twilio-voice-quickstart-server-python-1ed92ad/requirements.txt (line 5))
         Downloading httplib2-0.9.zip (209kB)
       Collecting itsdangerous==0.24 (from -r /tmp/build_d384526423ee7785219394f160cb0537/twilio-voice-quickstart-server-python-1ed92ad/requirements.txt (line 6))
         Downloading itsdangerous-0.24.tar.gz (46kB)
       Collecting six==1.8.0 (from -r /tmp/build_d384526423ee7785219394f160cb0537/twilio-voice-quickstart-server-python-1ed92ad/requirements.txt (line 7))
         Downloading six-1.8.0-py2.py3-none-any.whl
       Collecting twilio==6.0rc11 (from -r /tmp/build_d384526423ee7785219394f160cb0537/twilio-voice-quickstart-server-python-1ed92ad/requirements.txt (line 8))
         Downloading twilio-6.0.0rc11-py2.py3-none-any.whl (694kB)
       Collecting pytz (from twilio==6.0rc11->-r /tmp/build_d384526423ee7785219394f160cb0537/twilio-voice-quickstart-server-python-1ed92ad/requirements.txt (line 8))
         Downloading pytz-2016.10-py2.py3-none-any.whl (483kB)
       Installing collected packages: Werkzeug, MarkupSafe, Jinja2, itsdangerous, Flask, httplib2, six, pytz, twilio
         Running setup.py install for Werkzeug: started
           Running setup.py install for Werkzeug: finished with status 'done'
         Running setup.py install for MarkupSafe: started
           Running setup.py install for MarkupSafe: finished with status 'done'
         Running setup.py install for Jinja2: started
           Running setup.py install for Jinja2: finished with status 'done'
         Running setup.py install for itsdangerous: started
           Running setup.py install for itsdangerous: finished with status 'done'
         Running setup.py install for Flask: started
           Running setup.py install for Flask: finished with status 'done'
         Running setup.py install for httplib2: started
           Running setup.py install for httplib2: finished with status 'done'
         Found existing installation: six 1.10.0
           Uninstalling six-1.10.0:
             Successfully uninstalled six-1.10.0
         Rolling back uninstall of six
       Exception:
       Traceback (most recent call last):
         File "/app/.heroku/python/lib/python2.7/site-packages/pip/basecommand.py", line 215, in main
           status = self.run(options, args)
         File "/app/.heroku/python/lib/python2.7/site-packages/pip/commands/install.py", line 342, in run
           prefix=options.prefix_path,
         File "/app/.heroku/python/lib/python2.7/site-packages/pip/req/req_set.py", line 784, in install
           **kwargs
         File "/app/.heroku/python/lib/python2.7/site-packages/pip/req/req_install.py", line 851, in install
           self.move_wheel_files(self.source_dir, root=root, prefix=prefix)
         File "/app/.heroku/python/lib/python2.7/site-packages/pip/req/req_install.py", line 1064, in move_wheel_files
           isolated=self.isolated,
         File "/app/.heroku/python/lib/python2.7/site-packages/pip/wheel.py", line 247, in move_wheel_files
           prefix=prefix,
         File "/app/.heroku/python/lib/python2.7/site-packages/pip/locations.py", line 140, in distutils_scheme
           d = Distribution(dist_args)
         File "/app/.heroku/python/lib/python2.7/site-packages/setuptools/dist.py", line 320, in __init__
           _Distribution.__init__(self, attrs)
         File "/app/.heroku/python/lib/python2.7/distutils/dist.py", line 287, in __init__
           self.finalize_options()
         File "/app/.heroku/python/lib/python2.7/site-packages/setuptools/dist.py", line 386, in finalize_options
           ep.require(installer=self.fetch_build_egg)
         File "/app/.heroku/python/lib/python2.7/site-packages/pkg_resources/__init__.py", line 2324, in require
           items = working_set.resolve(reqs, env, installer, extras=self.extras)
         File "/app/.heroku/python/lib/python2.7/site-packages/pkg_resources/__init__.py", line 862, in resolve
           new_requirements = dist.requires(req.extras)[::-1]
         File "/app/.heroku/python/lib/python2.7/site-packages/pkg_resources/__init__.py", line 2568, in requires
           dm = self._dep_map
         File "/app/.heroku/python/lib/python2.7/site-packages/pkg_resources/__init__.py", line 2815, in _dep_map
           self.__dep_map = self._compute_dependencies()
         File "/app/.heroku/python/lib/python2.7/site-packages/pkg_resources/__init__.py", line 2824, in _compute_dependencies
           for req in self._parsed_pkg_info.get_all('Requires-Dist') or []:
         File "/app/.heroku/python/lib/python2.7/site-packages/pkg_resources/__init__.py", line 2806, in _parsed_pkg_info
           metadata = self.get_metadata(self.PKG_INFO)
         File "/app/.heroku/python/lib/python2.7/site-packages/pkg_resources/__init__.py", line 1468, in get_metadata
           value = self._get(self._fn(self.egg_info, name))
         File "/app/.heroku/python/lib/python2.7/site-packages/pkg_resources/__init__.py", line 1577, in _get
           with open(path, 'rb') as stream:
       IOError: [Errno 2] No such file or directory: '/tmp/build_d384526423ee7785219394f160cb0537/twilio-voice-quickstart-server-python-1ed92ad/.heroku/python/lib/python2.7/site-packages/six-1.10.0.dist-info/METADATA'
 !     Push rejected, failed to compile Python app.
 !     Push failed

Missing source file

The string resource file gcm_defaultSenderId is missing from the latest repo commit. The code is failing to compile. Please fix

Really bad sound quality

This has been happening at least since beta2. It's such an obvious problem I've assumed it would be tackled sooner rather than later. But it happens rarely & I have no idea how to reproduce it. I've been testing on a Samsung Galaxy S7 (SMG930T) Android 7.0. After about a week the "crappy sound" happens. And it happens on beta12.

The sound that I have been using to characterize the anomaly is a tap on my USB mic on a PC running the browser phone. The "tap sound" normally takes maybe a 20th of a second to play. But when the problem shows up the same tap takes about 1/2 of a second to play and sounds really staticy. I would guess that the sound samples are getting interspersed with 0's. Something like 1 good sample and 4-5 0's. I.e., 8 good bits out of 64.

31302 Transport error

I try to make outgoing call but I get error:
31302 Transport error
Raised when Network is unreachable and SDK fails to send messages to Twilio Voice Service.
Lib version: 2.0.0-beta12
This problem become from about 21th jul.
2 weeks ago sample was working ok.

I updated version to 2.0.0-beta15
And now I get 20104 Access Token expired or expiration date invalid
I check that token is generated right now.

Listener for OutgoingCall ANSWERED

Is there a way to tell when an OutgoingCall is answered? I can see listeners for onConnected and onDisconnected, but it would be also nice to know when the callee answers the phone, for example the chronometer could start at that point.

Voice quickstart getting crashed when dialing a number

Hi,

I am using Twilio Voice Quickstart for Android to implement programmable voice and its implemented successfully but I am getting an issue of crash of Twilio SDK.

Scenario -

I am making call by dialing a number, call is connecting properly.
Then internet disconnected in between running call, call disconnected from my end.
Then internet reconnected and I am going to dial a number again, after dial a number application is getting crashed.

Here is logs of crasing -

06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] JNI DETECTED ERROR IN APPLICATION: use of deleted global reference 0x9b6
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] from void com.twilio.voice.impl.useragent.Call.makeCall(com.twilio.voice.impl.session.Account, java.lang.String, com.twilio.voice.impl.useragent.MessageData)
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] "Thread-16" prio=5 tid=44 Runnable
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] | group="main" sCount=0 dsCount=0 obj=0x12fa3e20 self=0x74b3a43400
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] | sysTid=14778 nice=0 cgrp=default sched=0/0 handle=0x74ad508450
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] | state=R schedstat=( 34631871 23463905 120 ) utm=2 stm=0 core=1 HZ=100
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] | stack=0x74ad406000-0x74ad408000 stackSize=1037KB
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] | held mutexes= "mutator lock"(shared held)
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] native: #00 pc 000000000047ef3c /system/lib64/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+220)
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] native: #1 pc 000000000047ef38 /system/lib64/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+216)
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] native: #2 pc 0000000000452fc4 /system/lib64/libart.so (_ZNK3art6Thread9DumpStackERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEbP12BacktraceMap+480)
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] native: #3 pc 00000000002f04a4 /system/lib64/libart.so (ZN3art9JavaVMExt8JniAbortEPKcS2+1136)
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] native: #4 pc 00000000002f0ca8 /system/lib64/libart.so (_ZN3art9JavaVMExt9JniAbortFEPKcS2_z+188)
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] native: #5 pc 0000000000457c24 /system/lib64/libart.so (_ZNK3art6Thread13DecodeJObjectEP8_jobject+352)
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] native: #6 pc 0000000000101ad8 /system/lib64/libart.so (_ZN3art11ScopedCheck13CheckInstanceERNS_18ScopedObjectAccessENS0_12InstanceKindEP8_jobjectb+196)
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] native: #7 pc 00000000000ffce8 /system/lib64/libart.so (_ZN3art11ScopedCheck5CheckERNS_18ScopedObjectAccessEbPKcPNS_12JniValueTypeE+1124)
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] native: #8 pc 0000000000103ec4 /system/lib64/libart.so (_ZN3art8CheckJNI9DeleteRefEPKcP7_JNIEnvP8_jobjectNS_15IndirectRefKindE+636)
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] native: #9 pc 000000000018694c /data/app/com.app.dealer_app-1/lib/arm64/libvoice.so (Java_com_twilio_voice_impl_useragent_Call_makeCall+476)
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] native: #10 pc 00000000000a34b4 /data/app/com.app.dealer_app-1/oat/arm64/base.odex (Java_com_twilio_voice_impl_useragent_Call_makeCall__Lcom_twilio_voice_impl_session_Account_2Ljava_lang_String_2Lcom_twilio_voice_impl_useragent_MessageData_2+208)
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] at com.twilio.voice.impl.useragent.Call.makeCall(Native method)
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] at com.twilio.voice.impl.useragent.Call.(Call.java:20)
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] at com.twilio.voice.CallControlManager.newCall(CallControlManager.java:546)
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] at com.twilio.voice.OutgoingCallCommand.run(OutgoingCallCommand.java:55)
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] at android.os.Handler.handleCallback(Handler.java:751)
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] at android.os.Handler.dispatchMessage(Handler.java:95)
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] at android.os.Looper.loop(Looper.java:154)
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470] at com.twilio.voice.CallCommandHandlerImpl.run(CallCommandHandlerImpl.java:48)
06-07 15:51:50.025 13915-14778/? A/art: art/runtime/java_vm_ext.cc:470]
06-07 15:51:50.025 13915-13922/? W/art: Suspending all threads took: 75.133ms
06-07 15:51:50.032 13915-13939/? V/FA: Activity resumed, time: 10897011
06-07 15:51:50.107 13915-13915/? I/BeaconService: set scan intervals received
06-07 15:51:50.107 13915-13915/? D/CycledLeScanner: Set scan periods called with 1100, 0 Background mode must have changed.
06-07 15:51:50.107 13915-13915/? D/CycledLeScanner: We are not in the background. Cancelling wakeup alarm
06-07 15:51:50.107 13915-13915/? D/CycledLeScanner: cancel wakeup alarm: PendingIntent{4cc87fe: android.os.BinderProxy@8f97b5f}
06-07 15:51:50.109 13915-13915/? D/CycledLeScanner: Set a wakeup alarm to go off in 9223372036843878634 ms: PendingIntent{4cc87fe: android.os.BinderProxy@8f97b5f}
06-07 15:51:50.173 13915-14778/? A/art: art/runtime/runtime.cc:422] Runtime aborting...
06-07 15:51:50.173 13915-14778/? A/art: art/runtime/runtime.cc:422] Aborting thread:
06-07 15:51:50.173 13915-14778/? A/art: art/runtime/runtime.cc:422] Dumping all threads without appropriate locks held: thread list lock mutator lock
06-07 15:51:50.173 13915-14778/? A/art: art/runtime/runtime.cc:422] All threads:
06-07 15:51:50.173 13915-14778/? A/art: art/runtime/runtime.cc:422] DALVIK THREADS (51):
06-07 15:51:50.173 13915-14778/? A/art: art/runtime/runtime.cc:422] "Thread-16" prio=5 tid=44 Runnable
06-07 15:51:50.173 13915-14778/? A/art: art/runtime/runtime.cc:422] | group="" sCount=0 dsCount=0 obj=0x12fa3e20 self=0x74b3a43400
06-07 15:51:50.173 13915-14778/? A/art: art/runtime/runtime.cc:422] | sysTid=14778 nice=0 cgrp=default sched=0/0 handle=0x74ad508450
06-07 15:51:50.173 13915-14778/? A/art: art/runtime/runtime.cc:422] | state=R schedstat=( 84367032 30260678 191 ) utm=3 stm=4 core=5 HZ=100
06-07 15:51:50.173 13915-14778/? A/art: art/runtime/runtime.cc:422] | stack=0x74ad406000-0x74ad408000 stackSize=1037KB
06-07 15:51:50.173 13915-14778/? A/art: art/runtime/runtime.cc:422] | held mutexes= "abort lock" "mutator lock"(shared held)
06-07 15:51:50.173 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000047ef3c /system/lib64/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+220)
06-07 15:51:50.173 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #1 pc 000000000047ef38 /system/lib64/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+216)
06-07 15:51:50.173 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #2 pc 0000000000452fc4 /system/lib64/libart.so (_ZNK3art6Thread9DumpStackERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEbP12BacktraceMap+480)
06-07 15:51:50.173 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #3 pc 000000000046ab4c /system/lib64/libart.so (_ZN3art14DumpCheckpoint3RunEPNS_6ThreadE+832)
06-07 15:51:50.173 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #4 pc 0000000000462d34 /system/lib64/libart.so (_ZN3art10ThreadList13RunCheckpointEPNS_7ClosureE+476)
06-07 15:51:50.173 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #5 pc 0000000000462924 /system/lib64/libart.so (_ZN3art10ThreadList4DumpERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEb+848)
06-07 15:51:50.173 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #6 pc 0000000000440d6c /system/lib64/libart.so (_ZNK3art10AbortState4DumpERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEE+592)
06-07 15:51:50.173 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #7 pc 000000000043473c /system/lib64/libart.so (_ZN3art7Runtime5AbortEPKc+148)
06-07 15:51:50.173 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #8 pc 00000000000e5afc /system/lib64/libart.so (_ZN3art10LogMessageD2Ev+1592)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #9 pc 00000000002f08cc /system/lib64/libart.so (ZN3art9JavaVMExt8JniAbortEPKcS2+2200)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #10 pc 00000000002f0ca8 /system/lib64/libart.so (_ZN3art9JavaVMExt9JniAbortFEPKcS2_z+188)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #11 pc 0000000000457c24 /system/lib64/libart.so (_ZNK3art6Thread13DecodeJObjectEP8_jobject+352)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #12 pc 0000000000101ad8 /system/lib64/libart.so (_ZN3art11ScopedCheck13CheckInstanceERNS_18ScopedObjectAccessENS0_12InstanceKindEP8_jobjectb+196)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #13 pc 00000000000ffce8 /system/lib64/libart.so (_ZN3art11ScopedCheck5CheckERNS_18ScopedObjectAccessEbPKcPNS_12JniValueTypeE+1124)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #14 pc 0000000000103ec4 /system/lib64/libart.so (_ZN3art8CheckJNI9DeleteRefEPKcP7_JNIEnvP8_jobjectNS_15IndirectRefKindE+636)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #15 pc 000000000018694c /data/app/com.app.dealer_app-1/lib/arm64/libvoice.so (Java_com_twilio_voice_impl_useragent_Call_makeCall+476)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #16 pc 00000000000a34b4 /data/app/com.app.dealer_app-1/oat/arm64/base.odex (Java_com_twilio_voice_impl_useragent_Call_makeCall__Lcom_twilio_voice_impl_session_Account_2Ljava_lang_String_2Lcom_twilio_voice_impl_useragent_MessageData_2+208)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at com.twilio.voice.impl.useragent.Call.makeCall(Native method)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at com.twilio.voice.impl.useragent.Call.(Call.java:20)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at com.twilio.voice.CallControlManager.newCall(CallControlManager.java:546)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at com.twilio.voice.OutgoingCallCommand.run(OutgoingCallCommand.java:55)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at android.os.Handler.handleCallback(Handler.java:751)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at android.os.Handler.dispatchMessage(Handler.java:95)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at android.os.Looper.loop(Looper.java:154)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at com.twilio.voice.CallCommandHandlerImpl.run(CallCommandHandlerImpl.java:48)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422]
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] "main" prio=5 tid=1 Native
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x75aa1a88 self=0x74ce095a00
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | sysTid=13915 nice=-10 cgrp=default sched=0/0 handle=0x74d2006a98
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 2732187600 470220672 3721 ) utm=228 stm=44 core=0 HZ=100
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | stack=0x7fe9438000-0x7fe943a000 stackSize=8MB
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcec /system/lib64/libc.so (syscall+28)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e7e4c /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+156)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #2 pc 000000000054d754 /system/lib64/libart.so (_ZN3artL12GoToRunnableEPNS_6ThreadE+328)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #3 pc 000000000054d5c8 /system/lib64/libart.so (_ZN3art12JniMethodEndEjPNS_6ThreadE+28)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #4 pc 0000000000859030 /system/framework/arm64/boot-framework.oat (Java_android_os_BinderProxy_transactNative__ILandroid_os_Parcel_2Landroid_os_Parcel_2I+220)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at android.os.BinderProxy.transactNative(Native method)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at android.os.BinderProxy.transact(Binder.java:615)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at android.view.IWindowSession$Stub$Proxy.relayout(IWindowSession.java:952)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at android.view.ViewRootImpl.relayoutWindow(ViewRootImpl.java:5719)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:1758)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:1254)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:6338)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at android.view.Choreographer$CallbackRecord.run(Choreographer.java:874)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at android.view.Choreographer.doCallbacks(Choreographer.java:686)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at android.view.Choreographer.doFrame(Choreographer.java:621)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:860)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at android.os.Handler.handleCallback(Handler.java:751)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at android.os.Handler.dispatchMessage(Handler.java:95)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at android.os.Looper.loop(Looper.java:154)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at android.app.ActivityThread.main(ActivityThread.java:6121)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.reflect.Method.invoke!(Native method)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:889)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:779)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422]
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] "Jit thread pool worker thread 0" prio=5 tid=2 Native
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12cc8310 self=0x74c6626000
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | sysTid=13920 nice=9 cgrp=default sched=0/0 handle=0x74cd701450
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 590560526 98475471 604 ) utm=49 stm=9 core=5 HZ=100
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | stack=0x74cd603000-0x74cd605000 stackSize=1021KB
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcec /system/lib64/libc.so (syscall+28)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e7e4c /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+156)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #2 pc 000000000046c910 /system/lib64/libart.so (_ZN3art10ThreadPool7GetTaskEPNS_6ThreadE+248)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #3 pc 000000000046bdac /system/lib64/libart.so (_ZN3art16ThreadPoolWorker3RunEv+124)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #4 pc 000000000046b6d0 /system/lib64/libart.so (_ZN3art16ThreadPoolWorker8CallbackEPv+132)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #5 pc 0000000000068734 /system/lib64/libc.so (_ZL15__pthread_startPv+208)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #6 pc 000000000001da7c /system/lib64/libc.so (__start_thread+16)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] (no managed stack frames)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422]
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] "Signal Catcher" prio=5 tid=3 WaitingInMainSignalCatcherLoop
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12cc83a0 self=0x74ce096400
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | sysTid=13921 nice=0 cgrp=default sched=0/0 handle=0x74cd600450
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 326615 24948 1 ) utm=0 stm=0 core=4 HZ=100
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | stack=0x74cd506000-0x74cd508000 stackSize=1005KB
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: do_sigtimedwait+0xec/0x1dc
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: SyS_rt_sigtimedwait+0xd8/0x134
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000006ad4c /system/lib64/libc.so (__rt_sigtimedwait+8)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #1 pc 0000000000024d48 /system/lib64/libc.so (sigwait+64)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #2 pc 00000000004456a0 /system/lib64/libart.so (_ZN3art9SignalSet4WaitEv+48)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #3 pc 000000000044515c /system/lib64/libart.so (_ZN3art13SignalCatcher13WaitForSignalEPNS_6ThreadERNS_9SignalSetE+232)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #4 pc 00000000004436f0 /system/lib64/libart.so (_ZN3art13SignalCatcher3RunEPv+400)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #5 pc 0000000000068734 /system/lib64/libc.so (_ZL15__pthread_startPv+208)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #6 pc 000000000001da7c /system/lib64/libc.so (__start_thread+16)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] (no managed stack frames)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422]
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] "JDWP" prio=5 tid=4 WaitingInMainDebuggerLoop
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12cc8430 self=0x74c6636400
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | sysTid=13922 nice=0 cgrp=default sched=0/0 handle=0x74cd503450
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 1229031471 236091418 793 ) utm=117 stm=5 core=3 HZ=100
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | stack=0x74cd409000-0x74cd40b000 stackSize=1005KB
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: poll_schedule_timeout+0x54/0xbc
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: do_select+0x454/0x4c0
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: core_sys_select+0x200/0x318
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: SyS_pselect6+0x180/0x230
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000006aca4 /system/lib64/libc.so (__pselect6+8)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #1 pc 0000000000023244 /system/lib64/libc.so (select+156)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #2 pc 00000000005581d0 /system/lib64/libart.so (_ZN3art4JDWP12JdwpAdbState15ProcessIncomingEv+348)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #3 pc 00000000003052b4 /system/lib64/libart.so (_ZN3art4JDWP9JdwpState3RunEv+916)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #4 pc 0000000000304764 /system/lib64/libart.so (_ZN3art4JDWPL15StartJdwpThreadEPv+48)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #5 pc 0000000000068734 /system/lib64/libc.so (_ZL15__pthread_startPv+208)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #6 pc 000000000001da7c /system/lib64/libc.so (__start_thread+16)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] (no managed stack frames)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422]
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] "ReferenceQueueDaemon" prio=5 tid=5 Waiting
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12cc84c0 self=0x74ce098200
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | sysTid=13923 nice=0 cgrp=default sched=0/0 handle=0x74cd406450
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 12132034 1583695 41 ) utm=0 stm=0 core=3 HZ=100
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | stack=0x74cd304000-0x74cd306000 stackSize=1037KB
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcec /system/lib64/libc.so (syscall+28)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e7e4c /system/lib64/libart.so (ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+156)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #2 pc 000000000037c0ac /system/lib64/libart.so (ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+660)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #3 pc 0000000000000810 /system/framework/arm64/boot.oat (Java_java_lang_Object_wait
+124)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Object.wait!(Native method)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] - waiting on <0x024835ac> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Daemons$ReferenceQueueDaemon.run(Daemons.java:150)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] - locked <0x024835ac> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Thread.run(Thread.java:761)
06-07 15:51:50.174 13915-14778/? A/art: art/runtime/runtime.cc:422]
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] "FinalizerDaemon" prio=5 tid=6 Waiting
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12cc8550 self=0x74c3ccc400
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | sysTid=13924 nice=0 cgrp=default sched=0/0 handle=0x74cd301450
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 17158702 1747237 44 ) utm=1 stm=0 core=4 HZ=100
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | stack=0x74cd1ff000-0x74cd201000 stackSize=1037KB
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcec /system/lib64/libc.so (syscall+28)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e7e4c /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+156)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #2 pc 000000000037c0ac /system/lib64/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+660)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #3 pc 0000000000000980 /system/framework/arm64/boot.oat (Java_java_lang_Object_wait__JI+140)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Object.wait!(Native method)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] - waiting on <0x08217275> (a java.lang.Object)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Object.wait(Object.java:407)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:188)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] - locked <0x08217275> (a java.lang.Object)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:209)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:204)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Thread.run(Thread.java:761)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422]
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] "FinalizerWatchdogDaemon" prio=5 tid=7 Sleeping
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12cc85e0 self=0x74c3ccce00
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | sysTid=13925 nice=0 cgrp=default sched=0/0 handle=0x74cd1fc450
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 1412768 9114 24 ) utm=0 stm=0 core=3 HZ=100
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | stack=0x74cd0fa000-0x74cd0fc000 stackSize=1037KB
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcf0 /system/lib64/libc.so (syscall+32)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e83ec /system/lib64/libart.so (_ZN3art17ConditionVariable9TimedWaitEPNS_6ThreadEli+176)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #2 pc 000000000037c0bc /system/lib64/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+676)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #3 pc 00000000000b8288 /system/framework/arm64/boot.oat (Java_java_lang_Thread_sleep__Ljava_lang_Object_2JI+164)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Thread.sleep!(Native method)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] - sleeping on <0x029b920a> (a java.lang.Object)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Thread.sleep(Thread.java:371)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] - locked <0x029b920a> (a java.lang.Object)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Thread.sleep(Thread.java:313)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Daemons$FinalizerWatchdogDaemon.sleepFor(Daemons.java:314)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Daemons$FinalizerWatchdogDaemon.waitForFinalization(Daemons.java:336)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Daemons$FinalizerWatchdogDaemon.run(Daemons.java:253)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Thread.run(Thread.java:761)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422]
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] "HeapTaskDaemon" prio=5 tid=8 Blocked
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12cc8670 self=0x74c3ccd800
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | sysTid=13926 nice=0 cgrp=default sched=0/0 handle=0x74cd0f7450
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 209279271 6195468 96 ) utm=18 stm=1 core=5 HZ=100
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | stack=0x74ccff5000-0x74ccff7000 stackSize=1037KB
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcf0 /system/lib64/libc.so (syscall+32)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e83ec /system/lib64/libart.so (_ZN3art17ConditionVariable9TimedWaitEPNS_6ThreadEli+176)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #2 pc 00000000002428fc /system/lib64/libart.so (ZN3art2gc13TaskProcessor7GetTaskEPNS_6ThreadE+344)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #3 pc 00000000002431f0 /system/lib64/libart.so (ZN3art2gc13TaskProcessor11RunAllTasksEPNS_6ThreadE+92)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #4 pc 00000000001e6ac0 /system/framework/arm64/boot-core-libart.oat (Java_dalvik_system_VMRuntime_runHeapTasks
+124)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] at dalvik.system.VMRuntime.runHeapTasks(Native method)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] - waiting to lock an unknown object
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Daemons$HeapTaskDaemon.run(Daemons.java:433)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Thread.run(Thread.java:761)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422]
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] "Binder:13915_1" prio=5 tid=9 Native
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12cc8820 self=0x74c3d7d800
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | sysTid=13928 nice=0 cgrp=default sched=0/0 handle=0x74ccef4450
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 88806044 30530576 233 ) utm=6 stm=1 core=1 HZ=100
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | stack=0x74ccdfa000-0x74ccdfc000 stackSize=1005KB
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: binder_thread_read+0xedc/0x1024
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: binder_ioctl+0x428/0x894
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: do_vfs_ioctl+0x4bc/0x5a8
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: SyS_ioctl+0x74/0xbc
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000006ac58 /system/lib64/libc.so (__ioctl+4)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #1 pc 000000000001fab4 /system/lib64/libc.so (ioctl+140)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #2 pc 0000000000055568 /system/lib64/libbinder.so (_ZN7android14IPCThreadState14talkWithDriverEb+264)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #3 pc 00000000000556cc /system/lib64/libbinder.so (_ZN7android14IPCThreadState20getAndExecuteCommandEv+24)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #4 pc 0000000000055e04 /system/lib64/libbinder.so (_ZN7android14IPCThreadState14joinThreadPoolEb+72)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #5 pc 0000000000072d48 /system/lib64/libbinder.so (???)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #6 pc 000000000001245c /system/lib64/libutils.so (_ZN7android6Thread11_threadLoopEPv+272)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #7 pc 000000000009f1b0 /system/lib64/libandroid_runtime.so (_ZN7android14AndroidRuntime15javaThreadShellEPv+116)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #8 pc 0000000000068734 /system/lib64/libc.so (_ZL15__pthread_startPv+208)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #9 pc 000000000001da7c /system/lib64/libc.so (__start_thread+16)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] (no managed stack frames)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422]
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] "Binder:13915_2" prio=5 tid=10 Native
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12cc88b0 self=0x74c6651800
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | sysTid=13929 nice=0 cgrp=default sched=0/0 handle=0x74ccdf7450
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 84145157 26859065 222 ) utm=6 stm=1 core=1 HZ=100
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | stack=0x74cccfd000-0x74cccff000 stackSize=1005KB
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcec /system/lib64/libc.so (syscall+28)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e7e4c /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+156)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #2 pc 00000000001047a0 /system/lib64/libart.so (_ZN3art8CheckJNI11CallMethodVEPKcP7_JNIEnvP8_jobjectP7_jclassP10_jmethodIDSt9__va_listNS_9Primitive4TypeENS_10InvokeTypeE+320)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #3 pc 00000000000f6a50 /system/lib64/libart.so (_ZN3art8CheckJNI18CallBooleanMethodVEP7_JNIEnvP8_jobjectP10_jmethodIDSt9__va_list+96)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #4 pc 00000000000a67e0 /system/lib64/libandroid_runtime.so (???)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #5 pc 00000000000fd2c8 /system/lib64/libandroid_runtime.so (???)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #6 pc 0000000000049e2c /system/lib64/libbinder.so (_ZN7android7BBinder8transactEjRKNS_6ParcelEPS1_j+132)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #7 pc 0000000000055bec /system/lib64/libbinder.so (_ZN7android14IPCThreadState14executeCommandEi+992)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #8 pc 0000000000055750 /system/lib64/libbinder.so (_ZN7android14IPCThreadState20getAndExecuteCommandEv+156)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #9 pc 0000000000055e04 /system/lib64/libbinder.so (_ZN7android14IPCThreadState14joinThreadPoolEb+72)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #10 pc 0000000000072d48 /system/lib64/libbinder.so (???)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #11 pc 000000000001245c /system/lib64/libutils.so (_ZN7android6Thread11_threadLoopEPv+272)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #12 pc 000000000009f1b0 /system/lib64/libandroid_runtime.so (_ZN7android14AndroidRuntime15javaThreadShellEPv+116)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #13 pc 0000000000068734 /system/lib64/libc.so (_ZL15__pthread_startPv+208)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #14 pc 000000000001da7c /system/lib64/libc.so (__start_thread+16)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] (no managed stack frames)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422]
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] "Profile Saver" prio=5 tid=11 Native
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12cc8b80 self=0x74c3d97c00
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | sysTid=13931 nice=-10 cgrp=default sched=0/0 handle=0x74cccf2450
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 36809216 3784010 36 ) utm=3 stm=0 core=0 HZ=100
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | stack=0x74ccbf8000-0x74ccbfa000 stackSize=1005KB
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcec /system/lib64/libc.so (syscall+28)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e7e4c /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+156)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #2 pc 000000000031e614 /system/lib64/libart.so (_ZN3art12ProfileSaver3RunEv+284)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #3 pc 000000000031fd4c /system/lib64/libart.so (_ZN3art12ProfileSaver21RunProfileSaverThreadEPv+100)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #4 pc 0000000000068734 /system/lib64/libc.so (_ZL15__pthread_startPv+208)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #5 pc 000000000001da7c /system/lib64/libc.so (__start_thread+16)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] (no managed stack frames)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422]
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] "pool-1-thread-1" prio=5 tid=12 Waiting
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12d0c940 self=0x74c3d7b000
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | sysTid=13938 nice=0 cgrp=default sched=0/0 handle=0x74ccb55450
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 87514279 36534583 258 ) utm=3 stm=4 core=5 HZ=100
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | stack=0x74cca53000-0x74cca55000 stackSize=1037KB
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcec /system/lib64/libc.so (syscall+28)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e7e4c /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+156)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #2 pc 000000000037c0ac /system/lib64/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+660)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #3 pc 0000000000000980 /system/framework/arm64/boot.oat (Java_java_lang_Object_wait__JI+140)
06-07 15:51:50.175 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Object.wait!(Native method)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] - waiting on <0x00786a7b> (a java.lang.Object)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Thread.parkFor$(Thread.java:2127)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] - locked <0x00786a7b> (a java.lang.Object)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at sun.misc.Unsafe.park(Unsafe.java:325)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:161)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2035)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:413)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1058)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1118)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Thread.run(Thread.java:761)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422]
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] "Measurement Worker" prio=5 tid=13 TimedWaiting
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12c1b4c0 self=0x74c3d7ba00
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] | sysTid=13939 nice=0 cgrp=default sched=0/0 handle=0x74cca49450
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 187164019 59878848 380 ) utm=15 stm=3 core=4 HZ=100
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] | stack=0x74cc947000-0x74cc949000 stackSize=1037KB
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcf0 /system/lib64/libc.so (syscall+32)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e83ec /system/lib64/libart.so (_ZN3art17ConditionVariable9TimedWaitEPNS_6ThreadEli+176)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #2 pc 000000000037c0bc /system/lib64/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+676)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #3 pc 0000000000000980 /system/framework/arm64/boot.oat (Java_java_lang_Object_wait__JI+140)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Object.wait!(Native method)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] - waiting on <0x09d90098> (a java.lang.Object)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Object.wait(Object.java:407)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at com.google.android.gms.internal.zzaud$zzd.run(unavailable:-1)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422]
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] "Queue" prio=5 tid=14 Waiting
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12c28280 self=0x74c3d7c400
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] | sysTid=13941 nice=-8 cgrp=default sched=0/0 handle=0x74c6ca0450
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 21361982 886354 18 ) utm=1 stm=0 core=5 HZ=100
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] | stack=0x74c6b9e000-0x74c6ba0000 stackSize=1037KB
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcec /system/lib64/libc.so (syscall+28)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e7e4c /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+156)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #2 pc 000000000037c0ac /system/lib64/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+660)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #3 pc 0000000000000980 /system/framework/arm64/boot.oat (Java_java_lang_Object_wait__JI+140)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Object.wait!(Native method)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] - waiting on <0x0d23c0f1> (a java.lang.Object)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Thread.parkFor$(Thread.java:2127)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] - locked <0x0d23c0f1> (a java.lang.Object)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at sun.misc.Unsafe.park(Unsafe.java:325)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:161)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2035)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.PriorityBlockingQueue.take(PriorityBlockingQueue.java:519)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.performOperation(DependencyPriorityBlockingQueue.java:197)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.get(DependencyPriorityBlockingQueue.java:236)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.take(DependencyPriorityBlockingQueue.java:65)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.take(DependencyPriorityBlockingQueue.java:46)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1058)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1118)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Thread.run(Thread.java:761)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422]
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] "Queue" prio=5 tid=15 Waiting
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12c283a0 self=0x74c3cce200
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] | sysTid=13943 nice=10 cgrp=default sched=0/0 handle=0x74c6a96450
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 250661507 67160842 325 ) utm=21 stm=2 core=2 HZ=100
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] | stack=0x74c6994000-0x74c6996000 stackSize=1037KB
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcec /system/lib64/libc.so (syscall+28)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e7e4c /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+156)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #2 pc 000000000037c0ac /system/lib64/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+660)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #3 pc 0000000000000980 /system/framework/arm64/boot.oat (Java_java_lang_Object_wait__JI+140)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Object.wait!(Native method)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] - waiting on <0x0868c4d6> (a java.lang.Object)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Thread.parkFor$(Thread.java:2127)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] - locked <0x0868c4d6> (a java.lang.Object)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at sun.misc.Unsafe.park(Unsafe.java:325)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:161)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2035)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.PriorityBlockingQueue.take(PriorityBlockingQueue.java:519)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.performOperation(DependencyPriorityBlockingQueue.java:197)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.get(DependencyPriorityBlockingQueue.java:236)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.take(DependencyPriorityBlockingQueue.java:65)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.take(DependencyPriorityBlockingQueue.java:46)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1058)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1118)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Thread.run(Thread.java:761)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422]
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] "Queue" prio=5 tid=16 Waiting
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12c28430 self=0x74c3ccec00
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] | sysTid=13944 nice=10 cgrp=default sched=0/0 handle=0x74b418a450
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 2676411 1176510 22 ) utm=0 stm=0 core=0 HZ=100
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] | stack=0x74b4088000-0x74b408a000 stackSize=1037KB
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcec /system/lib64/libc.so (syscall+28)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e7e4c /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+156)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #2 pc 000000000037c0ac /system/lib64/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+660)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] native: #3 pc 0000000000000980 /system/framework/arm64/boot.oat (Java_java_lang_Object_wait__JI+140)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Object.wait!(Native method)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] - waiting on <0x04193357> (a java.lang.Object)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.lang.Thread.parkFor$(Thread.java:2127)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] - locked <0x04193357> (a java.lang.Object)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at sun.misc.Unsafe.park(Unsafe.java:325)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:161)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2035)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.PriorityBlockingQueue.take(PriorityBlockingQueue.java:519)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.performOperation(DependencyPriorityBlockingQueue.java:197)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.get(DependencyPriorityBlockingQueue.java:236)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.take(DependencyPriorityBlockingQueue.java:65)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.take(DependencyPriorityBlockingQueue.java:46)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runtime.cc:422] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1058)
06-07 15:51:50.176 13915-14778/? A/art: art/runtime/runt

Please provide me the solution,I need it urgently.

Registration Error: 20101, Invalid Access Token

Hello Twilio Team,
I'm trying to use programmable voice product with android app and PHP from backend.
From PHP I generate token, But when I try to verify token over jwt.io Signature failed, but if I copied my secret key in secret text box Signature success.

From Mobile App, when I receive token I got this message
"registrationListener Error : Registration Error: 20101, Invalid Access Token, Notification exception during registration: TNException: Couldn't create registration".

I follow this link to generate token
https://www.twilio.com/docs/api/rest/access-tokens

And this for mobile
https://github.com/twilio/voice-quickstart-android

And this to track the issue
#11

I opened ticket with number 1030374 and send access token example.

Voice Quickstart Android getting Crashed

Hi,

I am using Twilio Voice Quickstart for Android to implement programmable voice and its implemented successfully but I am getting an issue of crash of Twilio SDK.

Scenario -

I am making call by dialing a number, call is connecting properly.
Then internet disconnected in between running call, call disconnected from my end.
Then internet reconnected and I am going to dial a number again, after dial a number application is getting crashed.

Here is logs of crasing with DEBUG LogLevel of Twilio -

06-07 17:44:33.802 3792-3870/com.app.dealer_app D/NetworkSecurityConfig: No Network Security Config specified, using platform default
06-07 17:44:33.976 3792-3872/com.app.dealer_app I/Adreno: QUALCOMM build : 6818200, Idb2b4cb785
Build Date : 11/18/16
OpenGL ES Shader Compiler Version: XE031.09.00.04
Local Branch : N25
Remote Branch :
Remote Branch :
Reconstruct Branch :
06-07 17:44:33.983 3792-3872/com.app.dealer_app I/OpenGLRenderer: Initialized EGL, version 1.4
06-07 17:44:33.983 3792-3872/com.app.dealer_app D/OpenGLRenderer: Swap behavior 1
06-07 17:44:34.204 3792-3828/com.app.dealer_app D/FA: Connected to remote service
06-07 17:44:34.264 3792-3792/com.app.dealer_app W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
06-07 17:44:34.374 3792-3876/com.app.dealer_app I/ModelSpecificDistanceCalculator: Successfully saved new distance model file
06-07 17:44:34.376 3792-3876/com.app.dealer_app I/ModelSpecificDistanceCalculator: Successfully updated distance model with latest from online database
06-07 17:44:45.853 3792-3828/com.app.dealer_app D/FA: Logging event (FE): _s, Bundle[{_o=auto, _sc=LoginActivity, _si=-8272505488395125241}]
06-07 17:44:45.916 3792-3828/com.app.dealer_app D/FA: Connected to remote service
06-07 17:44:49.982 3792-3792/com.app.dealer_app W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
06-07 17:44:49.990 3792-3792/com.app.dealer_app W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
06-07 17:44:51.560 3792-3792/com.app.dealer_app W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
06-07 17:44:51.560 3792-3792/com.app.dealer_app W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
06-07 17:44:51.567 3792-3792/com.app.dealer_app W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
06-07 17:44:52.400 3792-3792/com.app.dealer_app I/AppCompatViewInflater: app:theme is now deprecated. Please move to using android:theme instead.
06-07 17:44:52.518 3792-3828/com.app.dealer_app D/FA: Connected to remote service
06-07 17:44:52.627 3792-3799/com.app.dealer_app W/art: Suspending all threads took: 5.429ms
06-07 17:44:52.640 3792-3797/com.app.dealer_app I/art: Do partial code cache collection, code=19KB, data=30KB
06-07 17:44:52.641 3792-3797/com.app.dealer_app I/art: After code cache collection, code=19KB, data=30KB
06-07 17:44:52.641 3792-3797/com.app.dealer_app I/art: Increasing code cache capacity to 128KB
06-07 17:44:52.691 3792-4398/com.app.dealer_app I/ProviderInstaller: Installed default security provider GmsCore_OpenSSL
06-07 17:44:52.783 3792-3792/com.app.dealer_app W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
06-07 17:45:02.716 3792-3797/com.app.dealer_app I/art: Do partial code cache collection, code=49KB, data=59KB
06-07 17:45:02.717 3792-3797/com.app.dealer_app I/art: After code cache collection, code=43KB, data=56KB
06-07 17:45:02.717 3792-3797/com.app.dealer_app I/art: Increasing code cache capacity to 256KB
06-07 17:45:10.583 3792-3828/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=18078, _sc=HomeActivity, _si=-8272505488395125240}]
06-07 17:45:10.687 3792-3792/com.app.dealer_app I/PJSIP: 17:45:10.687 os_core_unix.c !pjlib 2.5.1 for POSIX initialized
06-07 17:45:10.689 3792-3792/com.app.dealer_app D/PJSIP: 17:45:10.689 sip_endpoint.c .Creating endpoint instance...
06-07 17:45:10.690 3792-3792/com.app.dealer_app I/PJSIP: 17:45:10.690 pjlib .select() I/O Queue created (0x74c3dc8110)
06-07 17:45:10.690 3792-3792/com.app.dealer_app I/PJSIP: 17:45:10.690 sip_endpoint.c .Module "mod-msg-print" registered
06-07 17:45:10.690 3792-3792/com.app.dealer_app D/PJSIP: 17:45:10.690 sip_transport. .Transport manager created.
06-07 17:45:10.690 3792-3792/com.app.dealer_app I/PJSIP: 17:45:10.690 pjsua_core.c .PJSUA state changed: NULL --> CREATED
06-07 17:45:10.719 3792-4805/com.app.dealer_app I/libOpenSLES: Emulating old channel mask behavior (ignoring positional mask 0x4, using default mask 0x1 based on channel count of 1)
06-07 17:45:10.724 3792-4805/com.app.dealer_app W/AudioTrack: AUDIO_OUTPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, output 48000 Hz
06-07 17:45:10.726 3792-4805/com.app.dealer_app D/AudioTrack: Client defaulted notificationFrames to 216 for frameCount 648
06-07 17:45:10.727 3792-4805/com.app.dealer_app W/libOpenSLES: Conversion from OpenSL ES positional channel mask 0x4 to Android mask 0 loses channels
06-07 17:45:10.727 3792-4805/com.app.dealer_app I/libOpenSLES: Emulating old channel mask behavior (ignoring positional mask 0x4, using default mask 0x10 based on channel count of 1)
06-07 17:45:10.731 3792-3828/com.app.dealer_app D/FA: Connected to remote service
06-07 17:45:10.732 3792-3792/com.app.dealer_app D/CallControlManager: got connectivity broadcast: haveConn=true, reason=null, isFailover=false
06-07 17:45:10.736 3792-3792/com.app.dealer_app D/CallControlManager: got wifi SSID: "IdeaMessenger306"
06-07 17:45:10.736 3792-3792/com.app.dealer_app D/CallControlManager: NET CHANGE EVENT: connected=true, wasConnected=true, netTypeChanged=true
06-07 17:45:10.736 3792-3792/com.app.dealer_app D/CallControlManager: switched networks to type 1
06-07 17:45:10.741 3792-4805/com.app.dealer_app W/AudioRecord: AUDIO_INPUT_FLAG_FAST denied by server; frameCount 0
06-07 17:45:10.946 3792-4805/com.app.dealer_app D/CallControlManager: onCallSDPCreated notification received
06-07 17:45:10.951 3792-4805/com.app.dealer_app D/CallControlManager: received CALLING
06-07 17:45:13.165 3792-4803/com.app.dealer_app D/CallControlManager: received CONNECTING
06-07 17:45:13.175 3792-4803/com.app.dealer_app D/CallControlManager: received CONFIRMED
06-07 17:45:13.180 3792-4803/com.app.dealer_app D/CallControlManager: onTransactionState received CAa17dafc5d187021b6dd71024a8ab828a
06-07 17:45:13.184 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:13.181Z","timestamp_ms":1496837713181,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":1,"total_packets_received":0,"total_packets_lost":0,"total_bytes_received":0,"total_bytes_sent":160,"jitter":0,"rtt":0,"audio_level_in":0,"audio_level_out":0,"mos":4.437552191410176}
06-07 17:45:14.229 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:14.227Z","timestamp_ms":1496837714227,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":49,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":53,"total_packets_received":49,"total_packets_lost":0,"total_bytes_received":7840,"total_bytes_sent":8480,"jitter":1,"rtt":0,"audio_level_in":0,"audio_level_out":10624,"mos":4.437552191410176}
06-07 17:45:15.259 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:15.256Z","timestamp_ms":1496837715256,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":104,"total_packets_received":101,"total_packets_lost":0,"total_bytes_received":16160,"total_bytes_sent":16640,"jitter":1,"rtt":0,"audio_level_in":0,"audio_level_out":11008,"mos":4.437552191410176}
06-07 17:45:16.302 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:16.301Z","timestamp_ms":1496837716301,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":156,"total_packets_received":153,"total_packets_lost":0,"total_bytes_received":24480,"total_bytes_sent":24960,"jitter":1,"rtt":0,"audio_level_in":2432,"audio_level_out":0,"mos":4.437552191410176}
06-07 17:45:17.314 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:17.312Z","timestamp_ms":1496837717312,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":50,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":207,"total_packets_received":203,"total_packets_lost":0,"total_bytes_received":32480,"total_bytes_sent":33120,"jitter":1,"rtt":0,"audio_level_in":0,"audio_level_out":8960,"mos":4.437552191410176}
06-07 17:45:18.346 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:18.341Z","timestamp_ms":1496837718341,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":258,"total_packets_received":255,"total_packets_lost":0,"total_bytes_received":40800,"total_bytes_sent":41280,"jitter":4,"rtt":75,"audio_level_in":768,"audio_level_out":8832,"mos":4.400767940018177}
06-07 17:45:19.360 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:19.358Z","timestamp_ms":1496837719358,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":51,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":310,"total_packets_received":306,"total_packets_lost":0,"total_bytes_received":48960,"total_bytes_sent":49600,"jitter":2,"rtt":75,"audio_level_in":2304,"audio_level_out":2176,"mos":4.400767940018177}
06-07 17:45:20.388 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:20.387Z","timestamp_ms":1496837720387,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":46,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":361,"total_packets_received":352,"total_packets_lost":0,"total_bytes_received":56320,"total_bytes_sent":57760,"jitter":10,"rtt":75,"audio_level_in":0,"audio_level_out":10624,"mos":4.400767940018177}
06-07 17:45:21.416 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:21.412Z","timestamp_ms":1496837721412,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":45,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":412,"total_packets_received":397,"total_packets_lost":0,"total_bytes_received":63520,"total_bytes_sent":65920,"jitter":8,"rtt":75,"audio_level_in":1280,"audio_level_out":512,"mos":4.400767940018177}
06-07 17:45:22.467 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:22.459Z","timestamp_ms":1496837722459,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":464,"total_packets_received":397,"total_packets_lost":0,"total_bytes_received":63520,"total_bytes_sent":74240,"jitter":8,"rtt":75,"audio_level_in":0,"audio_level_out":0,"mos":4.400767940018177}
06-07 17:45:22.543 3792-4853/com.app.dealer_app D/EventPublisher: Start publishing events to : https://eventgw.twilio.com/v3/EndpointMetrics
{"name":"call-metric-event","group":"call-quality-stats","timestamp":"2017-06-07T12:15:22.470Z","level":"INFO","private":false,"payload_type":"application/json","publisher":"twilio-voice-android","publisher_metadata":{"client_address":"FE80::B0E2:F0FF:FE85:A010","os_name":"android","os_version":"7.1.2","device_model":"LGE Nexus 5X","device_vendor":"LGE","device_type":"Nexus 5X","cpu_architecture":"arm64-v8a"},"payload":[{"timestamp":"2017-06-07T12:15:13.181Z","timestamp_ms":1496837713181,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":1,"total_packets_received":0,"total_packets_lost":0,"total_bytes_received":0,"total_bytes_sent":160,"jitter":0,"rtt":0,"audio_level_in":0,"audio_level_out":0,"mos":4.437552191410176},{"timestamp":"2017-06-07T12:15:14.227Z","timestamp_ms":1496837714227,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":49,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":53,"total_packets_received":49,"total_packets_lost":0,"total_bytes_received":7840,"total_bytes_sent":8480,"jitter":1,"rtt":0,"audio_level_in":0,"audio_level_out":10624,"mos":4.437552191410176},{"timestamp":"2017-06-07T12:15:15.256Z","timestamp_ms":1496837715256,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":104,"total_packets_received":101,"total_packets_lost":0,"total_bytes_received":16160,"total_bytes_sent":16640,"jitter":1,"rtt":0,"audio_level_in":0,"audio_level_out":11008,"mos":4.437552191410176},{"timestamp":"2017-06-07T12:15:16.301Z","timestamp_ms":1496837716301,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":156,"total_packets_received":153,"total_packets_lost":0,"total_bytes_received":24480,"total_bytes_sent":24960,"jitter":1,"rtt":0,"audio_level_in":2432,"audio_level_out":0,"mos":4.437552191410176},{"timestamp":"2017-06-07T12:15:17.312Z","timestamp_ms":1496837717312,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":50,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":207,"total_packets_received":203,"total_packets_lost":0,"total_bytes_received":32480,"total_bytes_sent":33120,"jitter":1,"rtt":0,"audio_level_in":0,"audio_level_out":8960,"mos":4.437552191410176},{"timestamp":"2017-06-07T12:15:18.341Z","timestamp_ms":1496837718341,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":258,"total_packets_received":255,"total_packets_lost":0,"total_bytes_received":40800,"total_bytes_sent":41280,"jitter":4,"rtt":75,"audio_level_in":768,"audio_level_out":8832,"mos":4.400767940018177},{"timestamp":"2017-06-07T12:15:19.358Z","timestamp_ms":1496837719358,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":51,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":310,"total_packets_received":306,"total_packets_lost":0,"total_bytes_received":48960,"total_bytes_sent":49600,"jitter":2,"rtt":75,"audio_level_in":2304,"audio_level_out":2176,"mos":4.400767940018177},{"timestamp":"2017-06-07T12:15:20.387Z","timestamp_ms":1496837720387,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":46,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":361,"total_packets_received":352,"total_packets_lost":0,"total_bytes_received":56320,"total_bytes_sent":57760,"jitter":10,"rtt":75,"audio_level_in":0,"audio_level_out":10624,"mos":4.400767940018177},{"timestamp":"2017-06-07T12:15:21.412Z","timestamp_ms":1496837721412,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2
06-07 17:45:23.592 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:23.589Z","timestamp_ms":1496837723589,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":38,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":521,"total_packets_received":435,"total_packets_lost":0,"total_bytes_received":69600,"total_bytes_sent":83360,"jitter":3,"rtt":73,"audio_level_in":0,"audio_level_out":0,"mos":4.400767940018177}
06-07 17:45:24.616 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:24.612Z","timestamp_ms":1496837724612,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":572,"total_packets_received":487,"total_packets_lost":0,"total_bytes_received":77920,"total_bytes_sent":91520,"jitter":3,"rtt":73,"audio_level_in":3968,"audio_level_out":0,"mos":4.400767940018177}
06-07 17:45:24.642 3792-4994/com.app.dealer_app D/EventPublisher: Response: 200 - OK
06-07 17:45:25.661 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:25.659Z","timestamp_ms":1496837725659,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":624,"total_packets_received":539,"total_packets_lost":0,"total_bytes_received":86240,"total_bytes_sent":99840,"jitter":2,"rtt":73,"audio_level_in":2944,"audio_level_out":0,"mos":4.400767940018177}
06-07 17:45:26.703 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:26.701Z","timestamp_ms":1496837726701,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":677,"total_packets_received":591,"total_packets_lost":0,"total_bytes_received":94560,"total_bytes_sent":108320,"jitter":1,"rtt":73,"audio_level_in":1408,"audio_level_out":128,"mos":4.400767940018177}
06-07 17:45:27.749 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:27.744Z","timestamp_ms":1496837727744,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":728,"total_packets_received":643,"total_packets_lost":0,"total_bytes_received":102880,"total_bytes_sent":116480,"jitter":5,"rtt":73,"audio_level_in":1920,"audio_level_out":0,"mos":4.400767940018177}
06-07 17:45:28.795 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:28.792Z","timestamp_ms":1496837728792,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":53,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":781,"total_packets_received":696,"total_packets_lost":0,"total_bytes_received":111360,"total_bytes_sent":124960,"jitter":2,"rtt":74,"audio_level_in":0,"audio_level_out":11136,"mos":4.400767940018177}
06-07 17:45:29.841 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:29.838Z","timestamp_ms":1496837729838,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":833,"total_packets_received":748,"total_packets_lost":0,"total_bytes_received":119680,"total_bytes_sent":133280,"jitter":2,"rtt":74,"audio_level_in":768,"audio_level_out":0,"mos":4.400767940018177}
06-07 17:45:30.887 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:30.885Z","timestamp_ms":1496837730885,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":63,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":885,"total_packets_received":811,"total_packets_lost":0,"total_bytes_received":129760,"total_bytes_sent":141600,"jitter":44435,"rtt":74,"audio_level_in":0,"audio_level_out":128,"mos":4220.096299943666}
06-07 17:45:31.896 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:31.895Z","timestamp_ms":1496837731895,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":50,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":936,"total_packets_received":861,"total_packets_lost":0,"total_bytes_received":137760,"total_bytes_sent":149760,"jitter":257396,"rtt":74,"audio_level_in":256,"audio_level_out":128,"mos":931881.1334032844}
06-07 17:45:32.939 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:32.937Z","timestamp_ms":1496837732937,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":989,"total_packets_received":913,"total_packets_lost":0,"total_bytes_received":146080,"total_bytes_sent":158240,"jitter":8979,"rtt":74,"audio_level_in":4096,"audio_level_out":128,"mos":14.067028446130177}
06-07 17:45:32.944 3792-4853/com.app.dealer_app D/EventPublisher: Start publishing events to : https://eventgw.twilio.com/v3/EndpointMetrics
{"name":"call-metric-event","group":"call-quality-stats","timestamp":"2017-06-07T12:15:32.939Z","level":"INFO","private":false,"payload_type":"application/json","publisher":"twilio-voice-android","publisher_metadata":{"client_address":"FE80::B0E2:F0FF:FE85:A010","os_name":"android","os_version":"7.1.2","device_model":"LGE Nexus 5X","device_vendor":"LGE","device_type":"Nexus 5X","cpu_architecture":"arm64-v8a"},"payload":[{"timestamp":"2017-06-07T12:15:23.589Z","timestamp_ms":1496837723589,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":38,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":521,"total_packets_received":435,"total_packets_lost":0,"total_bytes_received":69600,"total_bytes_sent":83360,"jitter":3,"rtt":73,"audio_level_in":0,"audio_level_out":0,"mos":4.400767940018177},{"timestamp":"2017-06-07T12:15:24.612Z","timestamp_ms":1496837724612,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":572,"total_packets_received":487,"total_packets_lost":0,"total_bytes_received":77920,"total_bytes_sent":91520,"jitter":3,"rtt":73,"audio_level_in":3968,"audio_level_out":0,"mos":4.400767940018177},{"timestamp":"2017-06-07T12:15:25.659Z","timestamp_ms":1496837725659,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":624,"total_packets_received":539,"total_packets_lost":0,"total_bytes_received":86240,"total_bytes_sent":99840,"jitter":2,"rtt":73,"audio_level_in":2944,"audio_level_out":0,"mos":4.400767940018177},{"timestamp":"2017-06-07T12:15:26.701Z","timestamp_ms":1496837726701,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":677,"total_packets_received":591,"total_packets_lost":0,"total_bytes_received":94560,"total_bytes_sent":108320,"jitter":1,"rtt":73,"audio_level_in":1408,"audio_level_out":128,"mos":4.400767940018177},{"timestamp":"2017-06-07T12:15:27.744Z","timestamp_ms":1496837727744,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":728,"total_packets_received":643,"total_packets_lost":0,"total_bytes_received":102880,"total_bytes_sent":116480,"jitter":5,"rtt":73,"audio_level_in":1920,"audio_level_out":0,"mos":4.400767940018177},{"timestamp":"2017-06-07T12:15:28.792Z","timestamp_ms":1496837728792,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":53,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":781,"total_packets_received":696,"total_packets_lost":0,"total_bytes_received":111360,"total_bytes_sent":124960,"jitter":2,"rtt":74,"audio_level_in":0,"audio_level_out":11136,"mos":4.400767940018177},{"timestamp":"2017-06-07T12:15:29.838Z","timestamp_ms":1496837729838,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":52,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":833,"total_packets_received":748,"total_packets_lost":0,"total_bytes_received":119680,"total_bytes_sent":133280,"jitter":2,"rtt":74,"audio_level_in":768,"audio_level_out":0,"mos":4.400767940018177},{"timestamp":"2017-06-07T12:15:30.885Z","timestamp_ms":1496837730885,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":63,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":885,"total_packets_received":811,"total_packets_lost":0,"total_bytes_received":129760,"total_bytes_sent":141600,"jitter":44435,"rtt":74,"audio_level_in":0,"audio_level_out":128,"mos":4220.096299943666},{"timestamp":"2017-06-07T12:15:31.895Z","timestamp_ms":1496837731895,"call_sid":"CAa17dafc5d187021b6dd71024a
06-07 17:45:32.954 3792-4853/com.app.dealer_app D/EventPublisher: Start publishing events to : https://eventgw.twilio.com/v3/EndpointEvents
{"name":"high-jitter","group":"network-quality-warning-raised","timestamp":"2017-06-07T12:15:32.950Z","level":"WARNING","private":false,"payload_type":"application/json","publisher":"twilio-voice-android","publisher_metadata":{"client_address":"FE80::B0E2:F0FF:FE85:A010","os_name":"android","os_version":"7.1.2","device_model":"LGE Nexus 5X","device_vendor":"LGE","device_type":"Nexus 5X","cpu_architecture":"arm64-v8a"},"payload":{"timestamp_ms":1496837732946,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","platform":"android","direction":"OUTGOING","data":{"threshold":30,"values":[2,2,44435,257396,8979]}}}
06-07 17:45:33.998 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:33.996Z","timestamp_ms":1496837733996,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":53,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":1041,"total_packets_received":966,"total_packets_lost":0,"total_bytes_received":154560,"total_bytes_sent":166560,"jitter":295,"rtt":77,"audio_level_in":1280,"audio_level_out":1664,"mos":2.0526471581301764}
06-07 17:45:34.008 3792-4853/com.app.dealer_app D/EventPublisher: Start publishing events to : https://eventgw.twilio.com/v3/EndpointEvents
{"name":"high-jitter","group":"network-quality-warning-raised","timestamp":"2017-06-07T12:15:34.003Z","level":"WARNING","private":false,"payload_type":"application/json","publisher":"twilio-voice-android","publisher_metadata":{"client_address":"FE80::B0E2:F0FF:FE85:A010","os_name":"android","os_version":"7.1.2","device_model":"LGE Nexus 5X","device_vendor":"LGE","device_type":"Nexus 5X","cpu_architecture":"arm64-v8a"},"payload":{"timestamp_ms":1496837734000,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","platform":"android","direction":"OUTGOING","data":{"threshold":30,"values":[2,44435,257396,8979,295]}}}
06-07 17:45:34.088 3792-5165/com.app.dealer_app D/EventPublisher: Response: 200 - OK
06-07 17:45:34.094 3792-5167/com.app.dealer_app D/EventPublisher: Response: 200 - OK
06-07 17:45:34.871 3792-4994/com.app.dealer_app E/EventPublisher: java.net.SocketException: Network is unreachable
06-07 17:45:34.871 3792-4994/com.app.dealer_app E/EventPublisher: java.net.SocketException: Network is unreachable
06-07 17:45:34.932 3792-3792/com.app.dealer_app D/CallControlManager: got connectivity broadcast: haveConn=false, reason=null, isFailover=false
06-07 17:45:34.933 3792-3792/com.app.dealer_app D/CallControlManager: NET CHANGE EVENT: connected=false, wasConnected=true, netTypeChanged=false
06-07 17:45:35.020 3792-4805/com.app.dealer_app E/ReinviteCallCommand: Failed to update call on IP address change; call will not be notified if the other party hangs up
06-07 17:45:35.033 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:35.032Z","timestamp_ms":1496837735032,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":42,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":1083,"total_packets_received":1008,"total_packets_lost":0,"total_bytes_received":161280,"total_bytes_sent":173280,"jitter":21,"rtt":77,"audio_level_in":0,"audio_level_out":0,"mos":4.3798704303221765}
06-07 17:45:35.041 3792-4853/com.app.dealer_app D/EventPublisher: Start publishing events to : https://eventgw.twilio.com/v3/EndpointEvents
{"name":"high-jitter","group":"network-quality-warning-raised","timestamp":"2017-06-07T12:15:35.037Z","level":"WARNING","private":false,"payload_type":"application/json","publisher":"twilio-voice-android","publisher_metadata":{"client_address":"FE80::B0E2:F0FF:FE85:A010","os_name":"android","os_version":"7.1.2","device_model":"LGE Nexus 5X","device_vendor":"LGE","device_type":"Nexus 5X","cpu_architecture":"arm64-v8a"},"payload":{"timestamp_ms":1496837735035,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","platform":"android","direction":"OUTGOING","data":{"threshold":30,"values":[44435,257396,8979,295,21]}}}
06-07 17:45:35.082 3792-5165/com.app.dealer_app E/EventPublisher: java.net.UnknownHostException: Unable to resolve host "eventgw.twilio.com": No address associated with hostname
06-07 17:45:35.082 3792-5165/com.app.dealer_app E/EventPublisher: java.net.UnknownHostException: Unable to resolve host "eventgw.twilio.com": No address associated with hostname
06-07 17:45:36.083 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:36.082Z","timestamp_ms":1496837736082,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":1083,"total_packets_received":1008,"total_packets_lost":0,"total_bytes_received":161280,"total_bytes_sent":173280,"jitter":21,"rtt":77,"audio_level_in":0,"audio_level_out":0,"mos":4.3798704303221765}
06-07 17:45:36.089 3792-4853/com.app.dealer_app D/EventPublisher: Start publishing events to : https://eventgw.twilio.com/v3/EndpointEvents
{"name":"high-jitter","group":"network-quality-warning-raised","timestamp":"2017-06-07T12:15:36.086Z","level":"WARNING","private":false,"payload_type":"application/json","publisher":"twilio-voice-android","publisher_metadata":{"client_address":"FE80::B0E2:F0FF:FE85:A010","os_name":"android","os_version":"7.1.2","device_model":"LGE Nexus 5X","device_vendor":"LGE","device_type":"Nexus 5X","cpu_architecture":"arm64-v8a"},"payload":{"timestamp_ms":1496837736084,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","platform":"android","direction":"OUTGOING","data":{"threshold":30,"values":[257396,8979,295,21,21]}}}
06-07 17:45:36.096 3792-5167/com.app.dealer_app E/EventPublisher: java.net.UnknownHostException: Unable to resolve host "eventgw.twilio.com": No address associated with hostname
06-07 17:45:36.096 3792-5167/com.app.dealer_app E/EventPublisher: java.net.UnknownHostException: Unable to resolve host "eventgw.twilio.com": No address associated with hostname
06-07 17:45:37.141 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:37.139Z","timestamp_ms":1496837737139,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":1083,"total_packets_received":1008,"total_packets_lost":0,"total_bytes_received":161280,"total_bytes_sent":173280,"jitter":21,"rtt":77,"audio_level_in":0,"audio_level_out":0,"mos":4.3798704303221765}
06-07 17:45:38.154 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:38.152Z","timestamp_ms":1496837738152,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":1083,"total_packets_received":1008,"total_packets_lost":0,"total_bytes_received":161280,"total_bytes_sent":173280,"jitter":21,"rtt":77,"audio_level_in":0,"audio_level_out":0,"mos":4.3798704303221765}
06-07 17:45:39.197 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:39.195Z","timestamp_ms":1496837739195,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":1083,"total_packets_received":1008,"total_packets_lost":0,"total_bytes_received":161280,"total_bytes_sent":173280,"jitter":21,"rtt":77,"audio_level_in":0,"audio_level_out":0,"mos":4.3798704303221765}
06-07 17:45:39.207 3792-4853/com.app.dealer_app D/EventPublisher: Start publishing events to : https://eventgw.twilio.com/v3/EndpointEvents
{"name":"high-jitter","group":"network-quality-warning-cleared","timestamp":"2017-06-07T12:15:39.201Z","level":"INFO","private":false,"payload_type":"application/json","publisher":"twilio-voice-android","publisher_metadata":{"client_address":"FE80::B0E2:F0FF:FE85:A010","os_name":"android","os_version":"7.1.2","device_model":"LGE Nexus 5X","device_vendor":"LGE","device_type":"Nexus 5X","cpu_architecture":"arm64-v8a"},"payload":{"timestamp_ms":1496837739198,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","platform":"android","direction":"OUTGOING"}}
06-07 17:45:39.218 3792-4994/com.app.dealer_app E/EventPublisher: java.net.UnknownHostException: Unable to resolve host "eventgw.twilio.com": No address associated with hostname
06-07 17:45:39.218 3792-4994/com.app.dealer_app E/EventPublisher: java.net.UnknownHostException: Unable to resolve host "eventgw.twilio.com": No address associated with hostname
06-07 17:45:40.254 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:40.250Z","timestamp_ms":1496837740250,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":1083,"total_packets_received":1008,"total_packets_lost":0,"total_bytes_received":161280,"total_bytes_sent":173280,"jitter":21,"rtt":77,"audio_level_in":0,"audio_level_out":0,"mos":4.3798704303221765}
06-07 17:45:41.293 3792-4853/com.app.dealer_app D/RTCStatsSample: {"timestamp":"2017-06-07T12:15:41.291Z","timestamp_ms":1496837741291,"call_sid":"CAa17dafc5d187021b6dd71024a8ab828a","sdk_version":"2.0.0-beta10","packets_received":0,"packets_lost":0,"packets_lost_fraction":0,"total_packets_sent":1083,"total_packets_received":1008,"total_packets_lost":0,"total_bytes_received":161280,"total_bytes_sent":173280,"jitter":21,"rtt":77,"audio_level_in":0,"audio_level_out":0,"mos":4.3798704303221765}
06-07 17:45:42.013 3792-3792/com.app.dealer_app D/CallControlManager: Exceeded the connectivity threshold of 7000 seconds. Disconnecting calls.
06-07 17:45:42.015 3792-4805/com.app.dealer_app E/CallControlManager: received transport error; status: -1378131800
06-07 17:45:42.015 3792-4805/com.app.dealer_app D/CallControlManager: received DISCONNECTED
06-07 17:45:42.016 3792-4805/com.app.dealer_app D/RTCMonitor: Stopped publishing
06-07 17:45:42.016 3792-4853/com.app.dealer_app D/RTCMonitor: java.lang.InterruptedException
06-07 17:45:42.016 3792-4805/com.app.dealer_app A/PJSIP: 17:45:42.016 pjsua_call.c .Failed to send end session message: Network is unreachable [status=120101]
06-07 17:45:42.017 3792-4805/com.app.dealer_app E/HangupCallCommand: Failed to hang up call
com.twilio.voice.impl.session.SessionException: pjsua_call_hangup(): Network is unreachable
at com.twilio.voice.impl.useragent.Call.hangup(Native Method)
at com.twilio.voice.impl.useragent.Call.hangup(Call.java:98)
at com.twilio.voice.HangupCallCommand.run(HangupCallCommand.java:24)
at android.os.Handler.handleCallback(Handler.java:751)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:154)
at com.twilio.voice.CallCommandHandlerImpl.run(CallCommandHandlerImpl.java:48)
06-07 17:45:42.120 3792-3828/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=31394, _sc=TwilioOutgoingCallActivity, _si=-8272505488395125239}]
06-07 17:45:42.152 3792-3792/com.app.dealer_app I/BeaconService: set scan intervals received
06-07 17:45:42.152 3792-3828/com.app.dealer_app D/FA: Connected to remote service
06-07 17:45:42.153 3792-3792/com.app.dealer_app I/CycledLeScanner: Adjusted nextScanStartTime to be Wed Jun 07 17:45:11 GMT+05:30 2017
06-07 17:45:42.331 3792-3875/com.app.dealer_app D/BluetoothAdapter: isLeEnabled(): ON
06-07 17:45:42.338 3792-3806/com.app.dealer_app D/BluetoothLeScanner: onClientRegistered() - status=0 clientIf=6 mClientIf=0
06-07 17:45:50.360 3792-3792/com.app.dealer_app D/CallControlManager: got connectivity broadcast: haveConn=true, reason=null, isFailover=false
06-07 17:45:50.363 3792-3792/com.app.dealer_app D/CallControlManager: got wifi SSID: "IdeaMessenger306"
06-07 17:45:50.364 3792-3792/com.app.dealer_app D/CallControlManager: NET CHANGE EVENT: connected=true, wasConnected=false, netTypeChanged=true
06-07 17:45:50.364 3792-3792/com.app.dealer_app D/CallControlManager: switched networks to type 1
06-07 17:45:55.480 3792-3828/com.app.dealer_app D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=13348, _sc=HomeActivity, _si=-8272505488395125240}]
06-07 17:45:55.488 3792-3792/com.app.dealer_app I/BeaconService: set scan intervals received
06-07 17:45:55.489 3792-3792/com.app.dealer_app I/CycledLeScanner: Adjusted scanStopTime to be 17735394
06-07 17:45:55.532 3792-4805/com.app.dealer_app I/libOpenSLES: Emulating old channel mask behavior (ignoring positional mask 0x4, using default mask 0x1 based on channel count of 1)
06-07 17:45:55.541 3792-3828/com.app.dealer_app D/FA: Connected to remote service
06-07 17:45:55.615 3792-3875/com.app.dealer_app D/BluetoothAdapter: isLeEnabled(): ON
06-07 17:45:55.619 3792-3875/com.app.dealer_app D/BluetoothAdapter: isLeEnabled(): ON
06-07 17:45:55.623 3792-3806/com.app.dealer_app D/BluetoothLeScanner: onClientRegistered() - status=0 clientIf=6 mClientIf=0
06-07 17:45:55.628 3792-4805/com.app.dealer_app W/AudioTrack: AUDIO_OUTPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, output 48000 Hz
06-07 17:45:55.631 3792-4805/com.app.dealer_app D/AudioTrack: Client defaulted notificationFrames to 216 for frameCount 648
06-07 17:45:55.631 3792-4805/com.app.dealer_app W/libOpenSLES: Conversion from OpenSL ES positional channel mask 0x4 to Android mask 0 loses channels
06-07 17:45:55.631 3792-4805/com.app.dealer_app I/libOpenSLES: Emulating old channel mask behavior (ignoring positional mask 0x4, using default mask 0x10 based on channel count of 1)
06-07 17:45:55.638 3792-4805/com.app.dealer_app W/AudioRecord: AUDIO_INPUT_FLAG_FAST denied by server; frameCount 0
06-07 17:45:55.824 3792-4805/com.app.dealer_app D/CallControlManager: onCallSDPCreated notification received
06-07 17:45:55.825 3792-4805/com.app.dealer_app E/CallControlManager: received transport error; status: -1378119512
06-07 17:45:55.825 3792-4805/com.app.dealer_app D/CallControlManager: received DISCONNECTED
06-07 17:45:55.826 3792-4805/com.app.dealer_app E/art: JNI ERROR (app bug): accessed deleted Global 0x100962
06-07 17:45:55.926 3792-3792/com.app.dealer_app I/BeaconService: set scan intervals received
06-07 17:45:55.928 3792-3792/com.app.dealer_app I/CycledLeScanner: Adjusted scanStopTime to be 17743781
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] JNI DETECTED ERROR IN APPLICATION: use of deleted global reference 0x100962
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] from void com.twilio.voice.impl.useragent.Call.makeCall(com.twilio.voice.impl.session.Account, java.lang.String, com.twilio.voice.impl.useragent.MessageData, boolean)
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] "Thread-16" prio=5 tid=47 Runnable
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] | group="main" sCount=0 dsCount=0 obj=0x12c6fce0 self=0x74add6c400
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] | sysTid=4805 nice=0 cgrp=default sched=0/0 handle=0x74acdf9450
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] | state=R schedstat=( 28402861 21178861 137 ) utm=1 stm=0 core=3 HZ=100
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] | stack=0x74accf7000-0x74accf9000 stackSize=1037KB
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] | held mutexes= "mutator lock"(shared held)
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] native: #00 pc 000000000047ef3c /system/lib64/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+220)
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] native: #1 pc 000000000047ef38 /system/lib64/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+216)
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] native: #2 pc 0000000000452fc4 /system/lib64/libart.so (_ZNK3art6Thread9DumpStackERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEbP12BacktraceMap+480)
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] native: #3 pc 00000000002f04a4 /system/lib64/libart.so (ZN3art9JavaVMExt8JniAbortEPKcS2+1136)
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] native: #4 pc 00000000002f0ca8 /system/lib64/libart.so (_ZN3art9JavaVMExt9JniAbortFEPKcS2_z+188)
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] native: #5 pc 0000000000457c24 /system/lib64/libart.so (_ZNK3art6Thread13DecodeJObjectEP8_jobject+352)
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] native: #6 pc 0000000000101ad8 /system/lib64/libart.so (_ZN3art11ScopedCheck13CheckInstanceERNS_18ScopedObjectAccessENS0_12InstanceKindEP8_jobjectb+196)
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] native: #7 pc 00000000000ffce8 /system/lib64/libart.so (_ZN3art11ScopedCheck5CheckERNS_18ScopedObjectAccessEbPKcPNS_12JniValueTypeE+1124)
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] native: #8 pc 0000000000103ec4 /system/lib64/libart.so (_ZN3art8CheckJNI9DeleteRefEPKcP7_JNIEnvP8_jobjectNS_15IndirectRefKindE+636)
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] native: #9 pc 000000000018695c /data/app/com.app.dealer_app-1/lib/arm64/libvoice.so (Java_com_twilio_voice_impl_useragent_Call_makeCall+472)
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] native: #10 pc 00000000000a357c /data/app/com.app.dealer_app-1/oat/arm64/base.odex (Java_com_twilio_voice_impl_useragent_Call_makeCall__Lcom_twilio_voice_impl_session_Account_2Ljava_lang_String_2Lcom_twilio_voice_impl_useragent_MessageData_2Z+216)
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] at com.twilio.voice.impl.useragent.Call.makeCall(Native method)
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] at com.twilio.voice.impl.useragent.Call.(Call.java:20)
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] at com.twilio.voice.CallControlManager.newCall(CallControlManager.java:551)
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] at com.twilio.voice.OutgoingCallCommand.run(OutgoingCallCommand.java:55)
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] at android.os.Handler.handleCallback(Handler.java:751)
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] at android.os.Handler.dispatchMessage(Handler.java:95)
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] at android.os.Looper.loop(Looper.java:154)
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470] at com.twilio.voice.CallCommandHandlerImpl.run(CallCommandHandlerImpl.java:48)
06-07 17:45:55.955 3792-4805/com.app.dealer_app A/art: art/runtime/java_vm_ext.cc:470]
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] Runtime aborting...
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] Aborting thread:
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] "Thread-16" prio=5 tid=47 Native
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | group="" sCount=0 dsCount=0 obj=0x12c6fce0 self=0x74add6c400
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | sysTid=4805 nice=0 cgrp=default sched=0/0 handle=0x74acdf9450
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | state=R schedstat=( 73781241 25859277 221 ) utm=2 stm=4 core=5 HZ=100
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | stack=0x74accf7000-0x74accf9000 stackSize=1037KB
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | held mutexes= "abort lock"
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000047ef3c /system/lib64/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+220)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #1 pc 000000000047ef38 /system/lib64/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+216)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #2 pc 0000000000452fc4 /system/lib64/libart.so (_ZNK3art6Thread9DumpStackERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEbP12BacktraceMap+480)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #3 pc 0000000000440f3c /system/lib64/libart.so (_ZNK3art10AbortState10DumpThreadERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEPNS_6ThreadE+56)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #4 pc 0000000000440db8 /system/lib64/libart.so (_ZNK3art10AbortState4DumpERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEE+668)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #5 pc 000000000043473c /system/lib64/libart.so (_ZN3art7Runtime5AbortEPKc+148)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #6 pc 00000000000e5afc /system/lib64/libart.so (_ZN3art10LogMessageD2Ev+1592)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #7 pc 00000000002f08cc /system/lib64/libart.so (ZN3art9JavaVMExt8JniAbortEPKcS2+2200)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #8 pc 00000000002f0ca8 /system/lib64/libart.so (_ZN3art9JavaVMExt9JniAbortFEPKcS2_z+188)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #9 pc 0000000000457c24 /system/lib64/libart.so (_ZNK3art6Thread13DecodeJObjectEP8_jobject+352)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #10 pc 0000000000101ad8 /system/lib64/libart.so (_ZN3art11ScopedCheck13CheckInstanceERNS_18ScopedObjectAccessENS0_12InstanceKindEP8_jobjectb+196)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #11 pc 00000000000ffce8 /system/lib64/libart.so (_ZN3art11ScopedCheck5CheckERNS_18ScopedObjectAccessEbPKcPNS_12JniValueTypeE+1124)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #12 pc 0000000000103ec4 /system/lib64/libart.so (_ZN3art8CheckJNI9DeleteRefEPKcP7_JNIEnvP8_jobjectNS_15IndirectRefKindE+636)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #13 pc 000000000018695c /data/app/com.app.dealer_app-1/lib/arm64/libvoice.so (Java_com_twilio_voice_impl_useragent_Call_makeCall+472)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #14 pc 00000000000a357c /data/app/com.app.dealer_app-1/oat/arm64/base.odex (???)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at com.twilio.voice.impl.useragent.Call.makeCall(Native method)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at com.twilio.voice.impl.useragent.Call.(Call.java:20)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at com.twilio.voice.CallControlManager.newCall(CallControlManager.java:551)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at com.twilio.voice.OutgoingCallCommand.run(OutgoingCallCommand.java:55)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at android.os.Handler.handleCallback(Handler.java:751)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at android.os.Handler.dispatchMessage(Handler.java:95)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at android.os.Looper.loop(Looper.java:154)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at com.twilio.voice.CallCommandHandlerImpl.run(CallCommandHandlerImpl.java:48)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] Dumping all threads without appropriate locks held: thread list lock mutator lock
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] All threads:
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] DALVIK THREADS (56):
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] "Thread-16" prio=5 tid=47 Runnable
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | group="" sCount=0 dsCount=0 obj=0x12c6fce0 self=0x74add6c400
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | sysTid=4805 nice=0 cgrp=default sched=0/0 handle=0x74acdf9450
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | state=R schedstat=( 116519783 25890162 225 ) utm=5 stm=5 core=5 HZ=100
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | stack=0x74accf7000-0x74accf9000 stackSize=1037KB
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | held mutexes= "abort lock" "mutator lock"(shared held)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000047ef3c /system/lib64/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+220)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #1 pc 000000000047ef38 /system/lib64/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+216)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #2 pc 0000000000452fc4 /system/lib64/libart.so (_ZNK3art6Thread9DumpStackERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEbP12BacktraceMap+480)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #3 pc 000000000046ab4c /system/lib64/libart.so (_ZN3art14DumpCheckpoint3RunEPNS_6ThreadE+832)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #4 pc 0000000000462d34 /system/lib64/libart.so (_ZN3art10ThreadList13RunCheckpointEPNS_7ClosureE+476)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #5 pc 0000000000462924 /system/lib64/libart.so (_ZN3art10ThreadList4DumpERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEb+848)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #6 pc 0000000000440d6c /system/lib64/libart.so (_ZNK3art10AbortState4DumpERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEE+592)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #7 pc 000000000043473c /system/lib64/libart.so (_ZN3art7Runtime5AbortEPKc+148)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #8 pc 00000000000e5afc /system/lib64/libart.so (_ZN3art10LogMessageD2Ev+1592)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #9 pc 00000000002f08cc /system/lib64/libart.so (ZN3art9JavaVMExt8JniAbortEPKcS2+2200)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #10 pc 00000000002f0ca8 /system/lib64/libart.so (_ZN3art9JavaVMExt9JniAbortFEPKcS2_z+188)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #11 pc 0000000000457c24 /system/lib64/libart.so (_ZNK3art6Thread13DecodeJObjectEP8_jobject+352)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #12 pc 0000000000101ad8 /system/lib64/libart.so (_ZN3art11ScopedCheck13CheckInstanceERNS_18ScopedObjectAccessENS0_12InstanceKindEP8_jobjectb+196)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #13 pc 00000000000ffce8 /system/lib64/libart.so (_ZN3art11ScopedCheck5CheckERNS_18ScopedObjectAccessEbPKcPNS_12JniValueTypeE+1124)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #14 pc 0000000000103ec4 /system/lib64/libart.so (_ZN3art8CheckJNI9DeleteRefEPKcP7_JNIEnvP8_jobjectNS_15IndirectRefKindE+636)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #15 pc 000000000018695c /data/app/com.app.dealer_app-1/lib/arm64/libvoice.so (Java_com_twilio_voice_impl_useragent_Call_makeCall+472)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #16 pc 00000000000a357c /data/app/com.app.dealer_app-1/oat/arm64/base.odex (Java_com_twilio_voice_impl_useragent_Call_makeCall__Lcom_twilio_voice_impl_session_Account_2Ljava_lang_String_2Lcom_twilio_voice_impl_useragent_MessageData_2Z+216)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at com.twilio.voice.impl.useragent.Call.makeCall(Native method)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at com.twilio.voice.impl.useragent.Call.(Call.java:20)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at com.twilio.voice.CallControlManager.newCall(CallControlManager.java:551)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at com.twilio.voice.OutgoingCallCommand.run(OutgoingCallCommand.java:55)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at android.os.Handler.handleCallback(Handler.java:751)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at android.os.Handler.dispatchMessage(Handler.java:95)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at android.os.Looper.loop(Looper.java:154)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at com.twilio.voice.CallCommandHandlerImpl.run(CallCommandHandlerImpl.java:48)
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422]
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] "main" prio=5 tid=1 Native
06-07 17:45:56.139 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x75aa1a88 self=0x74ce095a00
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | sysTid=3792 nice=-10 cgrp=default sched=0/0 handle=0x74d2006a98
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 2595869826 408758997 3687 ) utm=213 stm=45 core=2 HZ=100
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | stack=0x7fe9438000-0x7fe943a000 stackSize=8MB
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: SyS_epoll_wait+0x2d0/0x358
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: SyS_epoll_pwait+0xc8/0x160
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000006ab6c /system/lib64/libc.so (
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: do_sigtimedwait+0xec/0x1dc
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: SyS_rt_sigtimedwait+0xd8/0x134
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000006ad4c /system/lib64/libc.so (__rt_sigtimedwait+8)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #1 pc 0000000000024d48 /system/lib64/libc.so (sigwait+64)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #2 pc 00000000004456a0 /system/lib64/libart.so (_ZN3art9SignalSet4WaitEv+48)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #3 pc 000000000044515c /system/lib64/libart.so (_ZN3art13SignalCatcher13WaitForSignalEPNS_6ThreadERNS_9SignalSetE+232)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #4 pc 00000000004436f0 /system/lib64/libart.so (_ZN3art13SignalCatcher3RunEPv+400)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #5 pc 0000000000068734 /system/lib64/libc.so (_ZL15__pthread_startPv+208)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #6 pc 000000000001da7c /system/lib64/libc.so (__start_thread+16)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] (no managed stack frames)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422]
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] "JDWP" prio=5 tid=4 WaitingInMainDebuggerLoop
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12c2a550 self=0x74c6636400
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | sysTid=3799 nice=0 cgrp=default sched=0/0 handle=0x74cd503450
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 1045929359 173907434 647 ) utm=99 stm=4 core=4 HZ=100
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | stack=0x74cd409000-0x74cd40b000 stackSize=1005KB
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: poll_schedule_timeout+0x54/0xbc
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: do_select+0x454/0x4c0
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: core_sys_select+0x200/0x318
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: SyS_pselect6+0x180/0x230
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000006aca4 /system/lib64/libc.so (__pselect6+8)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #1 pc 0000000000023244 /system/lib64/libc.so (select+156)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #2 pc 00000000005581d0 /system/lib64/libart.so (_ZN3art4JDWP12JdwpAdbState15ProcessIncomingEv+348)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #3 pc 00000000003052b4 /system/lib64/libart.so (_ZN3art4JDWP9JdwpState3RunEv+916)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #4 pc 0000000000304764 /system/lib64/libart.so (_ZN3art4JDWPL15StartJdwpThreadEPv+48)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #5 pc 0000000000068734 /system/lib64/libc.so (_ZL15__pthread_startPv+208)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #6 pc 000000000001da7c /system/lib64/libc.so (__start_thread+16)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] (no managed stack frames)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422]
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] "ReferenceQueueDaemon" prio=5 tid=5 Waiting
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12c2a5e0 self=0x74c3ccce00
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | sysTid=3800 nice=0 cgrp=default sched=0/0 handle=0x74cd406450
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 11030354 1072762 32 ) utm=0 stm=0 core=2 HZ=100
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | stack=0x74cd304000-0x74cd306000 stackSize=1037KB
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcec /system/lib64/libc.so (syscall+28)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e7e4c /system/lib64/libart.so (ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+156)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #2 pc 000000000037c0ac /system/lib64/libart.so (ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+660)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #3 pc 0000000000000810 /system/framework/arm64/boot.oat (Java_java_lang_Object_wait
+124)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Object.wait!(Native method)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] - waiting on <0x06b758ca> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Daemons$ReferenceQueueDaemon.run(Daemons.java:150)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] - locked <0x06b758ca> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Thread.run(Thread.java:761)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422]
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] "FinalizerDaemon" prio=5 tid=6 Waiting
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12c2a670 self=0x74c3ccd800
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | sysTid=3801 nice=0 cgrp=default sched=0/0 handle=0x74cd301450
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 14675567 3445835 26 ) utm=1 stm=0 core=5 HZ=100
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | stack=0x74cd1ff000-0x74cd201000 stackSize=1037KB
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcec /system/lib64/libc.so (syscall+28)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e7e4c /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+156)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #2 pc 000000000037c0ac /system/lib64/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+660)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #3 pc 0000000000000980 /system/framework/arm64/boot.oat (Java_java_lang_Object_wait__JI+140)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Object.wait!(Native method)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] - waiting on <0x0f5a8a3b> (a java.lang.Object)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Object.wait(Object.java:407)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:188)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] - locked <0x0f5a8a3b> (a java.lang.Object)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:209)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:204)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Thread.run(Thread.java:761)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422]
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] "FinalizerWatchdogDaemon" prio=5 tid=7 Sleeping
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12c2a700 self=0x74c3cce200
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | sysTid=3802 nice=0 cgrp=default sched=0/0 handle=0x74cd1fc450
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 1066043 667396 14 ) utm=0 stm=0 core=0 HZ=100
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | stack=0x74cd0fa000-0x74cd0fc000 stackSize=1037KB
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcf0 /system/lib64/libc.so (syscall+32)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e83ec /system/lib64/libart.so (_ZN3art17ConditionVariable9TimedWaitEPNS_6ThreadEli+176)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #2 pc 000000000037c0bc /system/lib64/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+676)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #3 pc 00000000000b8288 /system/framework/arm64/boot.oat (Java_java_lang_Thread_sleep__Ljava_lang_Object_2JI+164)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Thread.sleep!(Native method)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] - sleeping on <0x044d0558> (a java.lang.Object)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Thread.sleep(Thread.java:371)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] - locked <0x044d0558> (a java.lang.Object)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Thread.sleep(Thread.java:313)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Daemons$FinalizerWatchdogDaemon.sleepFor(Daemons.java:314)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Daemons$FinalizerWatchdogDaemon.waitForFinalization(Daemons.java:336)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Daemons$FinalizerWatchdogDaemon.run(Daemons.java:253)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Thread.run(Thread.java:761)
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422]
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] "HeapTaskDaemon" prio=5 tid=8 Blocked
06-07 17:45:56.140 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12c2a790 self=0x74c3ccec00
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | sysTid=3805 nice=0 cgrp=default sched=0/0 handle=0x74cd0f7450
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 169063761 2610936 61 ) utm=16 stm=0 core=4 HZ=100
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | stack=0x74ccff5000-0x74ccff7000 stackSize=1037KB
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcf0 /system/lib64/libc.so (syscall+32)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e83ec /system/lib64/libart.so (_ZN3art17ConditionVariable9TimedWaitEPNS_6ThreadEli+176)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #2 pc 00000000002428fc /system/lib64/libart.so (ZN3art2gc13TaskProcessor7GetTaskEPNS_6ThreadE+344)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #3 pc 00000000002431f0 /system/lib64/libart.so (ZN3art2gc13TaskProcessor11RunAllTasksEPNS_6ThreadE+92)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #4 pc 00000000001e6ac0 /system/framework/arm64/boot-core-libart.oat (Java_dalvik_system_VMRuntime_runHeapTasks
+124)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at dalvik.system.VMRuntime.runHeapTasks(Native method)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] - waiting to lock an unknown object
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Daemons$HeapTaskDaemon.run(Daemons.java:433)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Thread.run(Thread.java:761)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422]
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] "Binder:3792_1" prio=5 tid=9 Native
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12c2a940 self=0x74c3d5d400
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | sysTid=3806 nice=0 cgrp=default sched=0/0 handle=0x74ccef4450
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 63426359 29358955 203 ) utm=3 stm=2 core=3 HZ=100
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | stack=0x74ccdfa000-0x74ccdfc000 stackSize=1005KB
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: binder_thread_read+0xedc/0x1024
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: binder_ioctl+0x428/0x894
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: do_vfs_ioctl+0x4bc/0x5a8
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: SyS_ioctl+0x74/0xbc
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000006ac58 /system/lib64/libc.so (__ioctl+4)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #1 pc 000000000001fab4 /system/lib64/libc.so (ioctl+140)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #2 pc 0000000000055568 /system/lib64/libbinder.so (_ZN7android14IPCThreadState14talkWithDriverEb+264)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #3 pc 00000000000556cc /system/lib64/libbinder.so (_ZN7android14IPCThreadState20getAndExecuteCommandEv+24)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #4 pc 0000000000055e04 /system/lib64/libbinder.so (_ZN7android14IPCThreadState14joinThreadPoolEb+72)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #5 pc 0000000000072d48 /system/lib64/libbinder.so (???)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #6 pc 000000000001245c /system/lib64/libutils.so (_ZN7android6Thread11_threadLoopEPv+272)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #7 pc 000000000009f1b0 /system/lib64/libandroid_runtime.so (_ZN7android14AndroidRuntime15javaThreadShellEPv+116)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #8 pc 0000000000068734 /system/lib64/libc.so (_ZL15__pthread_startPv+208)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #9 pc 000000000001da7c /system/lib64/libc.so (__start_thread+16)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] (no managed stack frames)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422]
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] "Binder:3792_2" prio=5 tid=10 Native
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12c2a9d0 self=0x74c6650800
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | sysTid=3807 nice=0 cgrp=default sched=0/0 handle=0x74ccdf7450
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 71664430 44919677 198 ) utm=5 stm=1 core=0 HZ=100
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | stack=0x74cccfd000-0x74cccff000 stackSize=1005KB
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: binder_thread_read+0xedc/0x1024
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: binder_ioctl+0x428/0x894
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: do_vfs_ioctl+0x4bc/0x5a8
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: SyS_ioctl+0x74/0xbc
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000006ac58 /system/lib64/libc.so (__ioctl+4)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #1 pc 000000000001fab4 /system/lib64/libc.so (ioctl+140)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #2 pc 0000000000055568 /system/lib64/libbinder.so (_ZN7android14IPCThreadState14talkWithDriverEb+264)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #3 pc 00000000000556cc /system/lib64/libbinder.so (_ZN7android14IPCThreadState20getAndExecuteCommandEv+24)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #4 pc 0000000000055e04 /system/lib64/libbinder.so (_ZN7android14IPCThreadState14joinThreadPoolEb+72)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #5 pc 0000000000072d48 /system/lib64/libbinder.so (???)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #6 pc 000000000001245c /system/lib64/libutils.so (_ZN7android6Thread11_threadLoopEPv+272)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #7 pc 000000000009f1b0 /system/lib64/libandroid_runtime.so (_ZN7android14AndroidRuntime15javaThreadShellEPv+116)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #8 pc 0000000000068734 /system/lib64/libc.so (_ZL15__pthread_startPv+208)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #9 pc 000000000001da7c /system/lib64/libc.so (__start_thread+16)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] (no managed stack frames)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422]
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] "Profile Saver" prio=5 tid=11 Native
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12c2aca0 self=0x74c3d96800
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | sysTid=3811 nice=-10 cgrp=default sched=0/0 handle=0x74cccf2450
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 40415990 973125 41 ) utm=2 stm=1 core=0 HZ=100
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | stack=0x74ccbf8000-0x74ccbfa000 stackSize=1005KB
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcec /system/lib64/libc.so (syscall+28)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e7e4c /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+156)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #2 pc 000000000031e614 /system/lib64/libart.so (_ZN3art12ProfileSaver3RunEv+284)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #3 pc 000000000031fd4c /system/lib64/libart.so (_ZN3art12ProfileSaver21RunProfileSaverThreadEPv+100)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #4 pc 0000000000068734 /system/lib64/libc.so (_ZL15__pthread_startPv+208)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #5 pc 000000000001da7c /system/lib64/libc.so (__start_thread+16)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] (no managed stack frames)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422]
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] "pool-1-thread-1" prio=5 tid=12 Waiting
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12c870d0 self=0x74ce097800
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | sysTid=3827 nice=0 cgrp=default sched=0/0 handle=0x74ccb54450
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 103464962 32469576 281 ) utm=5 stm=4 core=5 HZ=100
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | stack=0x74cca52000-0x74cca54000 stackSize=1037KB
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcec /system/lib64/libc.so (syscall+28)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e7e4c /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+156)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #2 pc 000000000037c0ac /system/lib64/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+660)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #3 pc 0000000000000980 /system/framework/arm64/boot.oat (Java_java_lang_Object_wait__JI+140)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Object.wait!(Native method)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] - waiting on <0x067c46b1> (a java.lang.Object)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Thread.parkFor$(Thread.java:2127)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] - locked <0x067c46b1> (a java.lang.Object)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at sun.misc.Unsafe.park(Unsafe.java:325)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:161)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2035)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:413)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1058)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1118)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Thread.run(Thread.java:761)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422]
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] "Measurement Worker" prio=5 tid=13 TimedWaiting
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12ca84c0 self=0x74ce098200
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | sysTid=3828 nice=0 cgrp=default sched=0/0 handle=0x74cca48450
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 188655516 58179378 347 ) utm=14 stm=3 core=4 HZ=100
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | stack=0x74cc946000-0x74cc948000 stackSize=1037KB
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcf0 /system/lib64/libc.so (syscall+32)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e83ec /system/lib64/libart.so (_ZN3art17ConditionVariable9TimedWaitEPNS_6ThreadEli+176)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #2 pc 000000000037c0bc /system/lib64/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+676)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #3 pc 0000000000000980 /system/framework/arm64/boot.oat (Java_java_lang_Object_wait__JI+140)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Object.wait!(Native method)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] - waiting on <0x0e5a3796> (a java.lang.Object)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Object.wait(Object.java:407)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at com.google.android.gms.internal.zzaud$zzd.run(unavailable:-1)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422]
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] "Queue" prio=5 tid=14 Waiting
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12cc7280 self=0x74c3ccf600
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | sysTid=3829 nice=-8 cgrp=default sched=0/0 handle=0x74c6ca0450
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 22856720 728594 39 ) utm=1 stm=0 core=4 HZ=100
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | stack=0x74c6b9e000-0x74c6ba0000 stackSize=1037KB
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcec /system/lib64/libc.so (syscall+28)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e7e4c /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+156)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #2 pc 000000000037c0ac /system/lib64/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+660)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #3 pc 0000000000000980 /system/framework/arm64/boot.oat (Java_java_lang_Object_wait__JI+140)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Object.wait!(Native method)
06-07 17:45:56.141 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] - waiting on <0x0d5d8f17> (a java.lang.Object)
06-07 17:45:56.142 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:161)
06-07 17:45:56.142 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2035)
06-07 17:45:56.142 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.util.concurrent.PriorityBlockingQueue.take(PriorityBlockingQueue.java:519)
06-07 17:45:56.142 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1058)
06-07 17:45:56.142 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 17:45:56.143 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Object.wait!(Native method)
06-07 17:45:56.143 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] - waiting on <0x07ab2770> (a java.lang.Object)
06-07 17:45:56.143 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 17:45:56.143 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 17:45:56.143 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 17:45:56.143 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 17:45:56.143 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 17:45:56.143 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Thread.parkFor$(Thread.java:2127)
06-07 17:45:56.143 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Thread.run(Thread.java:761)
06-07 17:45:56.143 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 17:45:56.143 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 17:45:56.144 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Object.wait!(Native method)
06-07 17:45:56.144 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 17:45:56.144 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
06-07 17:45:56.144 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12df0920 self=0x74b3a39200
06-07 17:45:56.144 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 17:45:56.144 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] - waiting on <0x0df34a9c> (a java.lang.Object)
06-07 17:45:56.144 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12df09c0 self=0x74b3ae8200
06-07 17:45:56.145 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] "Thread-14" prio=5 tid=27 Native
06-07 17:45:56.145 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: SyS_futex+0x11c/0x1b0
06-07 17:45:56.145 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at libcore.io.Posix.writeBytes(Native method)
06-07 17:45:56.145 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:140)
06-07 17:45:56.145 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 22292807 7383547 42 ) utm=1 stm=0 core=1 HZ=100
06-07 17:45:56.145 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 17:45:56.145 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at com.android.okhttp.internal.http.HttpEngine.connect(HttpEngine.java:329)
06-07 17:45:56.145 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at com.android.volley.NetworkDispatcher.run(NetworkDispatcher.java:114)
06-07 17:45:56.145 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422]
06-07 17:45:56.145 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] "RenderThread" prio=5 tid=28 Native
06-07 17:45:56.145 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12e271f0 self=0x74c6656c00
06-07 17:45:56.146 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #2 pc 0000000000018010 /system/lib64/libutils.so (_ZN7android6Looper9pollInnerEi+156)
06-07 17:45:56.146 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | sysTid=3873 nice=0 cgrp=default sched=0/0 handle=0x74b02fd450
06-07 17:45:56.146 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 1059428 325833 14 ) utm=0 stm=0 core=1 HZ=100
06-07 17:45:56.146 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 17:45:56.146 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e83ec /system/lib64/libart.so (_ZN3art17ConditionVariable9TimedWaitEPNS_6ThreadEli+176)
06-07 17:45:56.146 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | sysTid=3875 nice=0 cgrp=default sched=0/0 handle=0x74afcbb450
06-07 17:45:56.146 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000006ab6c /system/lib64/libc.so (__epoll_pwait+8)
06-07 17:45:56.146 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #3 pc 0000000000017eb4 /system/lib64/libutils.so (_ZN7android6Looper8pollOnceEiPiS1_PPv+60)
06-07 17:45:56.146 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #4 pc 00000000000f0cf4 /system/lib64/libandroid_runtime.so (_ZN7android18NativeMessageQueue8pollOnceEP7_JNIEnvP8_jobjecti+48)
06-07 17:45:56.146 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12f34af0 self=0x74b3afca00
06-07 17:45:56.146 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #2 pc 000000000037c0bc /system/lib64/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+676)
06-07 17:45:56.146 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #3 pc 0000000000000980 /system/framework/arm64/boot.oat (Java_java_lang_Object_wait__JI+140)
06-07 17:45:56.146 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Object.wait!(Native method)
06-07 17:45:56.146 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #1 pc 0000000000067e64 /system/lib64/libc.so (pthread_cond_wait+96)
06-07 17:45:56.146 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #2 pc 000000000003bb54 /system/lib64/libhwui.so (???)
06-07 17:45:56.147 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 17:45:56.147 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #4 pc 000000000009f1b0 /system/lib64/libandroid_runtime.so (_ZN7android14AndroidRuntime15javaThreadShellEPv+116)
06-07 17:45:56.147 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #6 pc 000000000001da7c /system/lib64/libc.so (__start_thread+16)
06-07 17:45:56.147 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 17:45:56.147 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 17:45:56.147 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 17:45:56.147 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #7 pc 0000000000072d48 /system/lib64/libbinder.so (???)
06-07 17:45:56.147 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x12c87e50 self=0x74b3ba9800
06-07 17:45:56.147 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Object.wait!(Native method)
06-07 17:45:56.147 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:161)
06-07 17:45:56.147 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 17:45:56.148 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at com.twilio.voice.Registrar.nativeFreeRegistrar(Native method)
06-07 17:45:56.148 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at com.twilio.voice.Registrar.onError(Registrar.java:119)
06-07 17:45:56.148 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 17:45:56.148 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422]
06-07 17:45:56.148 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] ".app.dealer_app - 4443" prio=5 tid=30 Native
06-07 17:45:56.148 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 17:45:56.148 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: do_futex+0xe0/0x920
06-07 17:45:56.148 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcec /system/lib64/libc.so (syscall+28)
06-07 17:45:56.148 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcec /system/lib64/libc.so (syscall+28)
06-07 17:45:56.148 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e7e4c /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+156)
06-07 17:45:56.148 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:413)
06-07 17:45:56.148 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1058)
06-07 17:45:56.149 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcec /system/lib64/libc.so (syscall+28)
06-07 17:45:56.149 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e7e4c /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+156)
06-07 17:45:56.149 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:413)
06-07 17:45:56.149 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
06-07 17:45:56.149 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | sysTid=4580 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0x74ad9f5450
06-07 17:45:56.149 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 17:45:56.149 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Object.wait!(Native method)
06-07 17:45:56.149 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Thread.run(Thread.java:761)
06-07 17:45:56.149 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422]
06-07 17:45:56.149 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | state=S schedstat=( 11746146 4998386 14 ) utm=0 stm=0 core=2 HZ=100
06-07 17:45:56.149 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2035)
06-07 17:45:56.149 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | group="" sCount=1 dsCount=0 obj=0x130dec10 self=0x74adc29800
06-07 17:45:56.149 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: __switch_to+0x8c/0x98
06-07 17:45:56.149 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: cpu_switch_to+0x48/0x4c
06-07 17:45:56.150 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.lang.Thread.parkFor$(Thread.java:2127)
06-07 17:45:56.150 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2035)
06-07 17:45:56.150 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:413)
06-07 17:45:56.150 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] "pool-5-thread-7" prio=5 tid=44 Waiting
06-07 17:45:56.150 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | held mutexes=
06-07 17:45:56.150 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcec /system/lib64/libc.so (syscall+28)
06-07 17:45:56.150 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #3 pc 0000000000000980 /system/framework/arm64/boot.oat (Java_java_lang_Object_wait__JI+140)
06-07 17:45:56.151 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait+0xfc/0x210
06-07 17:45:56.152 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #1 pc 00000000000e83ec /system/lib64/libart.so (_ZN3art17ConditionVariable9TimedWaitEPNS_6ThreadEli+176)
06-07 17:45:56.152 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] | sysTid=5862 nice=-10 cgrp=default sched=0/0 handle=0x74a98fc450
06-07 17:45:56.152 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 17:45:56.152 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #00 pc 000000000001bcec /system/lib64/libc.so (syscall+28)
06-07 17:45:56.152 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #7 pc 0000000000068734 /system/lib64/libc.so (_ZL15__pthread_startPv+208)
06-07 17:45:56.152 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] kernel: futex_wait_queue_me+0xd4/0x130
06-07 17:45:56.152 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:422] native: #5 pc 000000000034a8e4 /data/app/com.app.dealer_app-1/lib/arm64/libvoice.so (???)
06-07 17:45:56.152 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:427] JNI DETECTED ERROR IN APPLICATION: use of deleted global reference 0x100962
06-07 17:45:56.152 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:427] from void com.twilio.voice.impl.useragent.Call.makeCall(com.twilio.voice.impl.session.Account, java.lang.String, com.twilio.voice.impl.useragent.MessageData, boolean)
06-07 17:45:56.152 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:427] "Thread-16" prio=5 tid=47 Runnable
06-07 17:45:56.152 3792-4805/com.app.dealer_app A/art: art/runtime/runtime.cc:427] | group="main" sCount=0 dsCount=0 obj=0x12c6fce0 self=0x74add6c400
06-07 17:45:56.153 3792-4805/com.app.dealer_app A/libc: Fatal signal 6 (SIGABRT), code -6 in tid 4805 (Thread-16)

                                                    [ 06-07 17:45:56.154 372: 372 W/ ]
                                                    debuggerd: handling request: pid=3792 uid=10749 gid=10749 tid=4805

Please provide me the solution,I need it urgently.

Error in twilio voice quickstart app

@abhinay-w3bminds filed the following issue: twilio/video-quickstart-android#46

stacktrace of my app

JNI DETECTED ERROR IN APPLICATION: use of deleted global reference 0x2008da

01-05 18:04:55.286 25034-25034/? I/art: Late-enabling -Xcheck:jni
01-05 18:04:55.359 25034-25034/com.twilio.voice.quickstart I/InstantRun: Instant Run Runtime started. Android package is com.twilio.voice.quickstart, real application class is null.
01-05 18:05:05.887 25034-25034/com.twilio.voice.quickstart D/FirebaseApp: com.google.firebase.auth.FirebaseAuth is not linked. Skipping initialization.
01-05 18:05:05.901 25034-25034/com.twilio.voice.quickstart W/InstanceID/Rpc: Found 10034
01-05 18:05:05.913 25034-25034/com.twilio.voice.quickstart D/FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization.
01-05 18:05:05.941 25034-25034/com.twilio.voice.quickstart I/FA: App measurement is starting up, version: 9452
01-05 18:05:05.942 25034-25034/com.twilio.voice.quickstart I/FA: To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
01-05 18:05:05.942 25034-25034/com.twilio.voice.quickstart D/FA: Debug logging enabled
01-05 18:05:05.942 25034-25034/com.twilio.voice.quickstart D/FA: AppMeasurement singleton hash: 242193723
01-05 18:05:05.997 25034-25034/com.twilio.voice.quickstart I/FirebaseInitProvider: FirebaseApp initialization successful
01-05 18:05:06.220 25034-25034/com.twilio.voice.quickstart W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
01-05 18:05:06.643 25034-25449/com.twilio.voice.quickstart I/Adreno: QUALCOMM build : 7d18700, I8ee426a9a2
Build Date : 10/07/16
OpenGL ES Shader Compiler Version: XE031.09.00.03
Local Branch : mybranch22308589
Remote Branch : quic/LA.BR.1.3.6_rb1.6
Remote Branch : NONE
Reconstruct Branch : NOTHING
01-05 18:05:06.659 25034-25449/com.twilio.voice.quickstart I/OpenGLRenderer: Initialized EGL, version 1.4
01-05 18:05:06.660 25034-25449/com.twilio.voice.quickstart D/OpenGLRenderer: Swap behavior 1
01-05 18:05:06.820 25034-25438/com.twilio.voice.quickstart D/FA: Connected to remote service
01-05 18:05:10.765 25034-25526/com.twilio.voice.quickstart W/InstanceID/Rpc: Found 10034
01-05 18:05:11.518 25034-25034/com.twilio.voice.quickstart I/VoiceActivity: GCM Token : cZjg1gOXjrI:APA91bG237MpqqAaumdkObnO5_gLmTSIYOheI9Lzyf79SSFx8UHCL_oeRKg29Kj6qEgr3kNZYO28wvFTyCVnkC1N_55Njlxpipybtx13GUq1xtVQx3wHcpqx6RB4ZndHOm-RuND2L3sa
01-05 18:05:11.700 25034-25544/com.twilio.voice.quickstart D/NetworkSecurityConfig: No Network Security Config specified, using platform default
01-05 18:05:11.767 25034-25544/com.twilio.voice.quickstart W/linker: /data/app/com.google.android.gms-1/lib/arm/libgmscore.so: unused DT entry: type 0x7ffffffd arg 0x79f
01-05 18:05:11.775 25034-25544/com.twilio.voice.quickstart W/linker: /data/app/com.google.android.gms-1/lib/arm/libconscrypt_gmscore_jni.so: unused DT entry: type 0x7ffffffd arg 0x1cb
01-05 18:05:11.829 25034-25544/com.twilio.voice.quickstart I/ProviderInstaller: Installed default security provider GmsCore_OpenSSL
01-05 18:05:12.074 25034-25034/com.twilio.voice.quickstart D/VoiceActivity: Access token: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiIsImN0eSI6InR3aWxpby1mcGE7dj0xIn0.eyJqdGkiOiJTS2ZjMWRkYzhlNzBiMDIwYzM5NmJiZjdkYmIwNTMzMTA2LTE0ODM2MTk3MTIiLCJpc3MiOiJTS2ZjMWRkYzhlNzBiMDIwYzM5NmJiZjdkYmIwNTMzMTA2Iiwic3ViIjoiQUNiMzAyYjljNzczMDFlNTI2MWYwMDI2YTVkYjhmNzdjYyIsImV4cCI6MTQ4MzYyMzMxMiwiZ3JhbnRzIjp7ImlkZW50aXR5IjoiS2lsbGVyV2VuZHlKYW1lc3Rvd24iLCJ2b2ljZSI6eyJvdXRnb2luZyI6eyJhcHBsaWNhdGlvbl9zaWQiOiJBUDBhMjg4NWEyNTY5YTdlODg4ZjEwNjczYTQ0NjJmZjVhIn0sImVuZHBvaW50X2lkIjoiVFRUIFN0YXJ0dXAgQXBwbGljYXRpb24ifX19.KXtSpabzQfo7u0VHu10g5ZLycrM0jIgMNabS4oT4sSg
01-05 18:05:14.796 25034-25034/com.twilio.voice.quickstart D/VoiceActivity: Successfully registered
01-05 18:05:15.442 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.442 os_core_unix.c !pjlib 2.5.1 for POSIX initialized
01-05 18:05:15.445 25034-25034/com.twilio.voice.quickstart D/PJSIP: 18:05:15.445 sip_endpoint.c .Creating endpoint instance...
01-05 18:05:15.445 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.445 pjlib .select() I/O Queue created (0x7fd36a84)
01-05 18:05:15.445 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.445 sip_endpoint.c .Module "mod-msg-print" registered
01-05 18:05:15.445 25034-25034/com.twilio.voice.quickstart D/PJSIP: 18:05:15.445 sip_transport. .Transport manager created.
01-05 18:05:15.445 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.445 pjsua_core.c .PJSUA state changed: NULL --> CREATED
01-05 18:05:15.447 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.447 sip_endpoint.c .Module "mod-pjsua-log" registered
01-05 18:05:15.447 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.447 pjsua_core.c .Nameserver 49.45.0.1 added
01-05 18:05:15.447 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.447 pjsua_core.c .Nameserver 0.2.5.36 added
01-05 18:05:15.447 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.447 sip_endpoint.c .Module "mod-tsx-layer" registered
01-05 18:05:15.447 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.447 sip_endpoint.c .Module "mod-stateful-util" registered
01-05 18:05:15.447 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.447 sip_endpoint.c .Module "mod-ua" registered
01-05 18:05:15.447 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.447 sip_endpoint.c .Module "mod-100rel" registered
01-05 18:05:15.447 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.447 sip_endpoint.c .Module "mod-pjsua" registered
01-05 18:05:15.448 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.448 sip_endpoint.c .Module "mod-invite" registered
01-05 18:05:15.448 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.448 opensl_dev.c ..OpenSL sound library initialized
01-05 18:05:15.448 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.448 android_jni_de ..Android JNI sound library initialized
01-05 18:05:15.448 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.448 pjlib ..select() I/O Queue created (0x8b384e14)
01-05 18:05:15.455 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.455 sip_endpoint.c .Module "mod-evsub" registered
01-05 18:05:15.455 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.455 sip_endpoint.c .Module "mod-presence" registered
01-05 18:05:15.455 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.455 sip_endpoint.c .Module "mod-mwi" registered
01-05 18:05:15.455 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.455 sip_endpoint.c .Module "mod-refer" registered
01-05 18:05:15.455 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.455 sip_endpoint.c .Module "mod-pjsua-pres" registered
01-05 18:05:15.455 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.455 sip_endpoint.c .Module "mod-pjsua-im" registered
01-05 18:05:15.455 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.455 sip_endpoint.c .Module "mod-pjsua-options" registered
01-05 18:05:15.456 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.456 pjsua_core.c .1 SIP worker threads created
01-05 18:05:15.456 25034-25034/com.twilio.voice.quickstart W/PJSIP: 18:05:15.456 pjsua_core.c .pjsua version 2.5.1 for Linux-3.10.84/armv7l initialized
01-05 18:05:15.456 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.456 pjsua_core.c .PJSUA state changed: CREATED --> INIT
01-05 18:05:15.459 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.459 tlstp:38388 SIP TLS listener is ready for incoming connections at 10.20.219.24:38388
01-05 18:05:15.459 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.459 pjsua_core.c PJSUA state changed: INIT --> STARTING
01-05 18:05:15.459 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.459 sip_endpoint.c .Module "mod-unsolicited-mwi" registered
01-05 18:05:15.459 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.459 pjsua_core.c .PJSUA state changed: STARTING --> RUNNING
01-05 18:05:15.460 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.460 pjsua_acc.c Adding account: id=sip:[email protected]
01-05 18:05:15.461 25034-25034/com.twilio.voice.quickstart I/PJSIP: 18:05:15.461 pjsua_acc.c .Account sip:[email protected] added with id 0
01-05 18:05:15.488 25034-25618/com.twilio.voice.quickstart I/libOpenSLES: Emulating old channel mask behavior (ignoring positional mask 0x4, using default mask 0x1 based on channel count of 1)
01-05 18:05:15.489 25034-25618/com.twilio.voice.quickstart W/AudioTrack: AUDIO_OUTPUT_FLAG_FAST denied by client; transfer 1, track 16000 Hz, output 48000 Hz
01-05 18:05:15.490 25034-25618/com.twilio.voice.quickstart D/AudioTrack: Client defaulted notificationFrames to 216 for frameCount 648
01-05 18:05:15.491 25034-25618/com.twilio.voice.quickstart W/libOpenSLES: Conversion from OpenSL ES positional channel mask 0x4 to Android mask 0 loses channels
01-05 18:05:15.491 25034-25618/com.twilio.voice.quickstart I/libOpenSLES: Emulating old channel mask behavior (ignoring positional mask 0x4, using default mask 0x10 based on channel count of 1)
01-05 18:05:15.496 25034-25618/com.twilio.voice.quickstart W/AudioRecord: AUDIO_INPUT_FLAG_FAST denied by server; frameCount 0
01-05 18:05:16.003 25034-25618/com.twilio.voice.quickstart E/CallControlManager: received transport error; status: -1964105628
01-05 18:05:16.007 25034-25618/com.twilio.voice.quickstart E/art: JNI ERROR (app bug): accessed stale global reference 0x2008da (index 566 in a table of size 566)
01-05 18:05:16.010 25034-25034/com.twilio.voice.quickstart E/VoiceActivity: Error: 31000, code:31000, message:Generic error
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] JNI DETECTED ERROR IN APPLICATION: use of deleted global reference 0x2008da
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] from void com.twilio.voice.impl.useragent.Call.makeCall(com.twilio.voice.impl.session.Account, java.lang.String, com.twilio.voice.impl.useragent.MessageData)
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] "Thread-5" prio=5 tid=24 Runnable
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] | group="main" sCount=0 dsCount=0 obj=0x12f9aec0 self=0x8af1a800
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] | sysTid=25618 nice=0 cgrp=default sched=0/0 handle=0x7fa02920
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] | state=R schedstat=( 22730627 15206979 79 ) utm=1 stm=0 core=5 HZ=100
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] | stack=0x7f900000-0x7f902000 stackSize=1038KB
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] | held mutexes= "mutator lock"(shared held)
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] native: #00 pc 0034e7f1 /system/lib/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+128)
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] native: #1 pc 0032f1b5 /system/lib/libart.so (_ZNK3art6Thread9DumpStackERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEbP12BacktraceMap+308)
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] native: #2 pc 00238a9d /system/lib/libart.so (ZN3art9JavaVMExt8JniAbortEPKcS2+848)
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] native: #3 pc 00239033 /system/lib/libart.so (_ZN3art9JavaVMExt9JniAbortFEPKcS2_z+66)
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] native: #4 pc 00332bdd /system/lib/libart.so (_ZNK3art6Thread13DecodeJObjectEP8_jobject+240)
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] native: #5 pc 000c9991 /system/lib/libart.so (_ZN3art11ScopedCheck13CheckInstanceERNS_18ScopedObjectAccessENS0_12InstanceKindEP8_jobjectb+120)
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] native: #6 pc 000c8f43 /system/lib/libart.so (_ZN3art11ScopedCheck22CheckPossibleHeapValueERNS_18ScopedObjectAccessEcNS_12JniValueTypeE+190)
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] native: #7 pc 000c837b /system/lib/libart.so (_ZN3art11ScopedCheck5CheckERNS_18ScopedObjectAccessEbPKcPNS_12JniValueTypeE+802)
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] native: #8 pc 000cb38d /system/lib/libart.so (_ZN3art8CheckJNI9DeleteRefEPKcP7_JNIEnvP8_jobjectNS_15IndirectRefKindE+456)
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] native: #9 pc 00120e47 /data/app/com.twilio.voice.quickstart-1/lib/arm/libvoice.so (Java_com_twilio_voice_impl_useragent_Call_makeCall+174)
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] native: #10 pc 000122ad /data/data/com.twilio.voice.quickstart/cache/slice-com.twilio-voice-android-2.0.0-beta3_71d18afe0c63b5d95145a1eb78426975d3464f7e-classes.dex (Java_com_twilio_voice_impl_useragent_Call_makeCall__Lcom_twilio_voice_impl_session_Account_2Ljava_lang_String_2Lcom_twilio_voice_impl_useragent_MessageData_2+144)
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] at com.twilio.voice.impl.useragent.Call.makeCall(Native method)
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] at com.twilio.voice.impl.useragent.Call.(Call.java:20)
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] at com.twilio.voice.CallControlManager.newCall(CallControlManager.java:547)
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] at com.twilio.voice.OutgoingCallCommand.run(OutgoingCallCommand.java:56)
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] at android.os.Handler.handleCallback(Handler.java:751)
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] at android.os.Handler.dispatchMessage(Handler.java:95)
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] at android.os.Looper.loop(Looper.java:154)
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470] at com.twilio.voice.CallCommandHandlerImpl.run(CallCommandHandlerImpl.java:48)
01-05 18:05:16.057 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/java_vm_ext.cc:470]
01-05 18:05:16.209 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] Runtime aborting...
01-05 18:05:16.209 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] Aborting thread:
01-05 18:05:16.209 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] "Thread-5" prio=5 tid=24 Native
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | group="" sCount=0 dsCount=0 obj=0x12f9aec0 self=0x8af1a800
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | sysTid=25618 nice=0 cgrp=default sched=0/0 handle=0x7fa02920
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | state=R schedstat=( 66821827 20054375 125 ) utm=4 stm=1 core=5 HZ=100
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | stack=0x7f900000-0x7f902000 stackSize=1038KB
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | held mutexes= "abort lock"
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #00 pc 0034e7f1 /system/lib/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+128)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #1 pc 0032f1b5 /system/lib/libart.so (_ZNK3art6Thread9DumpStackERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEbP12BacktraceMap+308)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #2 pc 00322349 /system/lib/libart.so (_ZNK3art10AbortState10DumpThreadERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEPNS_6ThreadE+24)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #3 pc 003221d1 /system/lib/libart.so (_ZNK3art10AbortState4DumpERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEE+424)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #4 pc 00318eef /system/lib/libart.so (_ZN3art7Runtime5AbortEv+90)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #5 pc 000b48f9 /system/lib/libart.so (_ZN3art10LogMessageD2Ev+864)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #6 pc 00238dcd /system/lib/libart.so (ZN3art9JavaVMExt8JniAbortEPKcS2+1664)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #7 pc 00239033 /system/lib/libart.so (_ZN3art9JavaVMExt9JniAbortFEPKcS2_z+66)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #8 pc 00332bdd /system/lib/libart.so (_ZNK3art6Thread13DecodeJObjectEP8_jobject+240)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #9 pc 000c9991 /system/lib/libart.so (_ZN3art11ScopedCheck13CheckInstanceERNS_18ScopedObjectAccessENS0_12InstanceKindEP8_jobjectb+120)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #10 pc 000c8f43 /system/lib/libart.so (_ZN3art11ScopedCheck22CheckPossibleHeapValueERNS_18ScopedObjectAccessEcNS_12JniValueTypeE+190)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #11 pc 000c837b /system/lib/libart.so (_ZN3art11ScopedCheck5CheckERNS_18ScopedObjectAccessEbPKcPNS_12JniValueTypeE+802)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #12 pc 000cb38d /system/lib/libart.so (_ZN3art8CheckJNI9DeleteRefEPKcP7_JNIEnvP8_jobjectNS_15IndirectRefKindE+456)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #13 pc 00120e47 /data/app/com.twilio.voice.quickstart-1/lib/arm/libvoice.so (Java_com_twilio_voice_impl_useragent_Call_makeCall+174)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #14 pc 000122ad /data/data/com.twilio.voice.quickstart/cache/slice-com.twilio-voice-android-2.0.0-beta3_71d18afe0c63b5d95145a1eb78426975d3464f7e-classes.dex (???)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at com.twilio.voice.impl.useragent.Call.makeCall(Native method)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at com.twilio.voice.impl.useragent.Call.(Call.java:20)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at com.twilio.voice.CallControlManager.newCall(CallControlManager.java:547)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at com.twilio.voice.OutgoingCallCommand.run(OutgoingCallCommand.java:56)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at android.os.Handler.handleCallback(Handler.java:751)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at android.os.Handler.dispatchMessage(Handler.java:95)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at android.os.Looper.loop(Looper.java:154)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at com.twilio.voice.CallCommandHandlerImpl.run(CallCommandHandlerImpl.java:48)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] Dumping all threads without appropriate locks held: thread list lock mutator lock
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] All threads:
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] DALVIK THREADS (23):
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] "Thread-5" prio=5 tid=24 Runnable
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | group="" sCount=0 dsCount=0 obj=0x12f9aec0 self=0x8af1a800
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | sysTid=25618 nice=0 cgrp=default sched=0/0 handle=0x7fa02920
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | state=R schedstat=( 116208129 20656875 137 ) utm=6 stm=4 core=0 HZ=100
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | stack=0x7f900000-0x7f902000 stackSize=1038KB
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | held mutexes= "abort lock" "mutator lock"(shared held)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #00 pc 0034e7f1 /system/lib/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+128)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #1 pc 0032f1b5 /system/lib/libart.so (_ZNK3art6Thread9DumpStackERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEbP12BacktraceMap+308)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #2 pc 00341011 /system/lib/libart.so (_ZN3art14DumpCheckpoint3RunEPNS_6ThreadE+620)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #3 pc 0033b01b /system/lib/libart.so (_ZN3art10ThreadList13RunCheckpointEPNS_7ClosureE+330)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #4 pc 0033ad41 /system/lib/libart.so (_ZN3art10ThreadList4DumpERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEb+180)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #5 pc 0032219d /system/lib/libart.so (_ZNK3art10AbortState4DumpERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEE+372)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #6 pc 00318eef /system/lib/libart.so (_ZN3art7Runtime5AbortEv+90)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #7 pc 000b48f9 /system/lib/libart.so (_ZN3art10LogMessageD2Ev+864)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #8 pc 00238dcd /system/lib/libart.so (ZN3art9JavaVMExt8JniAbortEPKcS2+1664)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #9 pc 00239033 /system/lib/libart.so (_ZN3art9JavaVMExt9JniAbortFEPKcS2_z+66)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #10 pc 00332bdd /system/lib/libart.so (_ZNK3art6Thread13DecodeJObjectEP8_jobject+240)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #11 pc 000c9991 /system/lib/libart.so (_ZN3art11ScopedCheck13CheckInstanceERNS_18ScopedObjectAccessENS0_12InstanceKindEP8_jobjectb+120)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #12 pc 000c8f43 /system/lib/libart.so (_ZN3art11ScopedCheck22CheckPossibleHeapValueERNS_18ScopedObjectAccessEcNS_12JniValueTypeE+190)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #13 pc 000c837b /system/lib/libart.so (_ZN3art11ScopedCheck5CheckERNS_18ScopedObjectAccessEbPKcPNS_12JniValueTypeE+802)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #14 pc 000cb38d /system/lib/libart.so (_ZN3art8CheckJNI9DeleteRefEPKcP7_JNIEnvP8_jobjectNS_15IndirectRefKindE+456)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #15 pc 00120e47 /data/app/com.twilio.voice.quickstart-1/lib/arm/libvoice.so (Java_com_twilio_voice_impl_useragent_Call_makeCall+174)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #16 pc 000122ad /data/data/com.twilio.voice.quickstart/cache/slice-com.twilio-voice-android-2.0.0-beta3_71d18afe0c63b5d95145a1eb78426975d3464f7e-classes.dex (Java_com_twilio_voice_impl_useragent_Call_makeCall__Lcom_twilio_voice_impl_session_Account_2Ljava_lang_String_2Lcom_twilio_voice_impl_useragent_MessageData_2+144)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at com.twilio.voice.impl.useragent.Call.makeCall(Native method)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at com.twilio.voice.impl.useragent.Call.(Call.java:20)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at com.twilio.voice.CallControlManager.newCall(CallControlManager.java:547)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at com.twilio.voice.OutgoingCallCommand.run(OutgoingCallCommand.java:56)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at android.os.Handler.handleCallback(Handler.java:751)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at android.os.Handler.dispatchMessage(Handler.java:95)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at android.os.Looper.loop(Looper.java:154)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at com.twilio.voice.CallCommandHandlerImpl.run(CallCommandHandlerImpl.java:48)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441]
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] "main" prio=5 tid=1 Native
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | group="" sCount=1 dsCount=0 obj=0x73c05e80 self=0xa4b85400
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | sysTid=25034 nice=-10 cgrp=default sched=0/0 handle=0xa7878534
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | state=S schedstat=( 2617071949 82164952 857 ) utm=208 stm=52 core=6 HZ=100
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | stack=0xbe4b3000-0xbe4b5000 stackSize=8MB
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | held mutexes=
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #00 pc 000482a8 /system/lib/libc.so (__epoll_pwait+20)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #1 pc 00019e7d /system/lib/libc.so (epoll_pwait+60)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #2 pc 00019ead /system/lib/libc.so (epoll_wait+12)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #3 pc 00011c9f /system/lib/libutils.so (_ZN7android6Looper9pollInnerEi+118)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #4 pc 00011b9b /system/lib/libutils.so (_ZN7android6Looper8pollOnceEiPiS1_PPv+26)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #5 pc 0008f839 /system/lib/libandroid_runtime.so (_ZN7android18NativeMessageQueue8pollOnceEP7_JNIEnvP8_jobjecti+22)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #6 pc 0062ad85 /system/framework/arm/boot-framework.oat (Java_android_os_MessageQueue_nativePollOnce__JI+96)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at android.os.MessageQueue.nativePollOnce(Native method)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at android.os.MessageQueue.next(MessageQueue.java:323)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at android.os.Looper.loop(Looper.java:136)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at android.app.ActivityThread.main(ActivityThread.java:6123)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.reflect.Method.invoke!(Native method)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:867)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:757)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441]
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] "Jit thread pool worker thread 0" prio=5 tid=2 Native (still starting up)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | group="" sCount=1 dsCount=0 obj=0x0 self=0x9df17000
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | sysTid=25043 nice=9 cgrp=default sched=0/0 handle=0xa42a6920
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | state=S schedstat=( 51069687 10010262 17 ) utm=4 stm=0 core=6 HZ=100
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | stack=0xa41a8000-0xa41aa000 stackSize=1022KB
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | held mutexes=
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #00 pc 000174b4 /system/lib/libc.so (syscall+28)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #1 pc 000b64bd /system/lib/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+92)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #2 pc 00342559 /system/lib/libart.so (_ZN3art10ThreadPool7GetTaskEPNS_6ThreadE+160)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #3 pc 00341d83 /system/lib/libart.so (_ZN3art16ThreadPoolWorker3RunEv+62)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #4 pc 003418b1 /system/lib/libart.so (_ZN3art16ThreadPoolWorker8CallbackEPv+64)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #5 pc 00046e33 /system/lib/libc.so (_ZL15__pthread_startPv+22)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #6 pc 00019acd /system/lib/libc.so (__start_thread+6)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] (no managed stack frames)
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441]
01-05 18:05:16.210 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] "Signal Catcher" prio=5 tid=3 WaitingInMainSignalCatcherLoop
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | group="" sCount=1 dsCount=0 obj=0x12c8ff70 self=0x9b563700
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | sysTid=25044 nice=0 cgrp=default sched=0/0 handle=0xa41a5920
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | state=S schedstat=( 791458 123126 3 ) utm=0 stm=0 core=6 HZ=100
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | stack=0xa40a9000-0xa40ab000 stackSize=1014KB
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | held mutexes=
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #00 pc 00048614 /system/lib/libc.so (__rt_sigtimedwait+12)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #1 pc 0001dedb /system/lib/libc.so (sigwait+34)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #2 pc 0032531f /system/lib/libart.so (_ZN3art9SignalSet4WaitEv+22)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #3 pc 00324f19 /system/lib/libart.so (_ZN3art13SignalCatcher13WaitForSignalEPNS_6ThreadERNS_9SignalSetE+168)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #4 pc 00323c79 /system/lib/libart.so (_ZN3art13SignalCatcher3RunEPv+284)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #5 pc 00046e33 /system/lib/libc.so (_ZL15__pthread_startPv+22)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #6 pc 00019acd /system/lib/libc.so (__start_thread+6)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] (no managed stack frames)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441]
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] "JDWP" prio=5 tid=4 WaitingInMainDebuggerLoop
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | group="" sCount=1 dsCount=0 obj=0x12c980d0 self=0x9df18400
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | sysTid=25046 nice=0 cgrp=default sched=0/0 handle=0xa40a6920
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | state=S schedstat=( 76101460 10477549 74 ) utm=5 stm=1 core=7 HZ=100
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | stack=0xa3faa000-0xa3fac000 stackSize=1014KB
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | held mutexes=
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #00 pc 000484ec /system/lib/libc.so (__pselect6+20)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #1 pc 0001ccd5 /system/lib/libc.so (select+88)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #2 pc 003f98e7 /system/lib/libart.so (_ZN3art4JDWP12JdwpAdbState15ProcessIncomingEv+302)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #3 pc 00247dcf /system/lib/libart.so (_ZN3art4JDWP9JdwpState3RunEv+650)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #4 pc 00247573 /system/lib/libart.so (_ZN3art4JDWPL15StartJdwpThreadEPv+22)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #5 pc 00046e33 /system/lib/libc.so (_ZL15__pthread_startPv+22)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #6 pc 00019acd /system/lib/libc.so (__start_thread+6)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] (no managed stack frames)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441]
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] "FinalizerDaemon" prio=5 tid=5 Waiting
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | group="" sCount=1 dsCount=0 obj=0x12c981f0 self=0xa4b85e00
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | sysTid=25048 nice=0 cgrp=default sched=0/0 handle=0xa3ea2920
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | state=S schedstat=( 3131617 817654 17 ) utm=0 stm=0 core=6 HZ=100
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | stack=0xa3da0000-0xa3da2000 stackSize=1038KB
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | held mutexes=
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #00 pc 000174b4 /system/lib/libc.so (syscall+28)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #1 pc 000b64bd /system/lib/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+92)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #2 pc 0029e617 /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadExibNS_11ThreadStateE+534)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #3 pc 0029fd97 /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadEPNS_6mirror6ObjectExibNS_11ThreadStateE+258)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #4 pc 002ae4d3 /system/lib/libart.so (_ZN3artL13Object_waitJIEP7_JNIEnvP8_jobjectxi+36)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #5 pc 00000655 /system/framework/arm/boot.oat (Java_java_lang_Object_wait__JI+96)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.Object.wait!(Native method)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] - waiting on <0x061ea5d1> (a java.lang.Object)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.Object.wait(Object.java:407)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:188)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] - locked <0x061ea5d1> (a java.lang.Object)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:209)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:204)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.Thread.run(Thread.java:761)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441]
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] "ReferenceQueueDaemon" prio=5 tid=6 Waiting
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | group="" sCount=1 dsCount=0 obj=0x12c98160 self=0x9b564b00
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | sysTid=25047 nice=0 cgrp=default sched=0/0 handle=0xa3fa7920
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | state=S schedstat=( 2547139 1714220 25 ) utm=0 stm=0 core=7 HZ=100
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | stack=0xa3ea5000-0xa3ea7000 stackSize=1038KB
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | held mutexes=
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #00 pc 000174b4 /system/lib/libc.so (syscall+28)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #1 pc 000b64bd /system/lib/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+92)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #2 pc 0029e617 /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadExibNS_11ThreadStateE+534)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #3 pc 0029fd97 /system/lib/libart.so (ZN3art7Monitor4WaitEPNS_6ThreadEPNS_6mirror6ObjectExibNS_11ThreadStateE+258)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #4 pc 002ae4a7 /system/lib/libart.so (ZN3artL11Object_waitEP7_JNIEnvP8_jobject+32)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #5 pc 00000557 /system/framework/arm/boot.oat (Java_java_lang_Object_wait+74)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.Object.wait!(Native method)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] - waiting on <0x02387836> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.Daemons$ReferenceQueueDaemon.run(Daemons.java:150)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] - locked <0x02387836> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.Thread.run(Thread.java:761)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441]
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] "FinalizerWatchdogDaemon" prio=5 tid=7 Sleeping
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | group="" sCount=1 dsCount=0 obj=0x12c98280 self=0xa4b86300
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | sysTid=25049 nice=0 cgrp=default sched=0/0 handle=0xa3d9d920
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | state=S schedstat=( 571355 770206 11 ) utm=0 stm=0 core=4 HZ=100
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | stack=0xa3c9b000-0xa3c9d000 stackSize=1038KB
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | held mutexes=
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #00 pc 000174b8 /system/lib/libc.so (syscall+32)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #1 pc 000b68e5 /system/lib/libart.so (_ZN3art17ConditionVariable9TimedWaitEPNS_6ThreadExi+108)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #2 pc 0029e629 /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadExibNS_11ThreadStateE+552)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #3 pc 0029fd97 /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadEPNS_6mirror6ObjectExibNS_11ThreadStateE+258)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #4 pc 002b2e59 /system/lib/libart.so (_ZN3artL12Thread_sleepEP7_JNIEnvP7_jclassP8_jobjectxi+56)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #5 pc 00088693 /system/framework/arm/boot.oat (Java_java_lang_Thread_sleep__Ljava_lang_Object_2JI+126)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.Thread.sleep!(Native method)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] - sleeping on <0x066fd337> (a java.lang.Object)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.Thread.sleep(Thread.java:371)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] - locked <0x066fd337> (a java.lang.Object)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.Thread.sleep(Thread.java:313)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.Daemons$FinalizerWatchdogDaemon.sleepFor(Daemons.java:314)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.Daemons$FinalizerWatchdogDaemon.waitForFinalization(Daemons.java:336)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.Daemons$FinalizerWatchdogDaemon.run(Daemons.java:253)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.Thread.run(Thread.java:761)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441]
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] "HeapTaskDaemon" prio=5 tid=8 Blocked
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | group="" sCount=1 dsCount=0 obj=0x12c98310 self=0xa4b86800
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | sysTid=25053 nice=0 cgrp=default sched=0/0 handle=0xa3c98920
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | state=S schedstat=( 87898484 10616935 67 ) utm=7 stm=0 core=7 HZ=100
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | stack=0xa3b96000-0xa3b98000 stackSize=1038KB
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | held mutexes=
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #00 pc 000174b8 /system/lib/libc.so (syscall+32)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #1 pc 000b68e5 /system/lib/libart.so (_ZN3art17ConditionVariable9TimedWaitEPNS_6ThreadExi+108)
01-05 18:05:16.211 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #2 pc 001b3779 /system/lib/libart.so (ZN3art2gc13TaskProcessor7GetTaskEPNS_6ThreadE+228)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #3 pc 001b3e2d /system/lib/libart.so (ZN3art2gc13TaskProcessor11RunAllTasksEPNS_6ThreadE+44)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #4 pc 001603bf /system/framework/arm/boot-core-libart.oat (Java_dalvik_system_VMRuntime_runHeapTasks+74)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at dalvik.system.VMRuntime.runHeapTasks(Native method)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] - waiting to lock an unknown object
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.Daemons$HeapTaskDaemon.run(Daemons.java:433)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.Thread.run(Thread.java:761)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441]
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] "Binder:25034_1" prio=5 tid=9 Native
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | group="" sCount=1 dsCount=0 obj=0x12c98430 self=0x9b57b000
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | sysTid=25054 nice=0 cgrp=default sched=0/0 handle=0xa3a95920
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | state=S schedstat=( 10178541 11586097 73 ) utm=0 stm=0 core=4 HZ=100
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | stack=0xa3999000-0xa399b000 stackSize=1014KB
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | held mutexes=
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #00 pc 000483e8 /system/lib/libc.so (__ioctl+8)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #1 pc 0001aacf /system/lib/libc.so (ioctl+38)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #2 pc 0003cd65 /system/lib/libbinder.so (_ZN7android14IPCThreadState14talkWithDriverEb+168)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #3 pc 0003ce5d /system/lib/libbinder.so (_ZN7android14IPCThreadState20getAndExecuteCommandEv+8)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #4 pc 0003d3e3 /system/lib/libbinder.so (_ZN7android14IPCThreadState14joinThreadPoolEb+46)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #5 pc 0004f6a9 /system/lib/libbinder.so (???)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #6 pc 0000e361 /system/lib/libutils.so (_ZN7android6Thread11_threadLoopEPv+140)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #7 pc 000644b9 /system/lib/libandroid_runtime.so (_ZN7android14AndroidRuntime15javaThreadShellEPv+80)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #8 pc 00046e33 /system/lib/libc.so (_ZL15__pthread_startPv+22)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #9 pc 00019acd /system/lib/libc.so (__start_thread+6)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] (no managed stack frames)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441]
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] "Binder:25034_2" prio=5 tid=10 Native
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | group="" sCount=1 dsCount=0 obj=0x12c984c0 self=0x9df19800
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | sysTid=25055 nice=0 cgrp=default sched=0/0 handle=0x9e1da920
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | state=S schedstat=( 8859637 11155054 70 ) utm=0 stm=0 core=6 HZ=100
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | stack=0x9e0de000-0x9e0e0000 stackSize=1014KB
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | held mutexes=
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #00 pc 000483e8 /system/lib/libc.so (__ioctl+8)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #1 pc 0001aacf /system/lib/libc.so (ioctl+38)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #2 pc 0003cd65 /system/lib/libbinder.so (_ZN7android14IPCThreadState14talkWithDriverEb+168)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #3 pc 0003ce5d /system/lib/libbinder.so (_ZN7android14IPCThreadState20getAndExecuteCommandEv+8)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #4 pc 0003d3e3 /system/lib/libbinder.so (_ZN7android14IPCThreadState14joinThreadPoolEb+46)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #5 pc 0004f6a9 /system/lib/libbinder.so (???)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #6 pc 0000e361 /system/lib/libutils.so (_ZN7android6Thread11_threadLoopEPv+140)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #7 pc 000644b9 /system/lib/libandroid_runtime.so (_ZN7android14AndroidRuntime15javaThreadShellEPv+80)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #8 pc 00046e33 /system/lib/libc.so (_ZL15__pthread_startPv+22)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #9 pc 00019acd /system/lib/libc.so (__start_thread+6)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] (no managed stack frames)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441]
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] "Profile Saver" prio=5 tid=11 Native
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | group="" sCount=1 dsCount=0 obj=0x12c98670 self=0x9b57c400
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | sysTid=25056 nice=-10 cgrp=default sched=0/0 handle=0x9deff920
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | state=S schedstat=( 2837088 939792 19 ) utm=0 stm=0 core=2 HZ=100
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | stack=0x9de03000-0x9de05000 stackSize=1014KB
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | held mutexes=
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #00 pc 000174b4 /system/lib/libc.so (syscall+28)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #1 pc 000b64bd /system/lib/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+92)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #2 pc 002590b5 /system/lib/libart.so (_ZN3art12ProfileSaver3RunEv+296)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #3 pc 0025a3f1 /system/lib/libart.so (_ZN3art12ProfileSaver21RunProfileSaverThreadEPv+52)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #4 pc 00046e33 /system/lib/libc.so (_ZL15__pthread_startPv+22)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #5 pc 00019acd /system/lib/libc.so (__start_thread+6)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] (no managed stack frames)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441]
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] "Binder:25034_3" prio=5 tid=12 Native
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | group="" sCount=1 dsCount=0 obj=0x12e50a60 self=0x9df1ac00
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | sysTid=25081 nice=0 cgrp=default sched=0/0 handle=0x8d068920
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | state=S schedstat=( 6817033 10329169 72 ) utm=0 stm=0 core=5 HZ=100
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | stack=0x8cf6c000-0x8cf6e000 stackSize=1014KB
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | held mutexes=
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #00 pc 000483e8 /system/lib/libc.so (__ioctl+8)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #1 pc 0001aacf /system/lib/libc.so (ioctl+38)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #2 pc 0003cd65 /system/lib/libbinder.so (_ZN7android14IPCThreadState14talkWithDriverEb+168)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #3 pc 0003ce5d /system/lib/libbinder.so (_ZN7android14IPCThreadState20getAndExecuteCommandEv+8)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #4 pc 0003d3e3 /system/lib/libbinder.so (_ZN7android14IPCThreadState14joinThreadPoolEb+46)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #5 pc 0004f6a9 /system/lib/libbinder.so (???)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #6 pc 0000e361 /system/lib/libutils.so (_ZN7android6Thread11_threadLoopEPv+140)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #7 pc 000644b9 /system/lib/libandroid_runtime.so (_ZN7android14AndroidRuntime15javaThreadShellEPv+80)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #8 pc 00046e33 /system/lib/libc.so (_ZL15__pthread_startPv+22)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #9 pc 00019acd /system/lib/libc.so (__start_thread+6)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] (no managed stack frames)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441]
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] "Binder:25034_4" prio=5 tid=13 Native
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | group="" sCount=1 dsCount=0 obj=0x12e50af0 self=0x9b57d800
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | sysTid=25105 nice=0 cgrp=default sched=0/0 handle=0x8cf69920
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | state=S schedstat=( 6383650 7395155 62 ) utm=0 stm=0 core=4 HZ=100
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | stack=0x8ce6d000-0x8ce6f000 stackSize=1014KB
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | held mutexes=
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #00 pc 000483e8 /system/lib/libc.so (__ioctl+8)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #1 pc 0001aacf /system/lib/libc.so (ioctl+38)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #2 pc 0003cd65 /system/lib/libbinder.so (_ZN7android14IPCThreadState14talkWithDriverEb+168)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #3 pc 0003ce5d /system/lib/libbinder.so (_ZN7android14IPCThreadState20getAndExecuteCommandEv+8)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #4 pc 0003d3e3 /system/lib/libbinder.so (_ZN7android14IPCThreadState14joinThreadPoolEb+46)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #5 pc 0004f6a9 /system/lib/libbinder.so (???)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #6 pc 0000e361 /system/lib/libutils.so (_ZN7android6Thread11_threadLoopEPv+140)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #7 pc 000644b9 /system/lib/libandroid_runtime.so (_ZN7android14AndroidRuntime15javaThreadShellEPv+80)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #8 pc 00046e33 /system/lib/libc.so (_ZL15__pthread_startPv+22)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #9 pc 00019acd /system/lib/libc.so (__start_thread+6)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] (no managed stack frames)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441]
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] "pool-1-thread-1" prio=5 tid=14 Waiting
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | group="" sCount=1 dsCount=0 obj=0x12c8f160 self=0x9b57ec00
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | sysTid=25436 nice=0 cgrp=default sched=0/0 handle=0x8c0ec920
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | state=S schedstat=( 16886146 5495053 38 ) utm=0 stm=0 core=4 HZ=100
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | stack=0x8bfea000-0x8bfec000 stackSize=1038KB
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | held mutexes=
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #00 pc 000174b4 /system/lib/libc.so (syscall+28)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #1 pc 000b64bd /system/lib/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+92)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #2 pc 0029e617 /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadExibNS_11ThreadStateE+534)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #3 pc 0029fd97 /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadEPNS_6mirror6ObjectExibNS_11ThreadStateE+258)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #4 pc 002ae4d3 /system/lib/libart.so (_ZN3artL13Object_waitJIEP7_JNIEnvP8_jobjectxi+36)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] native: #5 pc 00000655 /system/framework/arm/boot.oat (Java_java_lang_Object_wait__JI+96)
01-05 18:05:16.212 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.Object.wait!(Native method)
01-05 18:05:16.213 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] - waiting on <0x0381e0a4> (a java.lang.Object)
01-05 18:05:16.213 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.Thread.parkFor$(Thread.java:2127)
01-05 18:05:16.213 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] - locked <0x0381e0a4> (a java.lang.Object)
01-05 18:05:16.213 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at sun.misc.Unsafe.park(Unsafe.java:325)
01-05 18:05:16.213 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:161)
01-05 18:05:16.213 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2035)
01-05 18:05:16.213 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:413)
01-05 18:05:16.213 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1058)
01-05 18:05:16.213 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1118)
01-05 18:05:16.213 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
01-05 18:05:16.213 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.lang.Thread.run(Thread.java:761)
01-05 18:05:16.213 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441]
01-05 18:05:16.213 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] "Measurement Worker" prio=5 tid=15 TimedWaiting
01-05 18:05:16.213 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] | group="" sCount=1 dsCount=0 obj=0x12ce9ca0 self=0x9b57f100
01-05 18:05:16.215 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1118)
01-05 18:05:16.215 25034-25618/com.twilio.voice.quickstart A/art: art/runtime/runtime.cc:441] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
01-05 18:05:16.216 25034-25618/com.twilio.voice.quickstart A/libc: Fatal signal 6 (SIGABRT), code -6 in tid 25618 (Thread-5)

                                                               [ 01-05 18:05:16.216   394:  394 W/         ]
                                                               debuggerd: handling request: pid=25034 uid=10150 gid=10150 tid=25618

Not support armeabi ?

Hi team,

I met a problem when integrate Twilio android voice SDK 2.0.0-beta5. There is no native lib (libvoice.so) for armeabi, so the sdk can not work in some devices. How to get it be supported?

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.