- updated ua_connect() call to new version (currently in ua_connect_uri branch)
This commit is contained in:
@ -8,8 +8,8 @@ android {
|
|||||||
applicationId = 'com.tutpro.baresip'
|
applicationId = 'com.tutpro.baresip'
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 27
|
targetSdkVersion 27
|
||||||
versionCode = 21
|
versionCode = 22
|
||||||
versionName = '3.0.0'
|
versionName = '3.0.1'
|
||||||
externalNativeBuild {
|
externalNativeBuild {
|
||||||
cmake {
|
cmake {
|
||||||
cFlags '-DHAVE_INTTYPES_H'
|
cFlags '-DHAVE_INTTYPES_H'
|
||||||
|
|||||||
@ -865,7 +865,7 @@ Java_com_tutpro_baresip_MainActivity_ua_1connect(JNIEnv *env, jobject thiz,
|
|||||||
LOGD("connecting ua %s to %s\n", native_ua, native_uri);
|
LOGD("connecting ua %s to %s\n", native_ua, native_uri);
|
||||||
ua = (struct ua *)strtoul(native_ua, NULL, 10);
|
ua = (struct ua *)strtoul(native_ua, NULL, 10);
|
||||||
re_thread_enter();
|
re_thread_enter();
|
||||||
err = ua_connect(ua, &call, NULL, native_uri, NULL, VIDMODE_OFF);
|
err = ua_connect(ua, &call, NULL, native_uri, VIDMODE_OFF);
|
||||||
re_thread_leave();
|
re_thread_leave();
|
||||||
if (err) {
|
if (err) {
|
||||||
LOGW("connecting to %s failed with error %d\n", native_uri, err);
|
LOGW("connecting to %s failed with error %d\n", native_uri, err);
|
||||||
|
|||||||
@ -23,7 +23,6 @@ import android.support.v7.view.menu.ActionMenuItemView
|
|||||||
import android.view.inputmethod.InputMethodManager
|
import android.view.inputmethod.InputMethodManager
|
||||||
import android.text.Editable
|
import android.text.Editable
|
||||||
import android.text.TextWatcher
|
import android.text.TextWatcher
|
||||||
import android.widget.RelativeLayout.LayoutParams
|
|
||||||
import android.widget.RelativeLayout
|
import android.widget.RelativeLayout
|
||||||
import android.widget.*
|
import android.widget.*
|
||||||
import android.view.*
|
import android.view.*
|
||||||
|
|||||||
Reference in New Issue
Block a user