ap_flutter_kit 0.3.0 copy "ap_flutter_kit: ^0.3.0" to clipboard
ap_flutter_kit: ^0.3.0 copied to clipboard

PlatformAndroid

Ap Flutter Kit help you to implement AdPushUp's AdX Ads into your flutter apps.

AP Flutter Kit #

Ap Flutter Kit is a Flutter Plugin for ApAppKit. It currently support Android Platform. It allows you to integrate AdPushup's AdX Ads into your apps.

Get Started: #

This guide is intended for publishers who want to monetize an Android app built using Flutter with AdPushup AdX ads. Integrating the Ap Flutter Kit into an app is the first step toward implementing AdPushUp AdX Ads in your app.

Code Changes: #

A: Configuration: #

To prepare your app, complete the steps in the following sections:

  1. Run this command:

    With Flutter:

    flutter pub add ap_flutter_kit
    

    This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):

    dependencies:
      ap_flutter_kit: ^0.3.0
    

    Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.

  2. Import it:

    Now in your Dart code, you can use:

    import 'package:ap_flutter_kit/ap_flutter_kit.dart';
    

B: Usage: #

You must call ApFlutterKit.ping() method in your ad’s onAdImpression() callback.

Example:

onAdImpression: (Ad ad) {
	ApFlutterKit.ping(context, ad.adUnitId, ad.responseInfo?.responseId);
}
0
likes
160
points
38
downloads

Publisher

verified publisheradpushup.com

Weekly Downloads

Ap Flutter Kit help you to implement AdPushUp's AdX Ads into your flutter apps.

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on ap_flutter_kit