When I created my application using a sync adapter, I noticed that you can add an account in the "Applications & Sync" menu in Settings. I want my application to have only one account per device, so is there a way to remove my application from that list?

link|improve this question

61% accept rate
feedback

1 Answer

When you define your sync-adapter you can specify that it is not visible to the user by adding android:userVisible="false" to your XML file - this will exclude it from the settings page.

<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
    android:contentAuthority="com.android.contacts"
    android:accountType="com.mycompany.account"
    android:userVisible="false"/>
link|improve this answer
It is still showing up in the settings page – Hank Oct 20 '11 at 2:42
That's seriously odd. Even if you remove the application manually, restart the device (or even better, factory reset) and reinstall the app with userVisible=false? – Jens Oct 29 '11 at 8:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.