I\'ve discovered a problem recently with my app\'s setup in Firebase. We have the pre-launch report configured, which means that the test lab devices are contributing a larg
This is actually mentioned in the docs.
You can check for the existence of a system property called "firebase.test.lab":
@Nullable String testLabSetting =
Settings.System.getString(context.getContentResolver(), "firebase.test.lab");
if ("true".equals(testLabSetting)) {
// Do something when running in Test Lab
}