Hi,
What class can we use to send a text message? I tried this on the emulator, 2.0:
import android.telephony.SmsManager;
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(...);
and that works ok. On my G1 running 1.5, I get a verify error, guessing because SmsManager is not available in 1.5. Maybe for 1.5 we need to use the deprecated class?:
android.telephony.gsm.SmsManager
is that correct, or is there some other class we're supposed to use for sending text messages?
Thanks