Skip to content

Commit

Permalink
Merge pull request #11 from moengage/v4.0.0
Browse files Browse the repository at this point in the history
v4.0.0
  • Loading branch information
deepa-iOS-SDK committed Dec 7, 2022
2 parents 5bc5c65 + f288d9a commit 25fbcfd
Show file tree
Hide file tree
Showing 43 changed files with 3,521 additions and 679 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,13 @@
# MoEngageInApps
=====================
## Change Log:
### Version 4.0.0 *(7th December, 2022)*
-------------------------------------------
* Migrated `MoEngageInApp`, `MoEngageInAppCampaign`,`MoEngageInAppSelfHandledCampaign`,`MoEngageInAppAction`,`MoEngageInAppNativeDelegate` from Objective-C to Swift
* Added API documentation.
* All the classes and modules are prefixed with `MoEngage`.
* BugFix - Fixed Inapp getting auto dismissed before the auto dismiss interval expires.

### Version 3.4.1 *(21st October, 2022)*
-------------------------------------------
* Added support to take safeArea inset for Applications with SceneDelegate.
Expand Down
Expand Up @@ -2,6 +2,14 @@
=============================

## Change Log:

### Version 4.0.0 *(7th December, 2022)*
-------------------------------------------
* Migrated `MoEngageInApp`, `MoEngageInAppCampaign`,`MoEngageInAppSelfHandledCampaign`,`MoEngageInAppAction`,`MoEngageInAppNativeDelegate` from Objective-C to Swift
* Added API documentation.
* All the classes and modules are prefixed with `MoEngage`.
* BugFix - Fixed Inapp getting auto dismissed before the auto dismiss interval expires.

### Version 3.4.1 *(21st October, 2022)*
-------------------------------------------
* Added support to take safeArea inset for Applications with SceneDelegate.
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

@@ -0,0 +1,15 @@
//
// MoEngageInAppActionType.h
// MoEngageInApps
//
// Created by Chengappa C D on 06/11/19.
// Copyright © 2019 MoEngage. All rights reserved.
//

#import <MoEngageInApps/MoEngageModelObject.h>

/// MoEngageInAppActionType defines the action type performed by the inApp click
typedef enum : NSUInteger {
NavigationAction,
CustomAction
} MoEngageInAppActionType;
@@ -1,5 +1,5 @@
//
// MOInAppDebuggingService.h
// MoEngageInAppDebuggingService.h
// MoEngageInApps
//
// Created by Chengappa C D on 01/11/21.
Expand All @@ -9,7 +9,7 @@
#import <Foundation/Foundation.h>


@interface MOInAppDebuggingService : NSObject
@interface MoEngageInAppDebuggingService : NSObject

-(void)getGeneralInAppsListForInstanceID:(NSString* _Nullable)instanceID withCompletionBlock:(void(^_Nullable)(NSArray* _Nullable generalInAppList))completionBlock;
-(void)getTriggerInAppsListForInstanceID:(NSString* _Nullable)instanceID withCompletionBlock:(void(^_Nullable)(NSArray* _Nullable triggerInAppList))completionBlock;
Expand Down

0 comments on commit 25fbcfd

Please sign in to comment.