Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. CloudRail.setAppKey("[CloudRail License Key]");
  2.  
  3. // final SMS sms = new Nexmo(context, "[clientIdentifier]", "[clientSecret]");
  4. final SMS sms = new Twilio(context, "[clientIdentifier]", "[clientSecret]");
  5.  
  6. new Thread() {
  7. @Override
  8. public void run() {
  9. sms.sendSMS("CloudRail", "+4912345678", "Hello from CloudRail");
  10. }
  11. }.start();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement