On Tue, Jul 20, 2010 at 12:43 AM, JOBZ <[email protected]> wrote: > Actually my problem is, I created an application and its working > properly in emulator and phone ,but sometimes when i taping on the > application short cut to open the application again an error message > showing "Application is not installed on your phone". > > In the log cat error message is showing like this " requires > android.permission.WRITE_SECURE_SETTINGS "
That would occur if your activity has the android:permission attribute set to WRITE_SECURE_SETTINGS, meaning whoever starts the activity needs to hold that permission. I would delete all occurrences of WRITE_SECURE_SETTINGS from your manifest. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 3.1 Available! -- 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

