diff --git a/README.md b/README.md index 3cb61a4f..cfdfc762 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ This is very basic Android Studio project implementing baresip 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. diff --git a/app/build.gradle b/app/build.gradle index 9b9d92f0..b25c4c2a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -8,8 +8,8 @@ android { applicationId = 'com.tutpro.baresip' minSdkVersion 21 targetSdkVersion 28 - versionCode = 89 - versionName = '10.1.0' + versionCode = 90 + versionName = '10.2.0' externalNativeBuild { cmake { cFlags '-DHAVE_INTTYPES_H' diff --git a/fastlane/metadata/android/en-US/changelogs/10.2.0.txt b/fastlane/metadata/android/en-US/changelogs/10.2.0.txt new file mode 100644 index 00000000..2e8d24d1 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/10.2.0.txt @@ -0,0 +1,2 @@ +- Added support for G.726 codec. +- Improved default codec priority order.