My question is how to open "Add a Google Account" activity using intent without using AccountManager which requires the following permission:
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
I mean find a way to go around the following solution:
AccountManager accountMgr = AccountManager.get(context);
accountMgr.addAccount("com.google", "ah", null, new Bundle(), context, null, null);
I'll provide the solution for anyone out there searching for the solve this issue.