Skip to content

Commit

Permalink
Release commit for version 2.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mikechoch committed Sep 4, 2019
1 parent ba411b6 commit ff0e938
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 13 deletions.
8 changes: 4 additions & 4 deletions OneSignal.podspec
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
Pod::Spec.new do |s|
s.name = "OneSignal"
s.version = "2.10.1"
s.version = "2.10.2"
s.summary = "OneSignal push notification library for mobile apps."
s.homepage = "https://onesignal.com"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Joseph Kalash" => "joseph@onesignal.com", "Josh Kasten" => "josh@onesignal.com" , "Brad Hesse" => "brad@onesignal.com"}

s.source = { :git => "https://github.com/OneSignal/OneSignal-iOS-SDK.git", :tag => s.version.to_s }

s.platform = :ios
s.requires_arc = true

s.ios.vendored_frameworks = 'iOS_SDK/OneSignalSDK/Framework/OneSignal.framework'
s.framework = 'SystemConfiguration', 'UIKit', 'UserNotifications', 'WebKit'
end
11 changes: 5 additions & 6 deletions OneSignalDynamic.podspec
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
Pod::Spec.new do |s|
s.name = "OneSignalDynamic"
s.version = "2.10.1"
s.version = "2.10.2"
s.summary = "OneSignal push notification library for mobile apps."
s.homepage = "https://onesignal.com"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Joseph Kalash" => "joseph@onesignal.com", "Josh Kasten" => "josh@onesignal.com" , "Brad Hesse" => "brad@onesignal.com"}

s.source = { :git => "https://github.com/OneSignal/OneSignal-iOS-SDK.git", :tag => s.version.to_s }

s.platform = :ios, "8.0"
s.requires_arc = true

s.ios.vendored_frameworks = 'iOS_SDK/OneSignalSDK/Framework/Dynamic/OneSignal.framework'
s.framework = 'SystemConfiguration', 'UIKit', 'UserNotifications'
s.framework = 'SystemConfiguration', 'UIKit', 'UserNotifications', 'WebKit'
end

Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ typedef NS_ENUM(NSUInteger, OSNotificationDisplayType) {
@property(readonly)NSString* subtitle;
@property(readonly)NSString* body;

/* Web address to launch within the app via a UIWebView */
/* Web address to launch within the app via a WKWebView */
@property(readonly)NSString* launchURL;

/* Additional key value properties set within the payload */
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ typedef NS_ENUM(NSUInteger, OSNotificationDisplayType) {
@property(readonly)NSString* subtitle;
@property(readonly)NSString* body;

/* Web address to launch within the app via a UIWebView */
/* Web address to launch within the app via a WKWebView */
@property(readonly)NSString* launchURL;

/* Additional key value properties set within the payload */
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion iOS_SDK/OneSignalSDK/Source/OneSignal.m
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ @implementation OSPendingCallbacks

@implementation OneSignal

NSString* const ONESIGNAL_VERSION = @"021001";
NSString* const ONESIGNAL_VERSION = @"021002";
static NSString* mSDKType = @"native";
static BOOL coldStartFromTapOnNotification = NO;

Expand Down

0 comments on commit ff0e938

Please sign in to comment.