Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does `android.accounts.Account.type` reference?

In the Google Play Developer console, I'm getting warnings in the Pre-Launch tests mentioning:

java.lang.NullPointerException: Attempt to read from field 'java.lang.String android.accounts.Account.type' on a null object reference

The app never crashes and the test succeeds, but the warning is still there in details of the test. What is android.accounts.Account and how can I make sure it doesn't have issues?

like image 567
Evan Weissburg Avatar asked Dec 17 '16 21:12

Evan Weissburg


1 Answers

The same issue occurs with my pre-launch reports from google developer console. If you look closer into the log file provided, you will see that sometimes a test device is not set up correctly and throws this exception when setting up for a video to be taken instead of a screenshot (this feature was enabled in android 5.x). Dont worry about it. I do neglect these errors regularily.

like image 147
Hühnergott Avatar answered Oct 09 '22 20:10

Hühnergott