updated readme
This commit is contained in:
@ -1,6 +1,8 @@
|
|||||||
This is very basic Android Studio baresip project.
|
This is very basic Android Studio project implementing baresip
|
||||||
|
(https://github.com/alfredh/baresip) based SIP User Agent.
|
||||||
|
|
||||||
Includes PCMU/PCMA and opus codecs as well as ZRTP media encapsulation.
|
Currently includes TLS transport, PCMU/PCMA and opus codecs, as well as
|
||||||
|
ZRTP and (DTLS) SRTP media encapsulation.
|
||||||
|
|
||||||
The static libraries and include files in distribution directory have
|
The static libraries and include files in distribution directory have
|
||||||
been produced using https://github.com/alfredh/baresip-android.
|
been produced using https://github.com/alfredh/baresip-android.
|
||||||
|
|||||||
@ -40,6 +40,10 @@ add_library(lib_opus STATIC IMPORTED)
|
|||||||
set_target_properties(lib_opus PROPERTIES IMPORTED_LOCATION
|
set_target_properties(lib_opus PROPERTIES IMPORTED_LOCATION
|
||||||
${distribution_DIR}/opus/lib/${ANDROID_ABI}/libopus.a)
|
${distribution_DIR}/opus/lib/${ANDROID_ABI}/libopus.a)
|
||||||
|
|
||||||
|
add_library(lib_g7221 STATIC IMPORTED)
|
||||||
|
set_target_properties(lib_g7221 PROPERTIES IMPORTED_LOCATION
|
||||||
|
${distribution_DIR}/g722_1/lib/${ANDROID_ABI}/libg722_1.a)
|
||||||
|
|
||||||
add_library(lib_bn STATIC IMPORTED)
|
add_library(lib_bn STATIC IMPORTED)
|
||||||
set_target_properties(lib_bn PROPERTIES IMPORTED_LOCATION
|
set_target_properties(lib_bn PROPERTIES IMPORTED_LOCATION
|
||||||
${distribution_DIR}/bn/lib/${ANDROID_ABI}/libbn.a)
|
${distribution_DIR}/bn/lib/${ANDROID_ABI}/libbn.a)
|
||||||
@ -69,6 +73,7 @@ target_link_libraries(baresip
|
|||||||
lib_ssl
|
lib_ssl
|
||||||
lib_crypto
|
lib_crypto
|
||||||
lib_opus
|
lib_opus
|
||||||
|
lib_g7221
|
||||||
lib_zrtp
|
lib_zrtp
|
||||||
lib_bn
|
lib_bn
|
||||||
z
|
z
|
||||||
|
|||||||
Reference in New Issue
Block a user