test_bmrt_flugin 0.0.6 copy "test_bmrt_flugin: ^0.0.6" to clipboard
test_bmrt_flugin: ^0.0.6 copied to clipboard

Test Bmrt Pluggin Flutter SDK and Testbmrt reports include video of user actions, network traffic, console logs and many other important traces from your app. Now you know what exactly led to the unex [...]

bmrt_plugin #

A new Flutter project.

Plugin for flutter #


Flutter Pluggin is now published as a pub.dev package. Refer to https://pub.dev/packages/test_bmrt_flugin to find out more.


Bmrt Plugin is a mobile SDK that adds crucial information to your bug and crash reports. Bmrt reports include video of user actions, network traffic, console logs and many other important traces from your app. Now you know what exactly led to the unexpected behavior.

Installation #

Install Bmrt plugin into your dart project by adding it to dependencies in your pubspec.yaml

dependencies:
  Testbmrt_flutter:
    git:
      url: http://gitlab.appinvent.in/bmrt/flutter.git
      # ref: 1.2.3 # if forcing a specific version by tag or branch

Launching #

import 'package:Testbmrt_flutter/test_bmrt.dart';

Future<Null> launchBmrtTest(Function(bool isTestbmrtLaunched) appRunner) async {
  var launchOptions;
  var token = "";

  if (Platform.isAndroid) {
    token = "<android app token>";
    launchOptions = new AndroidLaunchOptions();
  } else if (Platform.isIOS) {
    token = "<ios app token>";
    launchOptions = new IOSLaunchOptions();
  }

  await launchBmrtTest.launch(token,
      appRunCallback: appRunner, launchOptions: launchOptions);
}

Future<Null> main() async {
  await launchBmrtTest((bool isLaunched) async {
    runApp(new MyApp());
  });
}

class MyApp extends StatelessWidget {
  ....
1
likes
0
points
47
downloads

Publisher

unverified uploader

Weekly Downloads

Test Bmrt Pluggin Flutter SDK and Testbmrt reports include video of user actions, network traffic, console logs and many other important traces from your app. Now you know what exactly led to the unexpected behavior.

Homepage
Repository

License

unknown (license)

Dependencies

convert, crypto, flutter, flutter_web_plugins, package_info_plus, path_provider, plugin_platform_interface, stack_trace, uuid

More

Packages that depend on test_bmrt_flugin