- updated ua_connect() call to new version (currently in ua_connect_uri branch)

This commit is contained in:
Juha Heinanen
2018-09-24 11:13:08 +03:00
parent bed8b9dfe3
commit 8bf5b9dfa6
3 changed files with 3 additions and 4 deletions

View File

@ -8,8 +8,8 @@ android {
applicationId = 'com.tutpro.baresip'
minSdkVersion 21
targetSdkVersion 27
versionCode = 21
versionName = '3.0.0'
versionCode = 22
versionName = '3.0.1'
externalNativeBuild {
cmake {
cFlags '-DHAVE_INTTYPES_H'

View File

@ -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);
ua = (struct ua *)strtoul(native_ua, NULL, 10);
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();
if (err) {
LOGW("connecting to %s failed with error %d\n", native_uri, err);

View File

@ -23,7 +23,6 @@ import android.support.v7.view.menu.ActionMenuItemView
import android.view.inputmethod.InputMethodManager
import android.text.Editable
import android.text.TextWatcher
import android.widget.RelativeLayout.LayoutParams
import android.widget.RelativeLayout
import android.widget.*
import android.view.*