Skip to content

Commit

Permalink
Update PodSpec & Vendored Framework for Publisher Clients (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamsimranjot authored Jul 18, 2018
1 parent 124f52f commit f085226
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 6 deletions.
Binary file modified Framework/HaptikLib.framework/Assets.car
Binary file not shown.
4 changes: 2 additions & 2 deletions Framework/HaptikLib.framework/HaptikLib
Git LFS file not shown
26 changes: 23 additions & 3 deletions Framework/HaptikLib.framework/Headers/Haptik.h
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,13 @@ UIKIT_EXTERN NSNotificationName const HPOffersUpdatedNotification;
@property (nullable, nonatomic) NSString *loadingSubtitleText;


/*!
Sets the application group identifier of the form of "group.com.mycompanyname". If not provided, default will be nil.
Used for saving the SQLite Persistent Store in a shared app folder which can be accessed by multiple targets & extensions.
*/
@property (nullable, nonatomic) NSString *appGroupIdentifier;


/*!
Gets the navigation bar tint color used for tinting on individual screens.
To set a tint color, use as -
Expand Down Expand Up @@ -603,16 +610,29 @@ UIKIT_EXTERN NSNotificationName const HPOffersUpdatedNotification;
#pragma mark -

/*!
Allows SDK Clients to modify tint color of navigation bar of the SDK View Controllers
@abstract
Allows SDK Clients to modify tint color and barTintColor of navigation bar of the SDK View Controllers
@param tintColor Color to be used for tinting navigation bar items. Defaults to [UIColor blackColor].
@param barTintColor Color to be used for tinting the navigation bar. Defaults to default navigation bar tint of iOS
@param translucent BOOL value to set the translucent property of navigation bar.
@param navigationController Instance of the navigationController for which the configurations are to be done
@discussion
The params tintColor & barTintColor are nullable, i.e. you can pass nil for the respective param which you want to set to default (don't want to set).
@code
[[Haptik sharedSDK] configureNavigationBarWithTintColor:[UIColor colorWithRed:(165.0/255.0) green:(35.0/255.0) blue:(41.0/255.0) alpha:1.0]];
[[Haptik sharedSDK] configureNavigationBarWithTintColor:[UIColor redColor]
barTintColor:[UIColor whiteColor]
forNavigationController:navController];
@endcode
*/
- (void)configureNavigationBarWithTintColor:(UIColor *)tintColor;
- (void)configureNavigationBarWithTintColor:(nullable UIColor *)tintColor
barTintColor:(nullable UIColor *)barTintColor
makeTranslucent:(BOOL)translucent
forNavigationController:(UINavigationController *)navigationController;

/*!
Allows SDK clients to take user to a specific channel.
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Framework/HaptikLib.framework/Info.plist
Binary file not shown.
Binary file modified Framework/HaptikLib.framework/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion HaptikLib.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Pod::Spec.new do |s|

s.name = "HaptikLib"
s.version = "0.6.0"
s.version = "0.6.2"
s.summary = "Say goodbye to App Fatigue. Instantly enable 100+ chatbots across various daily tasks"
s.description = <<-DESC
The mobile app industry is about a decade old but publishers are still trying to figure out hacks to improve user retention. App fatigue is not just a theory any more: 60% of apps are uninstalled within the first week. The Haptik Assistant SDK enables a layer of daily use chatbots in any mobile app. Instantly provide a lot more reasons for users to keep using your app. You can also monetize through transactions and the Haptik ads platform.
Expand Down

0 comments on commit f085226

Please sign in to comment.