Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 5.1.4 #871

Merged
merged 1 commit into from
Apr 10, 2024
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.1.3'
version '5.1.4'

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

dependencies {
implementation 'com.onesignal:OneSignal:5.1.6'
implementation 'com.onesignal:OneSignal:5.1.8'
}
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ private void init(Context context, BinaryMessenger messenger)
this.messenger = messenger;
OneSignalWrapper.setSdkType("flutter");
// For 5.0.0, hard code to reflect SDK version
OneSignalWrapper.setSdkVersion("050103");
OneSignalWrapper.setSdkVersion("050104");

channel = new MethodChannel(messenger, "OneSignal");
channel.setMethodCallHandler(this);
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/OneSignalPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ + (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {

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

OneSignalPlugin.sharedInstance.channel = [FlutterMethodChannel
methodChannelWithName:@"OneSignal"
Expand Down
4 changes: 2 additions & 2 deletions 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.1.3'
s.version = '5.1.4'
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 All @@ -13,7 +13,7 @@ Pod::Spec.new do |s|
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'
s.dependency 'OneSignalXCFramework', '5.1.3'
s.dependency 'OneSignalXCFramework', '5.1.4'
s.ios.deployment_target = '11.0'
s.static_framework = true
end
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.1.3
version: 5.1.4
homepage: https://github.com/OneSignal/OneSignal-Flutter-SDK

flutter:
Expand Down
Loading