All Projects → GoBelieveIO → voip_android

GoBelieveIO / voip_android

Licence: BSD-3-Clause license
android voip sdk

Programming Languages

java
68154 projects - #9 most used programming language
Makefile
30231 projects

#voip android sdk

##信令通话的初始化参考im工程

##发起视频通话 Intent intent = new Intent(this, VOIPVideoActivity.class); intent.putExtra("peer_uid", peerUID); intent.putExtra("peer_name", ""); intent.putExtra("current_uid", uid); intent.putExtra("channel_id", UUID.randomUUID().toString()); intent.putExtra("token", token); intent.putExtra("is_caller", true); startActivity(intent);

##发起语音通话

    Intent intent = new Intent(this, VOIPVoiceActivity.class);
    intent.putExtra("peer_uid", peerUID);
    intent.putExtra("peer_name", "");
    intent.putExtra("current_uid", uid);
    intent.putExtra("channel_id", UUID.randomUUID().toString());
    intent.putExtra("token", token);
    intent.putExtra("is_caller", true);
    startActivity(intent);

##调试jni 1.编译debug版本的libvoip.so 2.cp app/src/main/libs/armeabi-v7a/*.so app/src/main/obj/local/armeabi-v7a/ 3.ndk-gdb

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].