Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #304 from Adobe-Marketing-Cloud/jan19
Browse files Browse the repository at this point in the history
january 2019 release
  • Loading branch information
shalehaha authored Jan 17, 2019
2 parents e1d4e10 + 810b57a commit a7f72b0
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "adobe-mobile-services",
"description": "Native Mobile SDKs, dev tools and example apps.",
"version": "4.17.1",
"version": "4.18.0",
"homepage": "https://github.com/Adobe-Marketing-Cloud/mobile-services/blob/master/sdks/Cordova/README.md",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="adobe-mobile-services"
version="4.17.1">
version="4.18.0">
<name>ADBMobile</name>
<description>Adobe Mobile Services Plugin</description>

Expand Down Expand Up @@ -45,6 +45,6 @@
<receiver android:name="com.adobe.mobile.MessageNotificationHandler" />
</config-file>
<source-file src="sdks/Cordova/ADBMobile/Android/ADBMobile_PhoneGap.java" target-dir="src/com/adobe/" />
<source-file src="sdks/Android/AdobeMobileLibrary/adobeMobileLibrary-4.17.1.jar" target-dir="app/libs" />
<source-file src="sdks/Android/AdobeMobileLibrary/adobeMobileLibrary-4.17.2.jar" target-dir="app/libs" />
</platform>
</plugin>
Binary file not shown.
3 changes: 3 additions & 0 deletions sdks/Android/ReleaseNotes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ Included are notes from the latest major revision to current.
For full SDK documentation, please visit:
https://marketing.adobe.com/resources/help/en_US/mobile/android/

4.17.2 (17 Jan, 2019)
- Target – Fixed a crashing bug caused by the SDK and app code simultaneously attempting to iterate the input List of the loadRequests method

4.17.1 (27 Nov, 2018)
- In App Messaging – Expanded token replacement functionality in click-through URLs.

Expand Down
9 changes: 8 additions & 1 deletion sdks/iOS/AdobeMobileLibrary/ADBMobile.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//
// Copyright 1996-2018. Adobe, Inc. All Rights Reserved
//
// SDK Version: 4.17.1
// SDK Version: 4.18.0

#import <Foundation/Foundation.h>
@class CLLocation, CLBeacon, TVApplicationController,
Expand Down Expand Up @@ -210,6 +210,13 @@ FOUNDATION_EXPORT NSString *const __nonnull ADBConfigKeyCallbackDeepLink;
*/
+ (void) registerAdobeDataCallback:(nullable void (^)(ADBMobileDataEvent event, NSDictionary* __nullable adobeData))callback;

/**
* @brief Registers a callback to allow for the modification of NSURLSessionConfiguration used by all SDK network methods.
* @note Warning: incorrect usage of this method may interrupt the SDK's ability to transmit data.
* @param callback a block pointer to call any time a new NSURLSession is being created for internal usage. configuration(NSURLSessionConfiguration) is a pointer to the configuration that will be used.
*/
+ (void) registerURLSessionConfigurationCallback: (nullable void (^)(NSURLSessionConfiguration* __nonnull configuration))callback;

#pragma mark - Analytics

/**
Expand Down
Binary file modified sdks/iOS/AdobeMobileLibrary/AdobeMobileLibrary.a
Binary file not shown.
Binary file modified sdks/iOS/AdobeMobileLibrary/AdobeMobileLibrary_Extension.a
Binary file not shown.
Binary file modified sdks/iOS/AdobeMobileLibrary/AdobeMobileLibrary_TV.a
Binary file not shown.
Binary file modified sdks/iOS/AdobeMobileLibrary/AdobeMobileLibrary_Watch.a
Binary file not shown.
5 changes: 5 additions & 0 deletions sdks/iOS/ReleaseNotes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ Included are notes from the latest major revision to current.
For full SDK documentation, please visit:
https://marketing.adobe.com/resources/help/en_US/mobile/ios/

4.18.0 (17 Jan, 2019)
- Configuration – Added a new API to allow overriding internal NSURLSession parameters
- Target – Fixed a crashing bug caused when multiple loadRequests: calls were being made consecutively in environments with poor network connectivity
- In App Messaging – Fixed a bug that would sometimes allow show-once local notifications to show more than once if their conditions were triggered quickly in succession

4.17.1 (27 Nov, 2018)
- In App Messaging – Expanded token replacement functionality in click-through URLs

Expand Down

0 comments on commit a7f72b0

Please sign in to comment.