10

The binary distribution of the Skypekit SDK(beta) ships with binary Runtimes for different machine architectures(linux/win/mac-x86/arm-eabi). Usually, for integrating and leveraging Skype functionalities what we do is -

  1. Start Runtime
  2. Connect to it over TCP and
  3. then pass command-protocol messages(For IM, Audio/Video chat).

Per Skype FAQ:
Although there are no public builds available for Android there is a Runtime for ARM architecture and there are Java Wrappers available for communicating with this Runtime.

Question:

  1. Has anyone tried integrating Skype runtime in an existing Android application?
  2. How can we setup and start the Skype Runtime from command line? I assume once this is figured out I can use Runtime API to invoke the same from my application?
  3. Can we just package all the armeabi files and load them when the app initializes, initialize the runtime and maybe then connect to it on the said port and pass command protocol messages?

Any pointers on how this could be done?

Thanks.

Samuh
  • 36,316
  • 26
  • 109
  • 116
  • I was able to start the Runtime from adb shell..need to figure out a way to connect to it.. – Samuh Mar 27 '11 at 13:10
  • Does the Skype Android SDK support allowing the SDP portion of the message to be modified, such that the media RTP streams will be routed to a different IP address and port than what the application is running on? – Nancy thakkar Nov 12 '16 at 06:47

2 Answers2

0

You might try looking at this thread to see if it answers your questions already:

how to include the Skype Kit java APIs inside an android application on Ecclipse IDE?

Community
  • 1
  • 1
Justin Pearce
  • 4,994
  • 2
  • 24
  • 37
  • I have seen it; the information is outdated. THe problem with Skypekit is that it is closed beta so not much is out there. I will continue my experiment this weekend. Hopefully, I will find something and post a note. Thanks for the suggestion, though!.. cheers! – Samuh Mar 31 '11 at 19:09
0

For any one looking for an answer, this was answered in another thread, here.

Community
  • 1
  • 1
Samuh
  • 36,316
  • 26
  • 109
  • 116
  • Does the Skype4b Android SDK support allowing the SDP portion of the message to be modified, such that the media RTP streams will be routed to a different IP address and port than what the application is running on? – Nancy thakkar Nov 12 '16 at 06:47