- increased version numbers

- fixed compiler warning
This commit is contained in:
Juha Heinanen
2018-12-04 02:14:22 +02:00
parent fb82acbf25
commit 0fa5c5992f
2 changed files with 3 additions and 3 deletions

View File

@ -7,8 +7,8 @@ android {
applicationId = 'com.tutpro.baresip'
minSdkVersion 21
targetSdkVersion 27
versionCode = 37
versionName = '5.0.0'
versionCode = 38
versionName = '5.1.0'
externalNativeBuild {
cmake {
cFlags '-DHAVE_INTTYPES_H'

View File

@ -475,7 +475,7 @@ Java_com_tutpro_baresip_BaresipService_baresipStart(JNIEnv *env, jobject instanc
JNIEXPORT void JNICALL
Java_com_tutpro_baresip_BaresipService_baresipStop(JNIEnv *env, jobject thiz, jboolean force) {
LOGD("ua_stop_all upon baresipStop");
mqueue_push(mq, ID_UA_STOP_ALL, (void *)force);
mqueue_push(mq, ID_UA_STOP_ALL, (void *)((int)force));
return;
}