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

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 13.4.1
  • Minimum deployment target 12.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.7.0'

  1. Run flutter pub get to install plugin

  2. Configure iOS platform

    1. Update the ios/Podfile with iOS deployment target platform 12.0 - platform :ios, '12.0' if needed and perform in Terminal cd ios && pod update

    2. 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. Configure your project to support Push Notification as described in item 2 of iOS integration quick start guide
    2. Integrate Notification Service Extension into your app in order to obtain:
      • more accurate processing of messages and delivery stats
      • support of rich notifications on the lock screen
  3. Use plugin at yours dart code:

import 'package:infobip_mobilemessaging/infobip_mobilemessaging.dart';
import 'package:infobip_mobilemessaging/models/Configuration.dart';
import 'package:infobip_mobilemessaging/models/LibraryEvent.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, (Message event) => {
       print("Callback. MESSAGE_RECEIVED event,  message text: ${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

collection, flutter, package_info_plus

More

Packages that depend on infobip_mobilemessaging