- New version 10.2.0.

This commit is contained in:
Juha Heinanen
2019-09-29 10:53:17 +03:00
parent b08ab03e8c
commit 7acbfd5ae5
3 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,6 @@
This is very basic Android Studio project implementing <a href="https://github.com/alfredh/baresip">baresip</a> based SIP User Agent. This is very basic Android Studio project implementing <a href="https://github.com/alfredh/baresip">baresip</a> based SIP User Agent.
Currently supports voice calls and messages with TLS transport, voicemail MWI, incoming call transfer requests (REFER), PCMU/PCMA, iLBC, G.722, and G.722.1, and opus voice codecs, as well as ZRTP and (DTLS) SRTP media encapsulation. Currently supports voice calls and messages with TLS transport, voicemail MWI, incoming call transfer requests (REFER), PCMU/PCMA, iLBC, G.726, G.722, and G.722.1, and opus voice codecs, as well as ZRTP and (DTLS) SRTP media encapsulation.
Motivated by need for a secure SIP user agent for Android that does not depend on third party push notification services. Motivated by need for a secure SIP user agent for Android that does not depend on third party push notification services.

View File

@ -8,8 +8,8 @@ android {
applicationId = 'com.tutpro.baresip' applicationId = 'com.tutpro.baresip'
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 28 targetSdkVersion 28
versionCode = 89 versionCode = 90
versionName = '10.1.0' versionName = '10.2.0'
externalNativeBuild { externalNativeBuild {
cmake { cmake {
cFlags '-DHAVE_INTTYPES_H' cFlags '-DHAVE_INTTYPES_H'

View File

@ -0,0 +1,2 @@
- Added support for G.726 codec.
- Improved default codec priority order.