Hey guys,
I'm working on integrating my Android phone with this external piece
of hardware. I have all the direct communication between the two
completed. However I would like to add functionality for the phone to
send a Bluetooth Message with the SMS when an SMS is received.
The way I'm implementing SMS receiving is by having a class
(SmsReceiver) that extends BroadcastReceiver, and having the following
in my Manifest:
<receiver android:name=".SmsReceiver">
<intent-filter>
<action
android:name="android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>
</receiver>
My question is how exactly would I make it so that when I receive a
SMS (i'm guessing in the onReceive of my SmsReceiver) I would also
send the message to the external piece of hardware through Bluetooth.
Any ideas?
--
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]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en