Skip to content

Commit

Permalink
Updating Braze SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
hokstuff committed Dec 4, 2019
1 parent 4206104 commit ba5f4f5
Show file tree
Hide file tree
Showing 43 changed files with 624 additions and 53 deletions.
2 changes: 1 addition & 1 deletion Appboy-iOS-SDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Appboy-iOS-SDK"
s.version = "3.21.0"
s.version = "3.21.1"
s.summary = "This is the Braze iOS SDK for Mobile Marketing Automation"
s.homepage = "http://www.braze.com"
s.license = { :type => 'Commercial', :text => 'Please refer to https://github.com/Appboy/appboy-ios-sdk/blob/master/LICENSE'}
Expand Down
4 changes: 2 additions & 2 deletions AppboyKit/ABKLocationManagerProvider.m
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#import "ABKLocationManagerProvider.h"

#if !TARGET_OS_TV && !defined(ABK_DISABLE_LOCATION_SERVICES)
#if !TARGET_OS_TV
#import <CoreLocation/CoreLocation.h>
#endif

@implementation ABKLocationManagerProvider

+ (BOOL)locationServicesEnabled {
#if !TARGET_OS_TV && !defined(ABK_DISABLE_LOCATION_SERVICES)
#if !TARGET_OS_TV
return YES;
#endif
return NO;
Expand Down
Binary file modified AppboyKit/Appboy.bundle/Info.plist
Binary file not shown.
1 change: 0 additions & 1 deletion AppboyKit/headers/AppboyKitLibrary/ABKContentCard.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ NS_ASSUME_NONNULL_BEGIN
/*!
* Manually log a click to Braze for the card.
* This should only be used for custom contentcard view controllers.
* The SDK will only log a card click when the card has the url property with a valid url.
*/
- (void)logContentCardClicked;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ NS_ASSUME_NONNULL_BEGIN
*/
@property (strong, nonatomic, nullable) id<ABKInAppMessageUIControlling> inAppMessageUIController;

/*!
* If this boolean is set to YES, the device will hide the status bar when displaying a full type or
* HTML full type in-app message. This property defaults to NO.
*/
@property (assign, nonatomic, readonly) BOOL forceHideStatusBar;

/*!
* @param delegate The in-app message delegate that implements the ABKInAppMessageControllerDelegate methods. If the delegate is
* nil, it acts as one which always returns ABKDisplayInAppMessageNow and doesn't implement all other delegate methods.
Expand Down
Loading

0 comments on commit ba5f4f5

Please sign in to comment.