Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nohli/firebase_testlab_detector

A Flutter plugin for Android that helps determine if your app is running within Firebase Test Lab.
https://github.com/nohli/firebase_testlab_detector

android dart flutter hacktoberfest

Last synced: 7 days ago
JSON representation

A Flutter plugin for Android that helps determine if your app is running within Firebase Test Lab.

Awesome Lists containing this project

README

        

# firebase_testlab_detector

A Flutter plugin for Android that helps determine if your app is running within Firebase Test Lab. Use this to differentiate between regular usage and test runs in Firebase Test Lab (i.e., during Google Play pre-launch reports).

Only works on Android. Returns null on other platforms.

## Getting Started

### 1. Add the dependency

```shell
flutter pub add firebase_testlab_detector
```

### 2. Use the plugin

```dart
final isRunningInTestlab = await FirebaseTestlabDetector.isAppRunningInTestlab() ?? false;
```

This plugin reads the system property `firebase.test.lab`, and returns a boolean value indicating whether the app is running in Firebase Test Lab.

See also the [Firebase documentation](https://firebase.google.com/docs/test-lab/android/android-studio#modify_instrumented_test_behavior_for) for more details.

## Why use this plugin?

You might want to utilize this plugin to disable analytics, preventing skewed data from Firebase Test Lab (i.e., Google Play pre launch report) from appearing in your analytics dashboard.