Closed zohaib319 closed 3 years ago
import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle; import android.util.Log;
import org.linphone.core.Account; import org.linphone.core.AccountParams; import org.linphone.core.Address; import org.linphone.core.AudioDevice; import org.linphone.core.AuthInfo; import org.linphone.core.AuthMethod; import org.linphone.core.Call; import org.linphone.core.CallLog; import org.linphone.core.CallStats; import org.linphone.core.ChatMessage; import org.linphone.core.ChatRoom; import org.linphone.core.Conference; import org.linphone.core.ConfiguringState; import org.linphone.core.Content; import org.linphone.core.Core; import org.linphone.core.CoreListener; import org.linphone.core.EcCalibratorStatus; import org.linphone.core.Event; import org.linphone.core.Factory; import org.linphone.core.Friend; import org.linphone.core.FriendList; import org.linphone.core.GlobalState; import org.linphone.core.InfoMessage; import org.linphone.core.PresenceModel; import org.linphone.core.ProxyConfig; import org.linphone.core.PublishState; import org.linphone.core.RegistrationState; import org.linphone.core.SubscriptionState; import org.linphone.core.TransportType; import org.linphone.core.Transports; import org.linphone.core.VersionUpdateCheckResult; public class DialPad extends AppCompatActivity {
public int iMemberID;
public String sipServerIP;
public String sipExtension;
public String secret;
public Core core;
public TransportType transportType;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_dial_pad);
Factory factory = Factory.instance();
factory.setDebugMode(true, "Hello Linphone");
core = factory.createCore(null,null,DialPad.this);
Bundle extras = getIntent().getExtras();
if (extras != null){
iMemberID = extras.getInt("iMemberID");
sipServerIP = extras.getString("sipServerIP");
sipExtension = extras.getString("sipExtension");
secret = extras.getString("secret");
Log.d("iMemberID",iMemberID+"");
Log.d("sipServerIP",sipServerIP+"");
Log.d("sipExtension",sipExtension+"");
Log.d("secret",secret+"");
loginToSIP();
}
}
public void loginToSIP(){
AuthInfo authInfo = Factory.instance().createAuthInfo(sipServerIP,null,secret,null,null,sipServerIP,null);
AccountParams accountParams = core.createAccountParams();
Address identity = Factory.instance().createAddress("sip:"+sipExtension+"@"+sipServerIP);
accountParams.setIdentityAddress(identity);
Address address = Factory.instance().createAddress("sip:"+sipServerIP);
address.setTransport(TransportType.Tls);
accountParams.setRegisterEnabled(true);
accountParams.setServerAddress(address);
Account account = core.createAccount(accountParams);
core.addAuthInfo(authInfo);
core.addAccount(account);
core.setDefaultAccount(account);
core.addListener(new CoreListener() {
@Override
public void onNetworkReachable(@NonNull Core core, boolean reachable) {
}
@Override
public void onTransferStateChanged(@NonNull Core core, @NonNull Call transfered, Call.State callState) {
}
@Override
public void onAudioDevicesListUpdated(@NonNull Core core) {
}
@Override
public void onConferenceStateChanged(@NonNull Core core, @NonNull Conference conference, Conference.State state) {
}
@Override
public void onInfoReceived(@NonNull Core core, @NonNull Call call, @NonNull InfoMessage message) {
}
@Override
public void onCallStateChanged(@NonNull Core core, @NonNull Call call, Call.State state, @NonNull String message) {
}
@Override
public void onImeeUserRegistration(@NonNull Core core, boolean status, @NonNull String userId, @NonNull String info) {
Log.d("message",info);
}
@Override
public void onNotifyReceived(@NonNull Core core, @NonNull Event linphoneEvent, @NonNull String notifiedEvent, @NonNull Content body) {
}
@Override
public void onNewSubscriptionRequested(@NonNull Core core, @NonNull Friend linphoneFriend, @NonNull String url) {
}
@Override
public void onCallLogUpdated(@NonNull Core core, @NonNull CallLog callLog) {
}
@Override
public void onFirstCallStarted(@NonNull Core core) {
}
@Override
public void onChatRoomEphemeralMessageDeleted(@NonNull Core core, @NonNull ChatRoom chatRoom) {
}
@Override
public void onLogCollectionUploadProgressIndication(@NonNull Core core, int offset, int total) {
}
@Override
public void onNotifyPresenceReceivedForUriOrTel(@NonNull Core core, @NonNull Friend linphoneFriend, @NonNull String uriOrTel, @NonNull PresenceModel presenceModel) {
}
@Override
public void onIsComposingReceived(@NonNull Core core, @NonNull ChatRoom chatRoom) {
}
@Override
public void onFriendListCreated(@NonNull Core core, @NonNull FriendList friendList) {
}
@Override
public void onQrcodeFound(@NonNull Core core, @Nullable String result) {
}
@Override
public void onSubscribeReceived(@NonNull Core core, @NonNull Event linphoneEvent, @NonNull String subscribeEvent, @NonNull Content body) {
}
@Override
public void onDtmfReceived(@NonNull Core core, @NonNull Call call, int dtmf) {
}
@Override
public void onReferReceived(@NonNull Core core, @NonNull String referTo) {
}
@Override
public void onAudioDeviceChanged(@NonNull Core core, @NonNull AudioDevice audioDevice) {
}
@Override
public void onAuthenticationRequested(@NonNull Core core, @NonNull AuthInfo authInfo, @NonNull AuthMethod method) {
}
@Override
public void onPublishStateChanged(@NonNull Core core, @NonNull Event linphoneEvent, PublishState state) {
}
@Override
public void onGlobalStateChanged(@NonNull Core core, GlobalState state, @NonNull String message) {
}
@Override
public void onCallStatsUpdated(@NonNull Core core, @NonNull Call call, @NonNull CallStats callStats) {
}
@Override
public void onMessageReceivedUnableDecrypt(@NonNull Core core, @NonNull ChatRoom chatRoom, @NonNull ChatMessage message) {
}
@Override
public void onMessageReceived(@NonNull Core core, @NonNull ChatRoom chatRoom, @NonNull ChatMessage message) {
}
@Override
public void onCallCreated(@NonNull Core core, @NonNull Call call) {
}
@Override
public void onBuddyInfoUpdated(@NonNull Core core, @NonNull Friend linphoneFriend) {
}
@Override
public void onSubscriptionStateChanged(@NonNull Core core, @NonNull Event linphoneEvent, SubscriptionState state) {
}
@Override
public void onChatRoomSubjectChanged(@NonNull Core core, @NonNull ChatRoom chatRoom) {
}
@Override
public void onCallEncryptionChanged(@NonNull Core core, @NonNull Call call, boolean mediaEncryptionEnabled, @Nullable String authenticationToken) {
}
@Override
public void onEcCalibrationAudioUninit(@NonNull Core core) {
}
@Override
public void onLastCallEnded(@NonNull Core core) {
}
@Override
public void onConfiguringStatus(@NonNull Core core, ConfiguringState status, @Nullable String message) {
}
@Override
public void onRegistrationStateChanged(@NonNull Core core, @NonNull ProxyConfig proxyConfig, RegistrationState state, @NonNull String message) {
Log.d("state_changed","[Account] Registration state changed:"+state+message);
}
@Override
public void onLogCollectionUploadStateChanged(@NonNull Core core, Core.LogCollectionUploadState state, @NonNull String info) {
}
@Override
public void onEcCalibrationAudioInit(@NonNull Core core) {
}
@Override
public void onNotifyPresenceReceived(@NonNull Core core, @NonNull Friend linphoneFriend) {
}
@Override
public void onVersionUpdateCheckResultReceived(@NonNull Core core, @NonNull VersionUpdateCheckResult result, String version, @Nullable String url) {
}
@Override
public void onEcCalibrationResult(@NonNull Core core, EcCalibratorStatus status, int delayMs) {
}
@Override
public void onChatRoomStateChanged(@NonNull Core core, @NonNull ChatRoom chatRoom, ChatRoom.State state) {
}
@Override
public void onCallIdUpdated(@NonNull Core core, @NonNull String previousCallId, @NonNull String currentCallId) {
}
@Override
public void onChatRoomRead(@NonNull Core core, @NonNull ChatRoom chatRoom) {
}
@Override
public void onAccountRegistrationStateChanged(@NonNull Core core, @NonNull Account account, RegistrationState state, @NonNull String message) {
Log.d("message",message);
}
@Override
public void onMessageSent(@NonNull Core core, @NonNull ChatRoom chatRoom, @NonNull ChatMessage message) {
}
@Override
public void onFriendListRemoved(@NonNull Core core, @NonNull FriendList friendList) {
}
});
core.start();
}
}
Given that part:
2021-09-08 12:48:06.620 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xe01956e0] channel state changed to [CONNECTING]
2021-09-08 12:48:06.620 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Trying to connect to [TLS://::ffff:172.83.90.120:5061]
2021-09-08 12:48:06.975 11050-11050/com.relevantAds.splashcall E/Hello Linphone: Connection failed for fd [60]: cause [Connection refused]
2021-09-08 12:48:06.975 11050-11050/com.relevantAds.splashcall E/Hello Linphone: Cannot connect to [TLS://172.83.90.120:5061]
Seems like your issue is within your SIP server.
You can also check our SIP Login tutorial.
2021-09-08 12:44:03.476 11050-11050/com.relevantAds.splashcall W/FactoryImpl: Unable to load optional library ffmpeg-linphone: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.relevantAds.splashcall-5Gp-CWkLWYdkaF17TbRqNQ==/base.apk"],nativeLibraryDirectories=[/data/app/com.relevantAds.splashcall-5Gp-CWkLWYdkaF17TbRqNQ==/lib/x86, /data/app/com.relevantAds.splashcall-5Gp-CWkLWYdkaF17TbRqNQ==/base.apk!/lib/x86, /system/lib]]] couldn't find "libffmpeg-linphone.so" 2021-09-08 12:44:03.711 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Initializing LinphoneCore 5.0.16-2-ged830522e 2021-09-08 12:44:03.713 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Sal nat helper [enabled] 2021-09-08 12:44:03.886 11050-11050/com.relevantAds.splashcall I/Hello Linphone: ==== Phone information dump ==== 2021-09-08 12:44:03.886 11050-11050/com.relevantAds.splashcall I/Hello Linphone: DEVICE=generic_x86_arm 2021-09-08 12:44:03.886 11050-11050/com.relevantAds.splashcall I/Hello Linphone: MODEL=AOSP on IA Emulator 2021-09-08 12:44:03.886 11050-11050/com.relevantAds.splashcall I/Hello Linphone: MANUFACTURER=Google 2021-09-08 12:44:03.886 11050-11050/com.relevantAds.splashcall I/Hello Linphone: ANDROID SDK=28 2021-09-08 12:44:03.886 11050-11050/com.relevantAds.splashcall I/Hello Linphone: ABIs=x86, armeabi-v7a, armeabi 2021-09-08 12:44:03.887 11050-11050/com.relevantAds.splashcall I/Hello Linphone: ========================================= 2021-09-08 12:44:03.887 11050-11050/com.relevantAds.splashcall I/Hello Linphone: ==== Linphone SDK information dump ==== 2021-09-08 12:44:03.898 11050-11050/com.relevantAds.splashcall I/Hello Linphone: VERSION=5.0.17-debug 2021-09-08 12:44:03.898 11050-11050/com.relevantAds.splashcall I/Hello Linphone: BRANCH=tags/5.0.17^0 2021-09-08 12:44:03.898 11050-11050/com.relevantAds.splashcall I/Hello Linphone: PLUGINS=libmsandroidcamera2.so, libmswebrtc.so, libmsaaudio.so 2021-09-08 12:44:03.898 11050-11050/com.relevantAds.splashcall I/Hello Linphone: PACKAGE=org.linphone.core 2021-09-08 12:44:03.898 11050-11050/com.relevantAds.splashcall I/Hello Linphone: BUILD TYPE=debug 2021-09-08 12:44:03.898 11050-11050/com.relevantAds.splashcall I/Hello Linphone: ========================================= 2021-09-08 12:44:03.915 11050-11050/com.relevantAds.splashcall E/Hello Linphone: [Push Utils] Couldn't find gcm_defaultSenderId string resource. 2021-09-08 12:44:03.915 11050-11050/com.relevantAds.splashcall W/Hello Linphone: [Core Manager] Push notifications aren't available (see push utils log) 2021-09-08 12:44:03.916 11050-11050/com.relevantAds.splashcall W/Hello Linphone: [Core Manager] Couldn't find class: java.lang.ClassNotFoundException: androidx.media.AudioFocusRequestCompat 2021-09-08 12:44:03.917 11050-11050/com.relevantAds.splashcall W/Hello Linphone: [Core Manager] Do you have a dependency on androidx.media:media:1.2.0 or newer? 2021-09-08 12:44:03.918 11050-11050/com.relevantAds.splashcall E/BluetoothAdapter: Bluetooth binder is null 2021-09-08 12:44:03.918 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Bluetooth] Bluetooth helper created 2021-09-08 12:44:03.918 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Core Manager] Registering shutdown receiver 2021-09-08 12:44:03.923 11050-11050/com.relevantAds.splashcall W/Hello Linphone: [Core Manager] Failed to find a valid Service, continuing without it... 2021-09-08 12:44:03.923 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Core Manager] Ready 2021-09-08 12:44:03.923 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Android Platform Helper] CoreManager is fully initialised. 2021-09-08 12:44:03.929 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Device] hasLowLatencyFeature: false, hasProFeature: false 2021-09-08 12:44:03.940 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Device] Output frames per buffer: 720, output sample rate: 48000. 2021-09-08 12:44:03.940 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Created, wifi only mode is disabled 2021-09-08 12:44:03.946 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Starting copy from assets to application files directory 2021-09-08 12:44:03.967 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Installing Resource cpim_grammar 2021-09-08 12:44:03.969 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Installing Resource identity_grammar 2021-09-08 12:44:03.971 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Installing Resource sdp_grammar 2021-09-08 12:44:03.971 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Installing Resource vcard_grammar 2021-09-08 12:44:03.973 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Installing Resource nowebcamcif.jpg 2021-09-08 12:44:03.975 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Installing Resource rootca.pem 2021-09-08 12:44:03.981 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Resource dont_wait_too_long.mkv already installed, skipping... 2021-09-08 12:44:03.981 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Resource hello16000.wav already installed, skipping... 2021-09-08 12:44:03.981 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Resource hello8000.wav already installed, skipping... 2021-09-08 12:44:03.981 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Resource incoming_chat.wav already installed, skipping... 2021-09-08 12:44:03.982 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Resource ringback.wav already installed, skipping... 2021-09-08 12:44:03.982 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Resource four_hands_together.mkv already installed, skipping... 2021-09-08 12:44:03.983 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Resource house_keeping.mkv already installed, skipping... 2021-09-08 12:44:03.983 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Resource its_a_game.mkv already installed, skipping... 2021-09-08 12:44:03.983 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Resource leaving_dreams.mkv already installed, skipping... 2021-09-08 12:44:03.983 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Resource notes_of_the_optimistic.mkv already installed, skipping... 2021-09-08 12:44:03.984 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Resource oldphone-mono.wav already installed, skipping... 2021-09-08 12:44:03.984 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Resource soft_as_snow.mkv already installed, skipping... 2021-09-08 12:44:03.984 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Resource silence.mkv already installed, skipping... 2021-09-08 12:44:03.984 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Resource toy-mono.wav already installed, skipping... 2021-09-08 12:44:03.985 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Copy from assets done 2021-09-08 12:44:03.988 11050-11050/com.relevantAds.splashcall W/Hello Linphone: [Platform Helper] Device is in bucket STANDBY_BUCKET_ACTIVE 2021-09-08 12:44:04.002 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] [Network Manager 26] Found DNS host 10.0.2.3 from network MOBILE with default route 2021-09-08 12:44:04.005 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] DNS servers list updated 2021-09-08 12:44:04.005 11050-11050/com.relevantAds.splashcall I/Hello Linphone: belle_sip_set_jvm(): initialization succeed 2021-09-08 12:44:04.005 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_init(): initialization succeed 2021-09-08 12:44:04.005 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Android Platform Helper] AndroidPlatformHelper is fully initialised. 2021-09-08 12:44:04.006 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Mediastreamer2 factory 5.0.0 (git: 5.0.15) initialized. 2021-09-08 12:44:04.006 11050-11050/com.relevantAds.splashcall I/Hello Linphone: CPU count set to 4 2021-09-08 12:44:04.006 11050-11050/com.relevantAds.splashcall I/Hello Linphone: ms_factory_init() done: platform_tags=linux,android,x86,embedded 2021-09-08 12:44:04.006 11050-11050/com.relevantAds.splashcall I/Hello Linphone: srtp init 2021-09-08 12:44:04.010 11050-11050/com.relevantAds.splashcall I/Hello Linphone: SDK version [28] detected 2021-09-08 12:44:04.046 11050-11198/com.relevantAds.splashcall I/OMXClient: IOmx service obtained 2021-09-08 12:44:04.122 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec video/avc successfully created. 2021-09-08 12:44:04.138 11050-11203/com.relevantAds.splashcall I/OMXClient: IOmx service obtained 2021-09-08 12:44:04.141 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec video/avc successfully created. 2021-09-08 12:44:04.147 11050-11050/com.relevantAds.splashcall I/Hello Linphone: MediaCodec: 'video/avc' format supported 2021-09-08 12:44:04.149 11050-11050/com.relevantAds.splashcall W/MediaCodec-JNI: try to release MediaCodec from JMediaCodec::~JMediaCodec()... 2021-09-08 12:44:04.150 11050-11050/com.relevantAds.splashcall W/MediaCodec-JNI: done releasing MediaCodec from JMediaCodec::~JMediaCodec(). 2021-09-08 12:44:04.150 11050-11050/com.relevantAds.splashcall W/System.err: java.lang.IllegalArgumentException: Failed to initialize video/hevc, error 0xfffffffe 2021-09-08 12:44:04.153 11050-11050/com.relevantAds.splashcall W/System.err: at android.media.MediaCodec.native_setup(Native Method) 2021-09-08 12:44:04.153 11050-11050/com.relevantAds.splashcall W/System.err: at android.media.MediaCodec.(MediaCodec.java:1811)
2021-09-08 12:44:04.153 11050-11050/com.relevantAds.splashcall W/System.err: at android.media.MediaCodec.createEncoderByType(MediaCodec.java:1777)
2021-09-08 12:44:04.154 11050-11050/com.relevantAds.splashcall W/System.err: at org.linphone.core.FactoryImpl.createCore3(Native Method)
2021-09-08 12:44:04.154 11050-11050/com.relevantAds.splashcall W/System.err: at org.linphone.core.FactoryImpl.createCore(Factory.java:1006)
2021-09-08 12:44:04.154 11050-11050/com.relevantAds.splashcall W/System.err: at com.relevantAds.splashcall.DialPad.onCreate(DialPad.java:58)
2021-09-08 12:44:04.154 11050-11050/com.relevantAds.splashcall W/System.err: at android.app.Activity.performCreate(Activity.java:7136)
2021-09-08 12:44:04.154 11050-11050/com.relevantAds.splashcall W/System.err: at android.app.Activity.performCreate(Activity.java:7127)
2021-09-08 12:44:04.154 11050-11050/com.relevantAds.splashcall W/System.err: at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1271)
2021-09-08 12:44:04.154 11050-11050/com.relevantAds.splashcall W/System.err: at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2893)
2021-09-08 12:44:04.154 11050-11050/com.relevantAds.splashcall W/System.err: at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3048)
2021-09-08 12:44:04.154 11050-11050/com.relevantAds.splashcall W/System.err: at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:78)
2021-09-08 12:44:04.154 11050-11050/com.relevantAds.splashcall W/System.err: at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:108)
2021-09-08 12:44:04.154 11050-11050/com.relevantAds.splashcall W/System.err: at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:68)
2021-09-08 12:44:04.154 11050-11050/com.relevantAds.splashcall W/System.err: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1808)
2021-09-08 12:44:04.155 11050-11050/com.relevantAds.splashcall W/System.err: at android.os.Handler.dispatchMessage(Handler.java:106)
2021-09-08 12:44:04.155 11050-11050/com.relevantAds.splashcall W/System.err: at android.os.Looper.loop(Looper.java:193)
2021-09-08 12:44:04.155 11050-11050/com.relevantAds.splashcall W/System.err: at android.app.ActivityThread.main(ActivityThread.java:6669)
2021-09-08 12:44:04.155 11050-11050/com.relevantAds.splashcall W/System.err: at java.lang.reflect.Method.invoke(Native Method)
2021-09-08 12:44:04.155 11050-11050/com.relevantAds.splashcall W/System.err: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:493)
2021-09-08 12:44:04.155 11050-11050/com.relevantAds.splashcall W/System.err: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:858)
2021-09-08 12:44:04.155 11050-11050/com.relevantAds.splashcall E/Hello Linphone: Failed to create codec !
2021-09-08 12:44:04.156 11050-11050/com.relevantAds.splashcall W/Hello Linphone: MediaCodec: 'video/hevc' format not supported for encoding
2021-09-08 12:44:04.164 11050-11208/com.relevantAds.splashcall I/OMXClient: IOmx service obtained
2021-09-08 12:44:04.172 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec video/hevc successfully created.
2021-09-08 12:44:04.178 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Registering all soundcard handlers
2021-09-08 12:44:04.178 11050-11050/com.relevantAds.splashcall I/Hello Linphone: SDK version [28] detected
2021-09-08 12:44:04.178 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Native android sound support not tested on SDK [28], disabled.
2021-09-08 12:44:04.199 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [OpenSLES] libOpenSLES correctly loaded, creating OpenSLES MS soundcard
2021-09-08 12:44:04.199 11050-11050/com.relevantAds.splashcall W/Hello Linphone: Could not get board platform.
2021-09-08 12:44:04.236 11050-11050/com.relevantAds.splashcall I/Hello Linphone: This device (Google/AOSP on IA Emulator/) says it has no built-in echo canceller.
2021-09-08 12:44:04.236 11050-11050/com.relevantAds.splashcall I/Hello Linphone: No information available for [Google/AOSP on IA Emulator/],
2021-09-08 12:44:04.236 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Using android >= 8 sound device descriptor.
2021-09-08 12:44:04.236 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Sound device information for [Google/AOSP on IA Emulator/] is: builtin=[yes], delay=[0] ms
2021-09-08 12:44:04.236 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Android Audio Utils] Using 48000 for sample rate value
2021-09-08 12:44:04.236 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Android Audio Utils] Using 720 for buffer size value
2021-09-08 12:44:04.236 11050-11050/com.relevantAds.splashcall I/Hello Linphone: SDK version [28] detected
2021-09-08 12:44:04.247 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Audio Manager] Found device: name [AOSP on IA Emulator], ID [2], type [Built-in speaker (2)], isSource [false], isSink [true]
2021-09-08 12:44:04.248 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Audio Manager] Found device: name [AOSP on IA Emulator], ID [5], type [Built-in microphone (15)], isSource [true], isSink [false]
2021-09-08 12:44:04.248 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [OpenSLES] Create soundcards for 2 devices
2021-09-08 12:44:04.251 11050-11050/com.relevantAds.splashcall W/Hello Linphone: Could not get board platform.
2021-09-08 12:44:04.258 11050-11050/com.relevantAds.splashcall I/Hello Linphone: This device (Google/AOSP on IA Emulator/) says it has no built-in echo canceller.
2021-09-08 12:44:04.259 11050-11050/com.relevantAds.splashcall I/Hello Linphone: No information available for [Google/AOSP on IA Emulator/],
2021-09-08 12:44:04.259 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Using android >= 8 sound device descriptor.
2021-09-08 12:44:04.259 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Sound device information for [Google/AOSP on IA Emulator/] is: builtin=[yes], delay=[0] ms
2021-09-08 12:44:04.259 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Card 'openSLES Speaker: AOSP on IA Emulator' added with capabilities [playback]
2021-09-08 12:44:04.259 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [OpenSLES] Added card [0xce396b20]: name [AOSP on IA Emulator] device ID [2] type [Speaker]
2021-09-08 12:44:04.259 11050-11050/com.relevantAds.splashcall W/Hello Linphone: Could not get board platform.
2021-09-08 12:44:04.266 11050-11050/com.relevantAds.splashcall I/Hello Linphone: This device (Google/AOSP on IA Emulator/) says it has no built-in echo canceller.
2021-09-08 12:44:04.266 11050-11050/com.relevantAds.splashcall I/Hello Linphone: No information available for [Google/AOSP on IA Emulator/],
2021-09-08 12:44:04.266 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Using android >= 8 sound device descriptor.
2021-09-08 12:44:04.266 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Sound device information for [Google/AOSP on IA Emulator/] is: builtin=[yes], delay=[0] ms
2021-09-08 12:44:04.266 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Card 'openSLES Microphone: AOSP on IA Emulator' added with capabilities [capture]
2021-09-08 12:44:04.266 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [OpenSLES] Added card [0xce3969a0]: name [AOSP on IA Emulator] device ID [5] type [Microphone]
2021-09-08 12:44:04.266 11050-11050/com.relevantAds.splashcall I/Hello Linphone: SDK version [28] detected
2021-09-08 12:44:04.266 11050-11050/com.relevantAds.splashcall W/Hello Linphone: Could not get board platform.
2021-09-08 12:44:04.272 11050-11050/com.relevantAds.splashcall I/Hello Linphone: This device (Google/AOSP on IA Emulator/) says it has no built-in echo canceller.
2021-09-08 12:44:04.272 11050-11050/com.relevantAds.splashcall I/Hello Linphone: No information available for [Google/AOSP on IA Emulator/],
2021-09-08 12:44:04.272 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Using android >= 8 sound device descriptor.
2021-09-08 12:44:04.273 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Sound device information for [Google/AOSP on IA Emulator/] is: builtin=[yes], delay=[0] ms
2021-09-08 12:44:04.273 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Card 'ANDROID SND (deprecated) Unknown: Android Sound card' added with capabilities [capture, playback]
2021-09-08 12:44:04.273 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Registering all webcam handlers
2021-09-08 12:44:04.273 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Found Android plugin libmsandroidcamera2.so
2021-09-08 12:44:04.273 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Found Android plugin libmswebrtc.so
2021-09-08 12:44:04.273 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Found Android plugin libmsaaudio.so
2021-09-08 12:44:04.273 11050-11050/com.relevantAds.splashcall W/Hello Linphone: [Legacy Capture] Android >= 8.0 detected and msAndroidCamera2 plugin found, disabling legacy capture filter
2021-09-08 12:44:04.273 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Webcam StaticImage: Static picture added
2021-09-08 12:44:04.273 11050-11050/com.relevantAds.splashcall I/Hello Linphone: MSAndroidDisplay registered.
2021-09-08 12:44:04.273 11050-11050/com.relevantAds.splashcall I/Hello Linphone: MSAndroidDisplay (OpenGL ES2) registered (id=80).
2021-09-08 12:44:04.273 11050-11050/com.relevantAds.splashcall I/Hello Linphone: ms_factory_init_voip() done
2021-09-08 12:44:04.273 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Found Android plugin libmsandroidcamera2.so
2021-09-08 12:44:04.273 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Found Android plugin libmswebrtc.so
2021-09-08 12:44:04.273 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Found Android plugin libmsaaudio.so
2021-09-08 12:44:04.273 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Loading ms plugins from list
2021-09-08 12:44:04.273 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Loading plugin libmsandroidcamera2.so...
2021-09-08 12:44:04.285 11050-11050/com.relevantAds.splashcall W/Hello Linphone: Fail to load plugin libmsandroidcamera2.so : dlopen failed: library "libmsandroidcamera2.so" not found
2021-09-08 12:44:04.285 11050-11050/com.relevantAds.splashcall W/Hello Linphone: Could not locate init routine of plugin libmsandroidcamera2.so
2021-09-08 12:44:04.285 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Loading plugin libmswebrtc.so...
2021-09-08 12:44:04.285 11050-11050/com.relevantAds.splashcall W/Hello Linphone: Fail to load plugin libmswebrtc.so : dlopen failed: library "libmswebrtc.so" not found
2021-09-08 12:44:04.285 11050-11050/com.relevantAds.splashcall W/Hello Linphone: Could not locate init routine of plugin libmswebrtc.so
2021-09-08 12:44:04.285 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Loading plugin libmsaaudio.so...
2021-09-08 12:44:04.286 11050-11050/com.relevantAds.splashcall W/Hello Linphone: Fail to load plugin libmsaaudio.so : dlopen failed: library "libmsaaudio.so" not found
2021-09-08 12:44:04.286 11050-11050/com.relevantAds.splashcall W/Hello Linphone: Could not locate init routine of plugin libmsaaudio.so
2021-09-08 12:44:04.286 11050-11050/com.relevantAds.splashcall W/Hello Linphone: Couldn't load all plugins in list
2021-09-08 12:44:04.287 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Core callbacks [0xce3965e0] registered on core [0xcea3fc00]
2021-09-08 12:44:04.287 11050-11050/com.relevantAds.splashcall I/Hello Linphone: oRTP-5.0.0 initialized.
2021-09-08 12:44:04.287 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec opus/48000 fmtp=[useinbandfec=1] number=-1, default enablement: 1) added to the list of possible codecs.
2021-09-08 12:44:04.287 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec SILK/16000 fmtp=[] number=-1, default enablement: 1) added to the list of possible codecs.
2021-09-08 12:44:04.287 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec speex/16000 fmtp=[vbr=on] number=-1, default enablement: 1) added to the list of possible codecs.
2021-09-08 12:44:04.287 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec speex/8000 fmtp=[vbr=on] number=-1, default enablement: 1) added to the list of possible codecs.
2021-09-08 12:44:04.287 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec PCMU/8000 fmtp=[] number=0, default enablement: 1) added to the list of possible codecs.
2021-09-08 12:44:04.287 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec PCMA/8000 fmtp=[] number=8, default enablement: 1) added to the list of possible codecs.
2021-09-08 12:44:04.287 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec red/1000 fmtp=[] number=-1, default enablement: 1) added to the list of possible codecs.
2021-09-08 12:44:04.287 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec t140/1000 fmtp=[] number=-1, default enablement: 1) added to the list of possible codecs.
2021-09-08 12:44:04.287 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec GSM/8000 fmtp=[] number=3, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.287 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec G722/8000 fmtp=[] number=9, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.287 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec iLBC/8000 fmtp=[mode=30] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.287 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec AMR/8000 fmtp=[octet-align=1] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.287 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec AMR-WB/16000 fmtp=[octet-align=1] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.287 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec G729/8000 fmtp=[annexb=yes] number=18, default enablement: 1) added to the list of possible codecs.
2021-09-08 12:44:04.287 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec mpeg4-generic/16000 fmtp=[config=F8EE2000; constantDuration=512; indexDeltaLength=3; indexLength=3; mode=AAC-hbr; profile-level-id=76; sizeLength=13; streamType=5] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.287 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec mpeg4-generic/22050 fmtp=[config=F8EE2000; constantDuration=512; indexDeltaLength=3; indexLength=3; mode=AAC-hbr; profile-level-id=76; sizeLength=13; streamType=5] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.288 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec mpeg4-generic/32000 fmtp=[config=F8E82000; constantDuration=512; indexDeltaLength=3; indexLength=3; mode=AAC-hbr; profile-level-id=76; sizeLength=13; streamType=5] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.288 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec mpeg4-generic/44100 fmtp=[config=F8E82000; constantDuration=512; indexDeltaLength=3; indexLength=3; mode=AAC-hbr; profile-level-id=76; sizeLength=13; streamType=5] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.288 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec mpeg4-generic/48000 fmtp=[config=F8EE2000; constantDuration=512; indexDeltaLength=3; indexLength=3; mode=AAC-hbr; profile-level-id=76; sizeLength=13; streamType=5] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.288 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec iSAC/16000 fmtp=[] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.288 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec speex/32000 fmtp=[vbr=on] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.288 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec SILK/8000 fmtp=[] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.288 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec SILK/12000 fmtp=[] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.288 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec SILK/24000 fmtp=[] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.288 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec G726-16/8000 fmtp=[] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.288 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec G726-24/8000 fmtp=[] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.288 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec G726-32/8000 fmtp=[] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.288 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec G726-40/8000 fmtp=[] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.288 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec AAL2-G726-16/8000 fmtp=[] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.288 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec AAL2-G726-24/8000 fmtp=[] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.288 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec AAL2-G726-32/8000 fmtp=[] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.288 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec AAL2-G726-40/8000 fmtp=[] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.288 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec CODEC2/8000 fmtp=[] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.288 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec BV16/8000 fmtp=[] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.288 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec VP8/90000 fmtp=[] number=-1, default enablement: 1) added to the list of possible codecs.
2021-09-08 12:44:04.288 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec H264/90000 fmtp=[profile-level-id=42801F] number=-1, default enablement: 1) added to the list of possible codecs.
2021-09-08 12:44:04.289 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec H265/90000 fmtp=[] number=-1, default enablement: 1) added to the list of possible codecs.
2021-09-08 12:44:04.289 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec MP4V-ES/90000 fmtp=[profile-level-id=3] number=-1, default enablement: 1) added to the list of possible codecs.
2021-09-08 12:44:04.289 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec H263-1998/90000 fmtp=[CIF=1;QCIF=1] number=-1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.289 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec H263/90000 fmtp=[] number=34, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.289 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec 1016/8000 fmtp=[] number=1, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.289 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec G723/8000 fmtp=[] number=4, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.289 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec LPC/8000 fmtp=[] number=7, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.289 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec L16/44100 fmtp=[] number=10, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.289 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec L16/44100 fmtp=[] number=11, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.289 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec CN/8000 fmtp=[] number=13, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.289 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec H261/90000 fmtp=[] number=31, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.289 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Codec MPV/90000 fmtp=[] number=32, default enablement: 0) added to the list of possible codecs.
2021-09-08 12:44:04.290 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Root ca path set to /system/etc/security/cacerts
2021-09-08 12:44:04.290 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Root ca path set to /system/etc/security/cacerts
2021-09-08 12:44:04.298 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] getDnsServers() returning 10.0.2.3,
2021-09-08 12:44:04.298 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Android Platform Helper] Found DNS server 10.0.2.3
2021-09-08 12:44:04.298 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Found Android plugin libmsandroidcamera2.so
2021-09-08 12:44:04.299 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Found Android plugin libmswebrtc.so
2021-09-08 12:44:04.299 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Found Android plugin libmsaaudio.so
2021-09-08 12:44:04.299 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Loading ms plugins from list
2021-09-08 12:44:04.299 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Loading plugin libmsandroidcamera2.so...
2021-09-08 12:44:04.299 11050-11050/com.relevantAds.splashcall W/Hello Linphone: Fail to load plugin libmsandroidcamera2.so : dlopen failed: library "libmsandroidcamera2.so" not found
2021-09-08 12:44:04.299 11050-11050/com.relevantAds.splashcall W/Hello Linphone: Could not locate init routine of plugin libmsandroidcamera2.so
2021-09-08 12:44:04.299 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Loading plugin libmswebrtc.so...
2021-09-08 12:44:04.299 11050-11050/com.relevantAds.splashcall W/Hello Linphone: Fail to load plugin libmswebrtc.so : dlopen failed: library "libmswebrtc.so" not found
2021-09-08 12:44:04.299 11050-11050/com.relevantAds.splashcall W/Hello Linphone: Could not locate init routine of plugin libmswebrtc.so
2021-09-08 12:44:04.299 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Loading plugin libmsaaudio.so...
2021-09-08 12:44:04.300 11050-11050/com.relevantAds.splashcall W/Hello Linphone: Fail to load plugin libmsaaudio.so : dlopen failed: library "libmsaaudio.so" not found
2021-09-08 12:44:04.300 11050-11050/com.relevantAds.splashcall W/Hello Linphone: Could not locate init routine of plugin libmsaaudio.so
2021-09-08 12:44:04.300 11050-11050/com.relevantAds.splashcall W/Hello Linphone: Couldn't load all plugins in list
2021-09-08 12:44:04.300 11050-11050/com.relevantAds.splashcall W/Hello Linphone: Device [Android Sound card] type is unknown
2021-09-08 12:44:04.300 11050-11050/com.relevantAds.splashcall I/Hello Linphone: linphone_core_set_playback_gain_db(): no active call.
2021-09-08 12:44:04.300 11050-11050/com.relevantAds.splashcall I/Hello Linphone: linphone_core_set_mic_gain_db(): no active call.
2021-09-08 12:44:04.301 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [ToneManager] create ToneManager()
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Sal nat helper [enabled]
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Sal use rports [enabled]
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: MTU is supposed to be 1300, rtp payload max size will be 1240
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Supported codec opus/48000 fmtp=useinbandfec=1 automatically added to codec list.
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for SILK
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Supported codec speex/16000 fmtp=vbr=on automatically added to codec list.
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Supported codec speex/8000 fmtp=vbr=on automatically added to codec list.
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Supported codec PCMU/8000 fmtp= automatically added to codec list.
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Supported codec PCMA/8000 fmtp= automatically added to codec list.
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Supported codec GSM/8000 fmtp= automatically added to codec list.
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Supported codec G722/8000 fmtp= automatically added to codec list.
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for iLBC
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for AMR
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for AMR-WB
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for G729
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for mpeg4-generic
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/chatty: uid=10086(com.relevantAds.splashcall) identical 3 lines
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for mpeg4-generic
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for iSAC
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Supported codec speex/32000 fmtp=vbr=on automatically added to codec list.
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for SILK
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/chatty: uid=10086(com.relevantAds.splashcall) identical 1 line
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for SILK
2021-09-08 12:44:04.302 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for G726-16
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for G726-24
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for G726-32
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for G726-40
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for AAL2-G726-16
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for AAL2-G726-24
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for AAL2-G726-32
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for AAL2-G726-40
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for CODEC2
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for BV16
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for 1016
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for G723
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for LPC
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Supported codec L16/44100 fmtp= automatically added to codec list.
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Supported codec L16/44100 fmtp= automatically added to codec list.
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for CN
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Supported codec VP8/90000 fmtp= automatically added to codec list.
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Supported codec H264/90000 fmtp=profile-level-id=42801F automatically added to codec list.
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for H265
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for MP4V-ES
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for H263-1998
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for H263
2021-09-08 12:44:04.303 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for H261
2021-09-08 12:44:04.304 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Could not find encoder for MPV
2021-09-08 12:44:04.304 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Supported codec red/1000 fmtp= automatically added to codec list.
2021-09-08 12:44:04.304 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Supported codec t140/1000 fmtp= automatically added to codec list.
2021-09-08 12:44:04.304 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Sal use rports [enabled]
2021-09-08 12:44:04.304 11050-11050/com.relevantAds.splashcall I/Hello Linphone: belle_sip_stack_set_well_know_port() : set to [5060]
2021-09-08 12:44:04.304 11050-11050/com.relevantAds.splashcall I/Hello Linphone: belle_sip_stack_set_well_know_port_tls() : set to [5061]
2021-09-08 12:44:04.304 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Root ca path set to /data/user/0/com.relevantAds.splashcall/files/share/linphone/rootca.pem
2021-09-08 12:44:04.315 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Lime X3DH server URL not set, can't enable
2021-09-08 12:44:04.315 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Invalidating friends maps for list [0xe018bc90]
2021-09-08 12:44:04.316 11050-11050/com.relevantAds.splashcall D/iMemberID: 1168066
2021-09-08 12:44:04.316 11050-11050/com.relevantAds.splashcall D/sipServerIP: 172.83.90.120
2021-09-08 12:44:04.316 11050-11050/com.relevantAds.splashcall D/sipExtension: 3160795059
2021-09-08 12:44:04.316 11050-11050/com.relevantAds.splashcall D/secret: 2fbd16a2ffe4fb8e97081b588c2e885b
2021-09-08 12:44:04.320 11050-11050/com.relevantAds.splashcall D/identity: Java object [org.linphone.core.AddressImpl@45b9efa], native pointer [0xceafba80]
2021-09-08 12:44:04.321 11050-11050/com.relevantAds.splashcall D/address: Java object [org.linphone.core.AddressImpl@4cf0cab], native pointer [0xceafbb70]
2021-09-08 12:44:04.321 11050-11050/com.relevantAds.splashcall I/Hello Linphone: LinphoneAccount[0xcea9e504] created with params
2021-09-08 12:44:04.322 11050-11050/com.relevantAds.splashcall I/Hello Linphone: linphoneAccountIsServerConfigChanged : 0
2021-09-08 12:44:04.323 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Publish params have changed on account [0xcea9e504]
2021-09-08 12:44:04.325 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Core callbacks [0xceafbd20] registered on core [0xcea3fc00]
2021-09-08 12:44:04.327 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Using ["/data/user/0/com.relevantAds.splashcall/files/linphone.db"] as default database path
2021-09-08 12:44:04.327 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Opening linphone database "/data/user/0/com.relevantAds.splashcall/files/linphone.db" with backend Sqlite3
2021-09-08 12:44:04.339 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Start measurement of [Get chat rooms.].
2021-09-08 12:44:04.341 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Duration of [Get chat rooms.]: 1ms.
2021-09-08 12:44:04.344 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Using [/data/user/0/com.relevantAds.splashcall/files/call-history.db] as default call history database path
2021-09-08 12:44:04.347 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Table already up to date: duplicate column name: call_id.
2021-09-08 12:44:04.347 11050-11050/com.relevantAds.splashcall I/Hello Linphone: linphone_core_get_call_history(): completed in 0 ms
2021-09-08 12:44:04.348 11050-11050/com.relevantAds.splashcall W/Hello Linphone: nothing to migrate, skipping...
2021-09-08 12:44:04.348 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Using [/data/user/0/com.relevantAds.splashcall/files/zrtp-secrets.db] as default zrtp secrets database path
2021-09-08 12:44:04.352 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Root ca path set to /data/user/0/com.relevantAds.splashcall/files/share/linphone/rootca.pem
2021-09-08 12:44:04.354 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Core Manager] Call to core.iterate() scheduled every 20ms
2021-09-08 12:44:04.361 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Core callbacks [0xceafbde0] registered on core [0xcea3fc00]
2021-09-08 12:44:04.362 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Core Manager] Started
2021-09-08 12:44:04.362 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] onLinphoneCoreStart, network monitoring is true
2021-09-08 12:44:04.362 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Registering network callbacks
2021-09-08 12:44:04.363 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] [Network Manager 26] ACCESS_NETWORK_STATE permission is granted
2021-09-08 12:44:04.366 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Registering doze receiver
2021-09-08 12:44:04.370 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Registering interactivity receiver
2021-09-08 12:44:04.374 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] No connectivity: setting network unreachable
2021-09-08 12:44:04.375 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Linphone core [0xcea3fc00] notified [global_state_changed]
2021-09-08 12:44:04.375 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Linphone core [0xcea3fc00] notified [configuring_status]
2021-09-08 12:44:04.375 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Sal::unlistenPorts(): done
2021-09-08 12:44:04.376 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Creating listening point [0xceb3b040] on [sip:[::0]:-2;transport=UDP]
2021-09-08 12:44:04.376 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Creating listening point [0xceada5c0] on [sip:[::0]:-2;transport=TCP]
2021-09-08 12:44:04.376 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Creating listening point [0xceada600] on [sip:[::0]:-1;transport=TLS]
2021-09-08 12:44:04.376 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Random TCP port is 38089
2021-09-08 12:44:04.377 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Root ca path set to /system/etc/security/cacerts
2021-09-08 12:44:04.377 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Root ca path set to /system/etc/security/cacerts
2021-09-08 12:44:04.377 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Root ca path set to /data/user/0/com.relevantAds.splashcall/files/share/linphone/rootca.pem
2021-09-08 12:44:04.383 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Linphone core [0xcea3fc00] notified [global_state_changed]
2021-09-08 12:44:04.387 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Activity started:com.relevantAds.splashcall.DialPad@71bc935
2021-09-08 12:44:04.388 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Activity Monitor] Activity resumed:com.relevantAds.splashcall.DialPad@71bc935
2021-09-08 12:44:04.388 11050-11050/com.relevantAds.splashcall W/Hello Linphone: [Activity Monitor] Activity wasn't registered yet...
2021-09-08 12:44:04.388 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Activity Monitor] runningActivities=1
2021-09-08 12:44:04.388 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Activity Monitor] App has left background mode
2021-09-08 12:44:04.388 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Core Manager] App has left background mode
2021-09-08 12:44:04.389 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] No connectivity: setting network unreachable
2021-09-08 12:44:04.409 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] [Network Manager 26] A network is available: WIFI, wifi only is disabled
2021-09-08 12:44:04.411 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Active network type is WIFI, state CONNECTED / CONNECTED
2021-09-08 12:44:04.416 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] [Network Manager 26] Found DNS host 10.0.2.3 from network MOBILE with default route
2021-09-08 12:44:04.419 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] DNS servers list updated
2021-09-08 12:44:04.419 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] Network reachability enabled
2021-09-08 12:44:04.420 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] [Network Manager 26] onLinkPropertiesChanged {InterfaceName: wlan0 LinkAddresses: [fe80::15:b2ff:fe00:0/64,192.168.232.2/21,fec0::15:b2ff:fe00:0/64,fec0::b0b9:18f4:8631:85d8/64,] Routes: [fe80::/64 -> :: wlan0,::/0 -> fe80::15:b2ff:fe00:100 wlan0,fec0::/64 -> :: wlan0,192.168.232.0/21 -> 0.0.0.0 wlan0,0.0.0.0/0 -> 192.168.232.1 wlan0,] DnsAddresses: [10.0.2.3,] UsePrivateDns: false PrivateDnsServerName: null Domains: null MTU: 0 TcpBufferSizes: 524288,1048576,2097152,262144,524288,1048576}
2021-09-08 12:44:04.425 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] [Network Manager 26] Found DNS host 10.0.2.3 from network MOBILE with default route
2021-09-08 12:44:04.428 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] DNS servers list updated
2021-09-08 12:44:04.428 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Platform Helper] getDnsServers() returning 10.0.2.3,
2021-09-08 12:44:04.429 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Android Platform Helper] Found DNS server 10.0.2.3
2021-09-08 12:44:04.435 11050-11050/com.relevantAds.splashcall I/Hello Linphone: SIP network reachability state is now [UP]
2021-09-08 12:44:04.435 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Media network reachability state is now [UP]
2021-09-08 12:44:04.435 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Linphone core [0xcea3fc00] notified [network_reachable]
2021-09-08 12:44:04.436 11050-11050/com.relevantAds.splashcall I/Hello Linphone: LinphoneAccount [0xcea9e500] about to register (LinphoneCore version: 5.0.16-2-ged830522e)
2021-09-08 12:44:04.436 11050-11050/com.relevantAds.splashcall E/Hello Linphone: Couldn't compute automatic push notifications parameters on account [0xcea9e504] because account params do not have available push notifications
2021-09-08 12:44:04.437 11050-11050/com.relevantAds.splashcall I/Hello Linphone: get_jni_env(): thread successfuly attached
2021-09-08 12:44:04.443 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): Android wake lock [belle-sip transaction(0xcea9b420)] acquired [ref=0x2eb2]
2021-09-08 12:44:04.443 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): cast long of wakelock 11954
2021-09-08 12:44:04.443 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xcea9b420]: starting transaction background task with id=[2eb2].
2021-09-08 12:44:04.443 11050-11050/com.relevantAds.splashcall I/Hello Linphone: belle_sip_channel_init(); peer_cname=172.83.90.120
2021-09-08 12:44:04.446 11050-11050/com.relevantAds.splashcall I/Hello Linphone: belle_sip_client_transaction_send_request(): waiting channel to be ready
2021-09-08 12:44:04.448 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): Android wake lock [belle-sip send channel] acquired [ref=0x2ed6]
2021-09-08 12:44:04.448 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): cast long of wakelock 11990
2021-09-08 12:44:04.448 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel [0xce4a1980]: starting send background task with id=[2ed6].
2021-09-08 12:44:04.448 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel [0xce4a1980]: starting resolution of 172.83.90.120
2021-09-08 12:44:04.448 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xce4a1980]: entering state RES_IN_PROGRESS
2021-09-08 12:44:04.448 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xcea9b420] channel state changed to [RES_IN_PROGRESS]
2021-09-08 12:44:04.448 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xce4a1980]: entering state RES_DONE
2021-09-08 12:44:04.448 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xcea9b420] channel state changed to [RES_DONE]
2021-09-08 12:44:04.448 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xce4a1980]: entering state CONNECTING
2021-09-08 12:44:04.448 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xcea9b420] channel state changed to [CONNECTING]
2021-09-08 12:44:04.448 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Trying to connect to [TLS://::ffff:172.83.90.120:5061]
2021-09-08 12:44:04.455 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Neither Expires header nor corresponding Contact header found, checking from original request
2021-09-08 12:44:04.455 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Refresher [0xceb3e2d0] takes ownership of transaction [0xcea9b420]
2021-09-08 12:44:04.455 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Account [0xcea9e500] for identity [sip:3160795059@172.83.90.120] moving from state [LinphoneRegistrationNone] to [LinphoneRegistrationProgress] on core [0xcea3fc00]
2021-09-08 12:44:04.455 11050-11050/com.relevantAds.splashcall I/Hello Linphone: updateDependentAccount(): 0xcea9e500 is registered, checking for [0xcea9e504] ->dependency=0x0
2021-09-08 12:44:04.455 11050-11050/com.relevantAds.splashcall D/message: Registration in progress
2021-09-08 12:44:04.456 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Linphone core [0xcea3fc00] notified [account_registration_state_changed]
2021-09-08 12:44:04.456 11050-11050/com.relevantAds.splashcall D/state_changed: [Account] Registration state changed:ProgressRegistration in progress
2021-09-08 12:44:04.456 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Linphone core [0xcea3fc00] notified [registration_state_changed]
2021-09-08 12:44:04.472 11050-11050/com.relevantAds.splashcall W/tAds.splashcal: Accessing hidden method Landroid/graphics/Insets;->of(IIII)Landroid/graphics/Insets; (light greylist, linking)
2021-09-08 12:44:04.476 11050-11050/com.relevantAds.splashcall D/android.widget.GridLayout: horizontal constraints: x5-x0>=825, x5-x4<=225, x4-x3<=75, x3-x2<=225, x2-x1<=75, x1-x0<=175 are inconsistent; permanently removing: x5-x4<=225.
2021-09-08 12:44:04.476 11050-11050/com.relevantAds.splashcall D/android.widget.GridLayout: vertical constraints: y1-y0>=225, y1-y0<=175 are inconsistent; permanently removing: y1-y0<=175.
2021-09-08 12:44:04.543 11050-11173/com.relevantAds.splashcall D/EGL_emulation: eglMakeCurrent: 0xe7de6820: ver 3 0 (tinfo 0xe1c74370)
2021-09-08 12:44:04.785 11050-11050/com.relevantAds.splashcall E/Hello Linphone: Connection failed for fd [76]: cause [Connection refused]
2021-09-08 12:44:04.785 11050-11050/com.relevantAds.splashcall E/Hello Linphone: Cannot connect to [TLS://172.83.90.120:5061]
2021-09-08 12:44:04.785 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xce4a1980]: entering state ERROR
2021-09-08 12:44:04.807 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel [0xce4a1980]: ending send background task with id=[2ed6].
2021-09-08 12:44:04.808 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_release(): Android wake lock released [ref=0x2ed6]
2021-09-08 12:44:04.808 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xcea9b420] channel state changed to [ERROR]
2021-09-08 12:44:04.808 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Refresher[0xceb3e2d0]: scheduling next timer in 0 ms for purpose [retry]
2021-09-08 12:44:04.808 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Register refresher [503] reason [io error] for proxy [<sip:172.83.90.120;transport=tls>]
2021-09-08 12:44:04.808 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Account [0xcea9e500] for identity [sip:3160795059@172.83.90.120] moving from state [LinphoneRegistrationProgress] to [LinphoneRegistrationFailed] on core [0xcea3fc00]
2021-09-08 12:44:04.808 11050-11050/com.relevantAds.splashcall I/Hello Linphone: updateDependentAccount(): 0xcea9e500 is registered, checking for [0xcea9e504] ->dependency=0x0
2021-09-08 12:44:04.809 11050-11050/com.relevantAds.splashcall D/message: io error
2021-09-08 12:44:04.809 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Linphone core [0xcea3fc00] notified [account_registration_state_changed]
2021-09-08 12:44:04.809 11050-11050/com.relevantAds.splashcall D/state_changed: [Account] Registration state changed:Failedio error
2021-09-08 12:44:04.809 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Linphone core [0xcea3fc00] notified [registration_state_changed]
2021-09-08 12:44:04.810 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Changing [client] [REGISTER] transaction [0xcea9b420], from state [INIT] to [TERMINATED]
2021-09-08 12:44:04.810 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Client internal REGISTER transaction [0xcea9b420] terminated
2021-09-08 12:44:04.810 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xcea9b420]: ending transaction background task with id=[2eb2].
2021-09-08 12:44:04.811 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_release(): Android wake lock released [ref=0x2eb2]
2021-09-08 12:44:04.812 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Channel [0xce4a1980] destroyed
2021-09-08 12:44:04.829 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): Android wake lock [belle-sip transaction(0xcea9cfe0)] acquired [ref=0x2eda]
2021-09-08 12:44:04.829 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): cast long of wakelock 11994
2021-09-08 12:44:04.829 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xcea9cfe0]: starting transaction background task with id=[2eda].
2021-09-08 12:44:04.829 11050-11050/com.relevantAds.splashcall I/Hello Linphone: belle_sip_channel_init(); peer_cname=172.83.90.120
2021-09-08 12:44:04.832 11050-11050/com.relevantAds.splashcall I/Hello Linphone: belle_sip_client_transaction_send_request(): waiting channel to be ready
2021-09-08 12:44:04.835 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): Android wake lock [belle-sip send channel] acquired [ref=0x2ef6]
2021-09-08 12:44:04.835 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): cast long of wakelock 12022
2021-09-08 12:44:04.835 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel [0xce4a1b00]: starting send background task with id=[2ef6].
2021-09-08 12:44:04.835 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel [0xce4a1b00]: starting resolution of 172.83.90.120
2021-09-08 12:44:04.835 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xce4a1b00]: entering state RES_IN_PROGRESS
2021-09-08 12:44:04.836 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xcea9cfe0] channel state changed to [RES_IN_PROGRESS]
2021-09-08 12:44:04.836 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xce4a1b00]: entering state RES_DONE
2021-09-08 12:44:04.836 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xcea9cfe0] channel state changed to [RES_DONE]
2021-09-08 12:44:04.836 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xce4a1b00]: entering state CONNECTING
2021-09-08 12:44:04.836 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xcea9cfe0] channel state changed to [CONNECTING]
2021-09-08 12:44:04.836 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Trying to connect to [TLS://::ffff:172.83.90.120:5061]
2021-09-08 12:44:05.028 11050-11050/com.relevantAds.splashcall I/Hello Linphone: [Activity Monitor] Activity stopped:com.relevantAds.splashcall.OTPVerification@25ef854
2021-09-08 12:44:05.194 11050-11050/com.relevantAds.splashcall E/Hello Linphone: Connection failed for fd [60]: cause [Connection refused]
2021-09-08 12:44:05.194 11050-11050/com.relevantAds.splashcall E/Hello Linphone: Cannot connect to [TLS://172.83.90.120:5061]
2021-09-08 12:44:05.194 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xce4a1b00]: entering state ERROR
2021-09-08 12:44:05.216 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel [0xce4a1b00]: ending send background task with id=[2ef6].
2021-09-08 12:44:05.218 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_release(): Android wake lock released [ref=0x2ef6]
2021-09-08 12:44:05.218 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xcea9cfe0] channel state changed to [ERROR]
2021-09-08 12:44:05.219 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Refresher[0xceb3e2d0]: scheduling next timer in 60000 ms for purpose [retry]
2021-09-08 12:44:05.219 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Register refresher [503] reason [io error] for proxy [<sip:172.83.90.120;transport=tls>]
2021-09-08 12:44:05.219 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Changing [client] [REGISTER] transaction [0xcea9cfe0], from state [INIT] to [TERMINATED]
2021-09-08 12:44:05.219 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Client internal REGISTER transaction [0xcea9cfe0] terminated
2021-09-08 12:44:05.219 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xcea9cfe0]: ending transaction background task with id=[2eda].
2021-09-08 12:44:05.221 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_release(): Android wake lock released [ref=0x2eda]
2021-09-08 12:44:05.222 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Channel [0xce4a1b00] destroyed
2021-09-08 12:45:05.228 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): Android wake lock [belle-sip transaction(0xcea9d2e0)] acquired [ref=0x2efa]
2021-09-08 12:45:05.228 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): cast long of wakelock 12026
2021-09-08 12:45:05.228 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xcea9d2e0]: starting transaction background task with id=[2efa].
2021-09-08 12:45:05.228 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Transaction [0xcea9cfe0] deleted
2021-09-08 12:45:05.228 11050-11050/com.relevantAds.splashcall I/Hello Linphone: belle_sip_channel_init(); peer_cname=172.83.90.120
2021-09-08 12:45:05.233 11050-11050/com.relevantAds.splashcall I/Hello Linphone: belle_sip_client_transaction_send_request(): waiting channel to be ready
2021-09-08 12:45:05.235 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): Android wake lock [belle-sip send channel] acquired [ref=0x2f12]
2021-09-08 12:45:05.235 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): cast long of wakelock 12050
2021-09-08 12:45:05.235 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel [0xcebc16c0]: starting send background task with id=[2f12].
2021-09-08 12:45:05.235 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel [0xcebc16c0]: starting resolution of 172.83.90.120
2021-09-08 12:45:05.235 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xcebc16c0]: entering state RES_IN_PROGRESS
2021-09-08 12:45:05.235 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xcea9d2e0] channel state changed to [RES_IN_PROGRESS]
2021-09-08 12:45:05.236 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xcebc16c0]: entering state RES_DONE
2021-09-08 12:45:05.236 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xcea9d2e0] channel state changed to [RES_DONE]
2021-09-08 12:45:05.236 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xcebc16c0]: entering state CONNECTING
2021-09-08 12:45:05.236 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xcea9d2e0] channel state changed to [CONNECTING]
2021-09-08 12:45:05.236 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Trying to connect to [TLS://::ffff:172.83.90.120:5061]
2021-09-08 12:45:05.728 11050-11050/com.relevantAds.splashcall E/Hello Linphone: Connection failed for fd [60]: cause [Connection refused]
2021-09-08 12:45:05.728 11050-11050/com.relevantAds.splashcall E/Hello Linphone: Cannot connect to [TLS://172.83.90.120:5061]
2021-09-08 12:45:05.728 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xcebc16c0]: entering state ERROR
2021-09-08 12:45:05.749 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel [0xcebc16c0]: ending send background task with id=[2f12].
2021-09-08 12:45:05.751 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_release(): Android wake lock released [ref=0x2f12]
2021-09-08 12:45:05.751 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xcea9d2e0] channel state changed to [ERROR]
2021-09-08 12:45:05.751 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Refresher[0xceb3e2d0]: scheduling next timer in 60000 ms for purpose [retry]
2021-09-08 12:45:05.751 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Register refresher [503] reason [io error] for proxy [<sip:172.83.90.120;transport=tls>]
2021-09-08 12:45:05.752 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Changing [client] [REGISTER] transaction [0xcea9d2e0], from state [INIT] to [TERMINATED]
2021-09-08 12:45:05.752 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Client internal REGISTER transaction [0xcea9d2e0] terminated
2021-09-08 12:45:05.752 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xcea9d2e0]: ending transaction background task with id=[2efa].
2021-09-08 12:45:05.753 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_release(): Android wake lock released [ref=0x2efa]
2021-09-08 12:45:05.753 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Channel [0xcebc16c0] destroyed
2021-09-08 12:46:05.773 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): Android wake lock [belle-sip transaction(0xe01956e0)] acquired [ref=0x2f16]
2021-09-08 12:46:05.774 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): cast long of wakelock 12054
2021-09-08 12:46:05.774 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xe01956e0]: starting transaction background task with id=[2f16].
2021-09-08 12:46:05.774 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Transaction [0xcea9d2e0] deleted
2021-09-08 12:46:05.775 11050-11050/com.relevantAds.splashcall I/Hello Linphone: belle_sip_channel_init(); peer_cname=172.83.90.120
2021-09-08 12:46:05.778 11050-11050/com.relevantAds.splashcall I/Hello Linphone: belle_sip_client_transaction_send_request(): waiting channel to be ready
2021-09-08 12:46:05.781 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): Android wake lock [belle-sip send channel] acquired [ref=0x2f36]
2021-09-08 12:46:05.781 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): cast long of wakelock 12086
2021-09-08 12:46:05.781 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel [0xcebc1f80]: starting send background task with id=[2f36].
2021-09-08 12:46:05.781 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel [0xcebc1f80]: starting resolution of 172.83.90.120
2021-09-08 12:46:05.781 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xcebc1f80]: entering state RES_IN_PROGRESS
2021-09-08 12:46:05.781 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xe01956e0] channel state changed to [RES_IN_PROGRESS]
2021-09-08 12:46:05.781 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xcebc1f80]: entering state RES_DONE
2021-09-08 12:46:05.781 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xe01956e0] channel state changed to [RES_DONE]
2021-09-08 12:46:05.781 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xcebc1f80]: entering state CONNECTING
2021-09-08 12:46:05.781 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xe01956e0] channel state changed to [CONNECTING]
2021-09-08 12:46:05.781 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Trying to connect to [TLS://::ffff:172.83.90.120:5061]
2021-09-08 12:46:06.130 11050-11050/com.relevantAds.splashcall E/Hello Linphone: Connection failed for fd [60]: cause [Connection refused]
2021-09-08 12:46:06.131 11050-11050/com.relevantAds.splashcall E/Hello Linphone: Cannot connect to [TLS://172.83.90.120:5061]
2021-09-08 12:46:06.131 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xcebc1f80]: entering state ERROR
2021-09-08 12:46:06.153 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel [0xcebc1f80]: ending send background task with id=[2f36].
2021-09-08 12:46:06.156 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_release(): Android wake lock released [ref=0x2f36]
2021-09-08 12:46:06.156 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xe01956e0] channel state changed to [ERROR]
2021-09-08 12:46:06.156 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Refresher[0xceb3e2d0]: scheduling next timer in 60000 ms for purpose [retry]
2021-09-08 12:46:06.156 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Register refresher [503] reason [io error] for proxy [<sip:172.83.90.120;transport=tls>]
2021-09-08 12:46:06.156 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Changing [client] [REGISTER] transaction [0xe01956e0], from state [INIT] to [TERMINATED]
2021-09-08 12:46:06.156 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Client internal REGISTER transaction [0xe01956e0] terminated
2021-09-08 12:46:06.156 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xe01956e0]: ending transaction background task with id=[2f16].
2021-09-08 12:46:06.157 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_release(): Android wake lock released [ref=0x2f16]
2021-09-08 12:46:06.158 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Channel [0xcebc1f80] destroyed
2021-09-08 12:47:06.169 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): Android wake lock [belle-sip transaction(0xe01957a0)] acquired [ref=0x2f3a]
2021-09-08 12:47:06.169 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): cast long of wakelock 12090
2021-09-08 12:47:06.169 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xe01957a0]: starting transaction background task with id=[2f3a].
2021-09-08 12:47:06.169 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Transaction [0xe01956e0] deleted
2021-09-08 12:47:06.170 11050-11050/com.relevantAds.splashcall I/Hello Linphone: belle_sip_channel_init(); peer_cname=172.83.90.120
2021-09-08 12:47:06.177 11050-11050/com.relevantAds.splashcall I/Hello Linphone: belle_sip_client_transaction_send_request(): waiting channel to be ready
2021-09-08 12:47:06.180 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): Android wake lock [belle-sip send channel] acquired [ref=0x2f56]
2021-09-08 12:47:06.180 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): cast long of wakelock 12118
2021-09-08 12:47:06.180 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel [0xcebc1d80]: starting send background task with id=[2f56].
2021-09-08 12:47:06.180 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel [0xcebc1d80]: starting resolution of 172.83.90.120
2021-09-08 12:47:06.180 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xcebc1d80]: entering state RES_IN_PROGRESS
2021-09-08 12:47:06.181 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xe01957a0] channel state changed to [RES_IN_PROGRESS]
2021-09-08 12:47:06.181 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xcebc1d80]: entering state RES_DONE
2021-09-08 12:47:06.181 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xe01957a0] channel state changed to [RES_DONE]
2021-09-08 12:47:06.181 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xcebc1d80]: entering state CONNECTING
2021-09-08 12:47:06.181 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xe01957a0] channel state changed to [CONNECTING]
2021-09-08 12:47:06.181 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Trying to connect to [TLS://::ffff:172.83.90.120:5061]
2021-09-08 12:47:06.564 11050-11050/com.relevantAds.splashcall E/Hello Linphone: Connection failed for fd [60]: cause [Connection refused]
2021-09-08 12:47:06.564 11050-11050/com.relevantAds.splashcall E/Hello Linphone: Cannot connect to [TLS://172.83.90.120:5061]
2021-09-08 12:47:06.564 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xcebc1d80]: entering state ERROR
2021-09-08 12:47:06.585 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel [0xcebc1d80]: ending send background task with id=[2f56].
2021-09-08 12:47:06.588 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_release(): Android wake lock released [ref=0x2f56]
2021-09-08 12:47:06.588 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xe01957a0] channel state changed to [ERROR]
2021-09-08 12:47:06.588 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Refresher[0xceb3e2d0]: scheduling next timer in 60000 ms for purpose [retry]
2021-09-08 12:47:06.588 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Register refresher [503] reason [io error] for proxy [<sip:172.83.90.120;transport=tls>]
2021-09-08 12:47:06.588 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Changing [client] [REGISTER] transaction [0xe01957a0], from state [INIT] to [TERMINATED]
2021-09-08 12:47:06.588 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Client internal REGISTER transaction [0xe01957a0] terminated
2021-09-08 12:47:06.588 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xe01957a0]: ending transaction background task with id=[2f3a].
2021-09-08 12:47:06.590 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_release(): Android wake lock released [ref=0x2f3a]
2021-09-08 12:47:06.590 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Channel [0xcebc1d80] destroyed
2021-09-08 12:48:06.610 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): Android wake lock [belle-sip transaction(0xe01956e0)] acquired [ref=0x2eba]
2021-09-08 12:48:06.610 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): cast long of wakelock 11962
2021-09-08 12:48:06.610 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xe01956e0]: starting transaction background task with id=[2eba].
2021-09-08 12:48:06.610 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Transaction [0xe01957a0] deleted
2021-09-08 12:48:06.611 11050-11050/com.relevantAds.splashcall I/Hello Linphone: belle_sip_channel_init(); peer_cname=172.83.90.120
2021-09-08 12:48:06.616 11050-11050/com.relevantAds.splashcall I/Hello Linphone: belle_sip_client_transaction_send_request(): waiting channel to be ready
2021-09-08 12:48:06.619 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): Android wake lock [belle-sip send channel] acquired [ref=0x2ed2]
2021-09-08 12:48:06.619 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_acquire(): cast long of wakelock 11986
2021-09-08 12:48:06.619 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel [0xcebc1d40]: starting send background task with id=[2ed2].
2021-09-08 12:48:06.619 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel [0xcebc1d40]: starting resolution of 172.83.90.120
2021-09-08 12:48:06.619 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xcebc1d40]: entering state RES_IN_PROGRESS
2021-09-08 12:48:06.619 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xe01956e0] channel state changed to [RES_IN_PROGRESS]
2021-09-08 12:48:06.619 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xcebc1d40]: entering state RES_DONE
2021-09-08 12:48:06.619 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xe01956e0] channel state changed to [RES_DONE]
2021-09-08 12:48:06.620 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xcebc1d40]: entering state CONNECTING
2021-09-08 12:48:06.620 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xe01956e0] channel state changed to [CONNECTING]
2021-09-08 12:48:06.620 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Trying to connect to [TLS://::ffff:172.83.90.120:5061]
2021-09-08 12:48:06.975 11050-11050/com.relevantAds.splashcall E/Hello Linphone: Connection failed for fd [60]: cause [Connection refused]
2021-09-08 12:48:06.975 11050-11050/com.relevantAds.splashcall E/Hello Linphone: Cannot connect to [TLS://172.83.90.120:5061]
2021-09-08 12:48:06.975 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel[0xcebc1d40]: entering state ERROR
2021-09-08 12:48:06.997 11050-11050/com.relevantAds.splashcall I/Hello Linphone: channel [0xcebc1d40]: ending send background task with id=[2ed2].
2021-09-08 12:48:06.999 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_release(): Android wake lock released [ref=0x2ed2]
2021-09-08 12:48:06.999 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xe01956e0] channel state changed to [ERROR]
2021-09-08 12:48:06.999 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Refresher[0xceb3e2d0]: scheduling next timer in 60000 ms for purpose [retry]
2021-09-08 12:48:07.000 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Register refresher [503] reason [io error] for proxy [<sip:172.83.90.120;transport=tls>]
2021-09-08 12:48:07.000 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Changing [client] [REGISTER] transaction [0xe01956e0], from state [INIT] to [TERMINATED]
2021-09-08 12:48:07.000 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Client internal REGISTER transaction [0xe01956e0] terminated
2021-09-08 12:48:07.000 11050-11050/com.relevantAds.splashcall I/Hello Linphone: transaction [0xe01956e0]: ending transaction background task with id=[2eba].
2021-09-08 12:48:07.002 11050-11050/com.relevantAds.splashcall I/Hello Linphone: bellesip_wake_lock_release(): Android wake lock released [ref=0x2eba]
2021-09-08 12:48:07.002 11050-11050/com.relevantAds.splashcall I/Hello Linphone: Channel [0xcebc1d40] destroyed