如何检测应用是否在Google Play预发布报告设备上运行?

时间:2017-03-14 22:06:42

标签: android testing google-play

当我将我的应用程序的新版本上传到Google Play时,我得到了一个非常好且很好的预发布测试报告,但问题是大多数时候AI只是在设置周围徘徊而不测试实际的UI。我想为这些设备快速随机地预先完成设置。

所以我的问题是,有没有办法检测它是否在那些测试设备上运行?

2 个答案:

答案 0 :(得分:9)

您可以使用以下方法检测预启动测试设备:

private boolean isTestDevice() {  
  String testLabSetting = Settings.System.getString(getContentResolver(), "firebase.test.lab");
  return "true".equals(testLabSetting);
}

请参阅: https://firebase.google.com/docs/test-lab/android/android-studio#modify_instrumented_test_behavior_for

答案 1 :(得分:1)

如果有人来这里寻找如何使用 React Native 执行此操作,请查看 react-native-firebase 包 utils().isRunningInTestLabhttps://rnfirebase.io/app/utils#test-lab