Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.onesignal.flutter'
version '5.5.0'
version '5.5.1'

buildscript {
repositories {
Expand Down Expand Up @@ -38,5 +38,5 @@ android {
}

dependencies {
implementation 'com.onesignal:OneSignal:5.7.6'
implementation 'com.onesignal:OneSignal:5.7.7'
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ private void init(Context context, BinaryMessenger messenger) {
this.context = context;
this.messenger = messenger;
OneSignalWrapper.setSdkType("flutter");
// For 5.0.0, hard code to reflect SDK version
OneSignalWrapper.setSdkVersion("050500");
// Keep in sync with pubspec.yaml version
OneSignalWrapper.setSdkVersion("050501");

channel = new MethodChannel(messenger, "OneSignal");
channel.setMethodCallHandler(this);
Expand Down
2 changes: 1 addition & 1 deletion ios/onesignal_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
Pod::Spec.new do |s|
s.name = 'onesignal_flutter'
s.version = '5.5.0'
s.version = '5.5.1'
s.summary = 'The OneSignal Flutter SDK'
s.description = 'Allows you to easily add OneSignal to your flutter projects, to make sending and handling push notifications easy'
s.homepage = 'https://www.onesignal.com'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ + (instancetype)sharedInstance {
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar> *)registrar {

OneSignalWrapper.sdkType = @"flutter";
OneSignalWrapper.sdkVersion = @"050500";
OneSignalWrapper.sdkVersion = @"050501";
[OneSignal initialize:nil withLaunchOptions:nil];

OneSignalPlugin.sharedInstance.channel =
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: onesignal_flutter
description: OneSignal is a free push notification service for mobile apps. This plugin makes it easy to integrate your flutter app with OneSignal
version: 5.5.0
version: 5.5.1
homepage: https://github.com/OneSignal/OneSignal-Flutter-SDK

# Uses rps package for scripts
Expand Down
Loading