[android-developers] Receive SMS in Android 2.3 vs Android 4.0

2012-12-04 Thread Android Test
I have written an SMS app to receive SMSes using the various samples available online. I tested it in a Android 2.3 device and it was working perfectly. Now, I changed the API level to Android 4.0 and tried running it on an Android 4.0 device and nothing happens. I checked the logcat in

[android-developers] Receive Sms

2012-09-03 Thread Ehsan Sadeghi
I write this broadcast receiver to receive sms from certains number : package ir.smspeik.sms; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.telephony.SmsMessage;

[android-developers] Receive SMS

2012-08-05 Thread Ehsan Sadeghi
How can I receive from certain numbers and only for them my app is started and how doesn't messages that app receive appear in the messaging built in? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Receive sms

2012-07-30 Thread Ehsan Sadeghi
I write this code in manifest file : uses-sdk android:minSdkVersion=8 android:targetSdkVersion=15 / application android:icon=@drawable/ic_launcher android:label=@string/app_name android:theme=@style/AppTheme activity

Re: [android-developers] Receive sms

2012-07-30 Thread Gergely Juhász
Remove exported=false from everywhere. On 30 July 2012 20:44, Ehsan Sadeghi esade...@gmail.com wrote: I write this code in manifest file : uses-sdk android:minSdkVersion=8 android:targetSdkVersion=15 / application android:icon=@drawable/ic_launcher

[android-developers] receive sms application. need help.

2012-02-13 Thread jitesh adnani
ive been stuck on some problem when trying to handle incoming sms message and to toast them. have no idea how to get over the problem. please help. this is my main java file - SmsApp.java package com.android.project.smsapp; import android.app.Activity; import android.content.Intent; import

[android-developers] Receive SMS message report in user app

2010-12-21 Thread Yangyang Zhao
I've read the source of package/app/Mms and find that the MessageStatusReceiver class handle the message status report. I think that the message status report is also a kind of SMS message, so it can be received by any BroadcastReceiver which has registered with the action

[android-developers] Receive SMS on a specific port

2010-10-06 Thread Warren
Is it possible to receive SMS on a specific port on my HTC Desire? My development enviroment:Android 2.1 This is the configuration of my Receive program AndroidManifest.xml: receiver android:name=.Receive intent-filter action android:name=android.provider.Telephony.SMS_RECEIVED/

[android-developers] Receive SMS on a specific port

2010-10-01 Thread Warren
Is it possible to receive SMS on a specific port on my HTC Desire? My development enviroment:Android 2.1 This is the configuration of my Receive program AndroidManifest.xml: receiver android:name=.Receive intent-filter action android:name=android.provider.Telephony.SMS_RECEIVED/ data

[android-developers] Receive SMS

2009-06-08 Thread Reuben Sutton
Hi, Can anyone shed any light about why this isn't working? Manifest: ?xml version=1.0 encoding=utf-8? manifest xmlns:android=http://schemas.android.com/apk/res/android; package=com.whitefire.gpslocator android:versionCode=1 android:versionName=1.0 application