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 #102 from shalehaha/ios4.7.0
Browse files Browse the repository at this point in the history
iOS 4.7.0 release
  • Loading branch information
hunterpeterson committed Oct 16, 2015
2 parents 96c8deb + 1d06920 commit 75997a0
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 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="com.adobe.ADBMobile"
version="4.6.1">
version="4.7.0">
<name>ADBMobile</name>
<description>Adobe Mobile Services Plugin</description>

Expand Down
13 changes: 10 additions & 3 deletions sdks/iOS/AdobeMobileLibrary/ADBMobile.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
//
// Copyright 1996-2015. Adobe, Inc. All Rights Reserved
//
// SDK Version: 4.6.1
// SDK Version: 4.7.0

#import <Foundation/Foundation.h>
@class CLLocation, CLBeacon, ADBTargetLocationRequest, ADBMediaSettings, ADBMediaState;
@class CLLocation, CLBeacon, TVApplicationController, ADBTargetLocationRequest, ADBMediaSettings, ADBMediaState;

#pragma mark - ADBMobile

Expand Down Expand Up @@ -140,6 +140,13 @@ typedef NS_ENUM(NSUInteger, ADBMobilePrivacyStatus) {
*/
+ (void) initializeWatch;

/**
* @brief Registers the ADBMobile class in the JSContext object of the tv application controller
* @note This method should only be called from AppleTV apps written using TVML/TVJS
* @param tvController is the TVApplicationController initialized to bridge the native and JS environments for the app
*/
+ (void) installTVMLHooks:(TVApplicationController *)tvController;

#pragma mark - Analytics

/**
Expand Down Expand Up @@ -175,7 +182,7 @@ typedef NS_ENUM(NSUInteger, ADBMobilePrivacyStatus) {
*/
+ (void) trackLocation:(CLLocation *)location data:(NSDictionary *)data;

#if !TARGET_OS_WATCH
#if !TARGET_OS_WATCH && !TARGET_OS_TV
/**
* @brief Tracks a beacon with context data.
* @param beacon a CLBeacon pointer containing the beacon information to be tracked.
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 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.7.0 (15 Oct, 2015)
- New Feature - TvOS compatibility
- In App Messaging - Fixed a bug causing a crash for alert message types when no confirm button text was provided
- Acquisition - SSL Support

4.6.1 (17 Sept, 2015)
- Fixed an issue that broke backwards compatibility with Xcode versions older than 7

Expand Down

0 comments on commit 75997a0

Please sign in to comment.