I am developing an SMS application. How to make an application available in the "Choose which application to open this dialog box?"
Thanks Martin
/ EDIT: I think you just misunderstood me.
I don’t want to write sms with my application, I want others to be able to write sms using my application, and that my application is indicated in the "Choose which application to open it" dialog box when you take SMS from the contact list.
Excerpt from my application manifest:
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.APP_MESSAGING" />
</intent-filter>
</activity>
Adding the category "APP_MESSAGING" just didn't solve it.
source
share