How can I receive sms number when someone chooses to send sms from their address book?
Now I’ve got that and I can choose my app
<intent-filter >
<action android:name="android.intent.action.SENDTO" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="sms" />
<data android:scheme="smsto" />
</intent-filter>
Thanks
This is why I’m doing now:
I know its not probably the best answer, but it does the job.
Please, let me know if you found another solution for this.