I saw the log message below while navigating the Account and Sync screen, but I'm confused about how to create an Intent to navigate there.
INFO/ActivityManager(53): Starting activity: Intent { cmp=com.android.providers.subscribedfeeds/com.android.settings.ManageAccountsSettings }
I don't seem to have access to ManageAccountsSettings for development.
I just wanted to create an Intent, like below, but I can't call ManageAccountsSettings
Intent i =new Intent(this,ManageAccountsSettings.class);
android
bryan
source share