Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

automated release #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions QGSdk.h
Original file line number Diff line number Diff line change
Expand Up @@ -525,6 +525,55 @@ NS_ASSUME_NONNULL_BEGIN
*/
- (void)updateInboxRecordLimit:(QGInboxLimit) limit;

/*!
@abstract
Handles Universal Link callback for ad tracking

@discussion
This will handle url for APPIER Ads tracking

@code
// iOS 10+
- (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity
restorationHandler:(void (^)(NSArray *))restorationHandler {
.
.
[[QGSdk getSharedInstance] continueUserActivity:userActivity restorationHandler:restorationHandler];
return YES;
}
@endcode
*/
- (void)continueUserActivity:(NSUserActivity *)userActivity
restorationHandler:(nullable void (^)(NSArray<id> *restorableObjects))restorationHandler API_AVAILABLE(ios(10.0));

/*!
@abstract
Handles URL Scheme callback for ad tracking

@discussion
This will handle url for APPIER Ads tracking. AIQUA SDK will NOT redirect to particular screen related the url. It is intended for APPIER ads attribution.

@code
// iOS 10+
- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options
{
.
.
[[QGSdk getSharedInstance] handleURL:url withOptions:options];
return YES;
}

// iOS 8, 9
- (void)application:(UIApplication *)application openURL:(nonnull NSURL *)url
sourceApplication:(nullable NSString *)sourceApplication annotation:(nonnull id)annotation {
.
.
[[QGSdk getSharedInstance] handleURL:url withOptions:nil];
}
@endcode
*/
- (void)handleURL:(NSURL *)url withOptions:(nullable NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options;

/*!
@abstract
Get locally saved push notification data, which is a list of notification payload
Expand Down
Binary file modified libQGSdk.a
Binary file not shown.
1 change: 1 addition & 0 deletions lipo.output
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Architectures in the fat file: sdk-build/Build/Products/Production_Release-universal/libQGSdk.a are: armv7 i386 x86_64 arm64