Testing your Flutter Integration

 

Before you publish your app with Start.io (formerly StartApp), we strongly recommend that you test your Flutter integration to ensure it is operating properly. Don't forget to disable it before production.

class _MyAppState extends State<MyApp> {
  var startAppSdk = StartAppSdk();

  @override
  void initState() {
    super.initState();

    // TODO make sure to comment out this line before release
    startAppSdk.setTestAdsEnabled(true);
  }
}
Was this article helpful?
Have more questions? submit a request