private Account account; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); account = CloverAccount.getAccount(this); }It works as expected on all the Genymotion emulators (clover mobile/mini/station)
except on the 2018 emulator that was configured using this link the getAccount() method always returns a null.
Another observation that I made was, when running the clover sdk sample app with the application id configured to my app which was uploaded to clover sandbox developer account, the getAccount() method returns the expected account and after which which running my app on top of the clover sdk sample app also returns the expected clover account (unless the app cache is cleared).
The difference between the clover sdk sample app and my application is that my app uses compileSdkVersion 26 while the clover sdk sample app uses compileSdkVersion 21 where the android.accounts.Account class are different from each other
I'm using 'com.clover.sdk:clover-android-sdk:183' to compile the clover sdk