how can i make my application the default application, is there anyway to ask the user if he want to set my application as default application when he want to install it on the mobile?, if not is there any other way to do it?
ps. I’m developing Messaging application Using android 2.3
Thanks in advance.
how can i make my application the default application, is there anyway to ask
Share
Just state in the manifest file that the application is capable of receiving messages of a given type (or anything else) and after your app has been installed, Android will automatically display a dialog box when a message of the very same type is received. The dialog box will contain a list of all the apps installed which are capable of handling the given message. The user then have the option to make one of those applications as default for handling messages of given type.