tags:

views:

136

answers:

1

I have to build a feature in my application which allows user to send a skype message. For this I have installed skype lite client for Android (although offically the download has been currently withdrawn from Skype). Now how to initiate the activity from my application OR simply send the chat message without bringing it front, assuming I have skype installed in Android & also signed in already. Any help ? Thanks.

A: 

Unless the application, Skype in this case, has some publicly available Intents you can send (like Twidroid has for tweeting) it is not possible.

Alternatively you could find some kind of a Skype proxy web-service that you could call from within your application to relay the messages.

Roosmaa
Yes it is not easily possible until that application makes the intent available publicly. In this case {com.skype.android.lite/com.skype.android.lite.ChatScreen} , for chat window , causes Security exception if called from other application.
mob_king