Hi, The Android SDK does not include an inbuilt application to send and receive SMS at this time. That is why you don't see any log messages on sending SMS.
If you want to see a log, or handle SMS messages you should create your own application. In the AndroidManifest.xml of your application set the permission to receive SMS and define a IntentReceiver for receiving the SMS_RECEIVED intent. <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.google.android.sms.test"> <uses-permission android:name="android.permission.RECEIVE_SMS" /> <application android:icon="@drawable/icon"> <activity android:name=".SMSTest" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <receiver android:name=".MySMSReceiver"> <intent-filter> <action android:name=" android.provider.Telephony.SMS_RECEIVED" /> </intent-filter> </receiver> </application> </manifest> In the OnReceiveIntent() method of your IntentReceiver you could include a Log() method to see a log whenever an SMS is sent: public void onReceiveIntent(Context arg0, Intent arg1) { // TODO Auto-generated method stub Log.i("\nSMS","Received SMS"); } Check out the SMSMessage and SMSManager classes below to send and receive SMS from your application: http://code.google.com/android/reference/android/telephony/gsm/package-summary.html Thanks, Megha On Sat, Mar 22, 2008 at 4:32 PM, ScottG <[EMAIL PROTECTED]> wrote: > > I'm running m5-rc14_windows. logcat is set at *:V. Just about > anything I do on telnet localhost 5554 causes a flurry of logging > activity EXCEPT 'sms send' which doesn't tickle the log at all. 'sms > send' reports back OK so it seems to think it has done the deed. > Needless to say, my IntentReceiver waiting for an incoming SMS never > wakes up either. > > Any insight? > > Cheers, Scott > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] Announcing the new M5 SDK! http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

