osimer pothe
osimer pothe

Reputation: 2897

Steps to make video call using csipsimple in Android

I have downloaded CSipSimple video plugin from http://csipsimple.googlecode.com/svn/trunk/CSipSimpleVideoPlugin/ and imported code into android studio . Then I have run it . But it shows the error , "Default Activity not found".

Can anyone provide me steps to make video call

Upvotes: 0

Views: 3871

Answers (2)

Yamini
Yamini

Reputation: 792

You can make videocall button visible by : commenting this line- //findViewById(R.id.dialButton).setEnabled(enabled); in DialerCallBar.java class & setEnabled() method.

Upvotes: 1

Hayyan
Hayyan

Reputation: 19

  1. Download code from http://csipsimple.googlecode.com/svn/trunk/CSipSimple
  2. In CSipsimple, use "make" to build it(guide to build CSipSimle https://code.google.com/p/csipsimple/wiki/HowToBuild).
  3. Download CSipSimpleVideoPlugin.
  4. Use "make VideoLibs" to build video plugin.
  5. Import CSipSimpleVideoPlugin and CSipSimple into eclipse. then run them.
  6. In CSipsimple's preferences form, you need to enable video. to do so, "video call button" is add to dial panel.

Upvotes: 1

Related Questions