startapp 0.5.1 copy "startapp: ^0.5.1" to clipboard
startapp: ^0.5.1 copied to clipboard

Flutter plugin for StartApp SDK - Currently only support Android platform

Flutter - StartApp SDK Plugin #

Flutter plugin for StartApp SDK.

Currently, this plugin only support Android platform. The plugin is my weekend project, so any contributes to make it better are welcome.

How to use the plugin #

  • Updating AndroidManifest.xml file

Base on StartApp SDK document

Add following meta-data tag with your StartApp App Id under the

<meta-data android:name="com.startapp.sdk.APPLICATION_ID" android:value="startapp_app_id" />

If you want to disable return ads (they are enabled by default) please add following meta-data tag:

<meta-data android:name="com.startapp.sdk.RETURN_ADS_ENABLED" android:value="false" />

If you want to disable splash ads (they are enabled by default) please add following meta-data tag:

<meta-data android:name="vn.momo.plugin.startapp.SPLASH_AD_ENABLED" android:value="false" />
  • Banner as widget
import 'package:startapp/startapp.dart';
...

// StartApp AdBanner as widget
AdBanner(),
  • Load interstitial ad
import 'package:startapp/startapp.dart';
...
await StartApp.showInterstitialAd();
  • Load rewarded video ad
import 'package:startapp/startapp.dart';
...
await StartApp.showRewardedAd(onVideoCompleted: () {
    // video completed callback
}, onReceiveAd: () {
    // ad received callback
}, onFailedToReceiveAd: (String error) {
    // failed to received ad callback
});

Support #

If this package was helpful to you in delivering on your project or you just wanna to support this project, a cup of coffee would be highly appreciated ;-)

Buy me a coffee

29
likes
40
pub points
42%
popularity

Publisher

unverified uploader

Flutter plugin for StartApp SDK - Currently only support Android platform

Homepage
Repository (GitHub)
View/report issues

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on startapp