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

Commit f39a7ab

Browse files
authored
Merge pull request #387 from Adobe-Marketing-Cloud/ios-4.21.0
-ios 4.21.0
2 parents e3e0576 + 600cd1a commit f39a7ab

File tree

30 files changed

+8115
-5
lines changed

30 files changed

+8115
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "adobe-mobile-services",
33
"description": "Native Mobile SDKs, dev tools and example apps.",
4-
"version": "4.20.0",
4+
"version": "4.20.1",
55
"homepage": "https://github.com/Adobe-Marketing-Cloud/mobile-services/blob/master/sdks/Cordova/README.md",
66
"repository": {
77
"type": "git",

plugin.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
44
id="adobe-mobile-services"
5-
version="4.20.0">
5+
version="4.20.1">
66
<name>ADBMobile</name>
77
<description>Adobe Mobile Services Plugin
88

@@ -25,8 +25,8 @@ Important: After August 31, 2021, customers can continue to download and use the
2525
</config-file>
2626
<header-file src="sdks/Cordova/ADBMobile/iOS/ADBMobile_PhoneGap.h" />
2727
<source-file src="sdks/Cordova/ADBMobile/iOS/ADBMobile_PhoneGap.m" />
28-
<header-file src="sdks/iOS/AdobeMobileLibrary/ADBMobile.h" />
29-
<source-file src="sdks/iOS/AdobeMobileLibrary/AdobeMobileLibrary.a" framework="true" />
28+
<header-file src="sdks/iOS/AdobeMobileLibrary/legacy/ADBMobile.h" />
29+
<source-file src="sdks/iOS/AdobeMobileLibrary/legacy/AdobeMobileLibrary.a" framework="true" />
3030
<framework src="libsqlite3.dylib" />
3131
<framework src="SystemConfiguration.framework" />
3232
<framework src="WebKit.framework" />

sdks/iOS/AdobeMobileLibrary/ADBMobile.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// Copyright 1996-2020. Adobe, Inc. All Rights Reserved
66
//
7-
// SDK Version: 4.20.0
7+
// SDK Version: 4.21.0
88

99
#import <Foundation/Foundation.h>
1010
@class CLLocation, CLBeacon, TVApplicationController,
@@ -708,6 +708,7 @@ FOUNDATION_EXPORT NSString *const __nonnull ADBConfigKeyCallbackDeepLink;
708708
/**
709709
* @brief Returns all visitorIDs that have been synced
710710
* @return an array of readonly ADBVisitorIDs
711+
* @note This method is synchronous and should not be called from the UI thread.
711712
*/
712713
+ (nullable NSArray *) visitorGetIDs;
713714

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>AvailableLibraries</key>
6+
<array>
7+
<dict>
8+
<key>HeadersPath</key>
9+
<string>Headers</string>
10+
<key>LibraryIdentifier</key>
11+
<string>ios-arm64_armv7_armv7s</string>
12+
<key>LibraryPath</key>
13+
<string>libAdobeMobile.a</string>
14+
<key>SupportedArchitectures</key>
15+
<array>
16+
<string>arm64</string>
17+
<string>armv7</string>
18+
<string>armv7s</string>
19+
</array>
20+
<key>SupportedPlatform</key>
21+
<string>ios</string>
22+
</dict>
23+
<dict>
24+
<key>HeadersPath</key>
25+
<string>Headers</string>
26+
<key>LibraryIdentifier</key>
27+
<string>ios-arm64_i386_x86_64-simulator</string>
28+
<key>LibraryPath</key>
29+
<string>libAdobeMobile.a</string>
30+
<key>SupportedArchitectures</key>
31+
<array>
32+
<string>arm64</string>
33+
<string>i386</string>
34+
<string>x86_64</string>
35+
</array>
36+
<key>SupportedPlatform</key>
37+
<string>ios</string>
38+
<key>SupportedPlatformVariant</key>
39+
<string>simulator</string>
40+
</dict>
41+
</array>
42+
<key>CFBundlePackageType</key>
43+
<string>XFWK</string>
44+
<key>XCFrameworkFormatVersion</key>
45+
<string>1.0</string>
46+
</dict>
47+
</plist>

0 commit comments

Comments
 (0)