Skip to content

Commit

Permalink
Check in latest iOS project.
Browse files Browse the repository at this point in the history
  • Loading branch information
skykelsey committed Mar 17, 2017
1 parent 4b21516 commit de278fe
Show file tree
Hide file tree
Showing 20 changed files with 22 additions and 4 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified src/ios/apptentive_ios_sdk/ApptentiveResources.bundle/Info.plist
Binary file not shown.
8 changes: 8 additions & 0 deletions src/ios/apptentive_ios_sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2017-01-06 frankus, weeeBox v3.4.2
-------------------------
Version 3.4.2 fixes the retry logic for certain network requests.

2017-01-06 frankus v3.4.1
-------------------------
Version 3.4.1 fixes visual issues in surveys and upgrade messages.

2016-12-07 frankus v3.4.0
-------------------------
Version 3.4.0 contains a number of bug fixes.
Expand Down
18 changes: 14 additions & 4 deletions src/ios/apptentive_ios_sdk/include/Apptentive.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

#import <UIKit/UIKit.h>

#define kApptentiveVersionString @"3.4.0"
#define kApptentiveVersionString @"3.4.2"
#define kApptentivePlatformString @"iOS"

#ifdef __swift_compiler_version_at_least
Expand Down Expand Up @@ -390,7 +390,7 @@ Returns a Boolean value indicating whether the given event will cause an Interac
///-------------------------------------

/**
Attaches text to the user's feedback.
Attaches text to the user's feedback. This method should be called from the main thread only.
This will appear in your online Apptentive dashboard, but will *not* appear in Message Center on the device.
Expand All @@ -399,7 +399,7 @@ Returns a Boolean value indicating whether the given event will cause an Interac
- (void)sendAttachmentText:(NSString *)text APPTENTIVE_SWIFT_NAME(sendAttachment(_:));

/**
Attaches an image the user's feedback.
Attaches an image the user's feedback. This method should be called from the main thread only.
This will appear in your online Apptentive dashboard, but will *not* appear in Message Center on the device.
Expand All @@ -408,7 +408,7 @@ Returns a Boolean value indicating whether the given event will cause an Interac
- (void)sendAttachmentImage:(UIImage *)image APPTENTIVE_SWIFT_NAME(sendAttachment(_:));

/**
Attaches an arbitrary file to the user's feedback.
Attaches an arbitrary file to the user's feedback. This method should be called from the main thread only.
This will appear in your online Apptentive dashboard, but will *not* appear in Message Center on the device.
Expand Down Expand Up @@ -566,6 +566,16 @@ Returns a Boolean value indicating whether the given event will cause an Interac

- (void)setPushNotificationIntegration:(ApptentivePushProvider)pushProvider withDeviceToken:(NSData *)deviceToken APPTENTIVE_SWIFT_NAME(setPushProvider(_:deviceToken:));


/**
Dismisses any currently-visible interactions.
@discussion This method is for internal use and is subject to change.
@param animated Whether to animate the dismissal.
*/
- (void)dismissAllInteractions:(BOOL)animated APPTENTIVE_SWIFT_NAME(dismissAllInteractions(animated:));

#if APPTENTIVE_DEBUG
- (void)checkSDKConfiguration;
#endif
Expand Down
Binary file modified src/ios/apptentive_ios_sdk/libApptentiveConnect.a
Binary file not shown.

0 comments on commit de278fe

Please sign in to comment.