Send text messages using viber in android application

I wrote an Android app. I want to send a text message with Viber (if installed). Is it possible?

Thank.

+5
source share
2 answers

You can run the intent of the Viber package with text in the form of additional components in the kit using the appropriate keys.

EDIT

As an example, this will trigger the wireless settings activity.

startActivity( new Intent( Settings.ACTION_WIRELESS_SETTINGS ) );

If you choose Action Viber support (if any), you should run it.

+1
source

This site provides the Viber API.

check it out.

http://viberapi.ir/

0
source

All Articles