Native Android WebRTC application development

前端 未结 5 2271
情深已故
情深已故 2020-12-24 01:55

I am trying to create an android application for video chat and messaging by using WebRtc Native apis. I have been through several links and found out that most of the docum

5条回答
  •  被撕碎了的回忆
    2020-12-24 02:41

    I am also in the same situation as you are, finding how to integrate my own signalling service into libjingle and there seems to be no tutorial out there addressing it.

    If you are using Android Studio for your development, you should include compile 'io.pristine:libjingle:9694@aar' in the dependencies section of your build.gradle script:

    dependencies {
       compile fileTree(dir: 'libs', include: ['*.jar'])
       compile 'io.pristine:libjingle:9694@aar'
       // the rest of your code
    }
    

    This should add libjingle to your project.

提交回复
热议问题