As I know, an application can make its accountType by adding it in XML file like this:
android:accountType="com.android.app.test"
I want to know if one app can have two different accountTypes or not.
As I know, an application can make its accountType by adding it in XML file like this:
android:accountType="com.android.app.test"
I want to know if one app can have two different accountTypes or not.
Copyright © 2021 Jogjafile Inc.
For one Authenticator, you can't have two different
accountType, and also as per docs in yourAuthenticator class:you should not add additional accounts. So yes only one
accountType. If you need another one create anotherAuthenticator.