예제 #1
0
    public void SendSMS()
    {
        string body          = smsBody.text;
        string recieverPhone = reciever.text;

        if (body.Length > 0 && recieverPhone.Length == 10)
        {
            AndroidSocialGate.SendTextMessage(body, recieverPhone);
        }
    }