infobip_mobilemessaging 0.4.1 copy "infobip_mobilemessaging: ^0.4.1" to clipboard
infobip_mobilemessaging: ^0.4.1 copied to clipboard

outdated

Infobip Mobile Messaging Flutter Plugin.

Mobile Messaging SDK plugin for Flutter #

Mobile Messaging SDK is designed and developed to easily enable push notification channel in your mobile application. In almost no time of implementation you get push notification in your application and access to the features of Infobip IP Messaging Platform. The document describes plugin integration steps for your Flutter project.

Requirements #

  • Flutter 2.12+

For iOS project:

  • Xcode 12.5
  • Minimum deployment target 10.0

For Android project:

  • Android Studio
  • API Level: 19 (Android 4.4 - 4.4.4 KitKat)

Quick start guide #

This guide is designed to get you up and running with Mobile Messaging SDK plugin for Flutter

  1. Make sure to setup application at Infobip portal, if you haven't already.

  2. Add MobileMessaging plugin to dependencies at pubspec.yaml:

dependencies:
    infobip_mobilemessaging: '^0.1.0'

  1. Run flutter pub get to install plugin

  2. Configure iOS.

  • Import MobileMessaging @import MobileMessaging; and add [MobileMessagingPluginApplicationDelegate install]; into <ProjectName>/ios/Runner/AppDelegate.m (this is required for OS callbacks such as didRegisterForRemoteNotifications to be intercepted by native MobileMessaging SDK) :
            ...
            @import MobileMessaging;

            @implementation AppDelegate

            - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
            {
                ...
                [MobileMessagingPluginApplicationDelegate install];
                ...
            }
            ...
expand to see Swift code

            import MobileMessaging
            ...
            @UIApplicationMain
            @objc class AppDelegate: FlutterAppDelegate {
              override func application(
                 _ application: UIApplication,
                 didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
               ) -> Bool {
                  ...
                  MobileMessagingPluginApplicationDelegate.install()
                  ...
               }
             }
            ...
  1. Use plugin at yours dart code:
import 'package:infobip_mobilemessaging/infobip_mobilemessaging.dart';
import 'package:infobip_mobilemessaging/models/Configuration.dart';

...

    await InfobipMobilemessagingFlutterPlugin.init(Configuration(
      applicationCode: "<Your app code>",
      androidSettings: AndroidSettings(
        firebaseSenderId: "<Your Firebase Sender ID>"
      ),
      iosSettings: IOSSettings(
        notificationTypes: ["alert", "badge", "sound"],
        logging: true
      )
    ));

    InfobipMobilemessaging.on(LibraryEvent.MESSAGE_RECEIVED, (Map<String, dynamic> event) => {
      print("Callback. MESSAGE_RECEIVED event,  message title: "  + event["body"])
    });

...

6
likes
0
pub points
85%
popularity

Publisher

unverified uploader

Infobip Mobile Messaging Flutter Plugin.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, package_info_plus

More

Packages that depend on infobip_mobilemessaging