After a successful basic authentication I want to add an account for later use. When I tried to create this account using the following code:
AccountManager
In my case i was having Package name contains capital characters, so service was not getting registered in Android Manifest and hence issue was occurred.
android:name="com.SyncServices.SyncService"
changed to
android:name="com.syncservices.SyncService"