Skip to content

Commit

Permalink
-update profile for beta
Browse files Browse the repository at this point in the history
  • Loading branch information
sbenedicadb committed Oct 2, 2018
1 parent 0b07d48 commit d8c9c87
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 18 deletions.
6 changes: 3 additions & 3 deletions ACPUserProfileBeta.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "ACPUserProfileBeta"
s.version = "1.0.0beta"
s.version = "1.0.1beta"
s.summary = "BETA - User Profile framework for Adobe Experience Cloud SDK. Written and Supported by Adobe."
s.description = <<-DESC
By using the Adobe Cloud Platform SDKs (“Beta”), you hereby acknowledge that the Beta is provided “as is” without warranty of any kind. Adobe shall have no obligation to maintain, correct, update, change, modify or otherwise support the Beta. You are advised to use caution and not to rely in any way on the correct functioning or performance of such Beta and/or accompanying materials.
Expand All @@ -12,13 +12,13 @@ Pod::Spec.new do |s|

s.license = {:type => "Commercial", :text => "Adobe Systems, Incorporated. All Rights Reserved."}
s.author = "Adobe Cloud Platform SDK Team"
s.source = { :git => 'https://github.com/Adobe-Marketing-Cloud/acp-sdks.git', :tag => "v1.0.0beta-ACPUserProfile" }
s.source = { :git => 'https://github.com/Adobe-Marketing-Cloud/acp-sdks.git', :tag => "v1.0.1beta-ACPUserProfile" }
s.platform = :ios, '10.0'

s.default_subspec = 'iOS'

# dependency on the core framework
s.dependency "ACPCoreBeta", ">= 1.0.0beta"
s.dependency "ACPCoreBeta", ">= 1.0.2beta"

s.subspec 'iOS' do |ios|
ios.vendored_frameworks = 'ACPUserProfile_iOS.framework'
Expand Down
Binary file modified ACPUserProfile_iOS.framework/ACPUserProfile_iOS
Binary file not shown.
31 changes: 16 additions & 15 deletions ACPUserProfile_iOS.framework/Headers/ACPUserProfile.h
Expand Up @@ -4,22 +4,34 @@
//
// Copyright 1996-2018. Adobe, Inc. All Rights Reserved
//
// UserProfile Version: 1.0
// UserProfile Version: 1.0.0

#import <Foundation/Foundation.h>



@interface ACPUserProfile : NSObject {}

#pragma mark - UserProfile
/**
* @brief Returns the current version of the ACPUserProfile Extension.
*/
+ (nonnull NSString*) extensionVersion;

/**
* @brief Registers the UserProfile extension
*
* This method should be called before any other User Profile API is called
*/
+ (void) registerExtension;

/**
* UserProfile API to remove the give attribute name
*
* If the attribute does not exist, this API has no effects
* If the attribute exists, then the User Attribute will be removed
*
* @param attributeName Attribute key which has to be removed.
*/
+ (void) removeUserAttribute: (nonnull NSString*) attributeName;

/**
* UserProfile API to set user profile attributes keys and values.
*
Expand All @@ -41,15 +53,4 @@
*/
+ (void) updateUserAttributes: (nonnull NSDictionary*) attributeMap;

/**
* UserProfile API to remove the give attribute name
*
* If the attribute does not exist, this API has no effects
* If the attribute exists, then the User Attribute will be removed
*
* @param attributeName Attribute key which has to be removed.
*/
+ (void) removeUserAttribute: (nonnull NSString*) attributeName;

@end

Binary file modified ACPUserProfile_iOS.framework/Info.plist
Binary file not shown.

0 comments on commit d8c9c87

Please sign in to comment.