Skip to content
This repository has been archived by the owner on Sep 3, 2021. It is now read-only.

Commit

Permalink
update to 2.11.3
Browse files Browse the repository at this point in the history
  • Loading branch information
catt-stefano committed May 9, 2019
1 parent 1fd6690 commit aa877e3
Show file tree
Hide file tree
Showing 15 changed files with 114 additions and 75 deletions.
Binary file modified NearITSDK.framework/Info.plist
Binary file not shown.
Binary file modified NearITSDK.framework/NITEnrollDeviceViewController.nib
Binary file not shown.
Binary file modified NearITSDK.framework/NearITSDK
Binary file not shown.
57 changes: 37 additions & 20 deletions NearITSDK.framework/PrivateHeaders/NITManager.h
Expand Up @@ -48,40 +48,57 @@
@property (nonatomic) BOOL showBackgroundNotification;
@property (nonatomic) BOOL showForegroundNotification;

// Setup
+ (void)setupWithApiKey:(NSString* _Nonnull)apiKey;
+ (NITManager* _Nonnull)defaultManager;
+ (void)setFrameworkName:(NSString* _Nonnull)frameworkName;

- (void)start;
- (void)stop;
- (void)refreshConfigWithCompletionHandler:(void (^_Nullable)(NSError * _Nullable error))completionHandler DEPRECATED_ATTRIBUTE;
- (BOOL)application:(UIApplication* _Nonnull)application openURL:(NSURL* _Nonnull)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id>* _Nullable)options;
- (void)application:(UIApplication* _Nonnull)application performFetchWithCompletionHandler:(void (^_Nonnull)(UIBackgroundFetchResult))completionHandler;
- (void)setDeviceTokenWithData:(NSData* _Nonnull)token;
- (BOOL)processRecipeSimpleWithUserInfo:(NSDictionary<NSString*, id> * _Nullable)userInfo;
- (void)sendTrackingWithTrackingInfo:(NITTrackingInfo * _Nullable)trackingInfo event:(NSString* _Nullable)event;
- (void)setUserDataWithKey:(NSString* _Nonnull)key value:(NSString* _Nullable)value completionHandler:(void (^_Nullable)(NSError* _Nullable error))handler DEPRECATED_ATTRIBUTE DEPRECATED_MSG_ATTRIBUTE("Use setUserData(\"MY_KEY\", value:\"MY_VALUE\")");
- (void)setBatchUserDataWithDictionary:(NSDictionary<NSString*, id>* _Nonnull)valuesDictiornary completionHandler:(void (^_Nullable)(NSError* _Nullable error))handler DEPRECATED_ATTRIBUTE DEPRECATED_MSG_ATTRIBUTE("Use setUserData(\"MY_KEY\", value:\"MY_VALUE\")");
- (void)setDeferredUserDataWithKey:(NSString * _Nonnull)key value:(NSString * _Nullable)value
DEPRECATED_ATTRIBUTE DEPRECATED_MSG_ATTRIBUTE("Use setUserDataWithKey(\"MY_KEY\", value:\"MY_VALUE\")");

// Profile
- (void)setUserDataWithKey:(NSString* _Nonnull)key value:(NSString* _Nullable)value;
- (void)setUserDataWithKey:(NSString* _Nonnull)key multiValue:(NSDictionary<NSString*, NSNumber*>* _Nullable)value;
- (void)sendEventWithEvent:(NITEvent* _Nonnull)event completionHandler:(void (^_Nullable)(NSError* _Nullable error))handler;
- (void)setProfileId:(NSString * _Nonnull)profileId;
- (void)profileIdWithCompletionHandler:(void (^_Nonnull)(NSString* _Nullable profileId, NSError* _Nullable error))handler;
- (void)resetProfileWithCompletionHandler:(void (^_Nonnull)(NSString* _Nullable profileId, NSError* _Nullable error))handler;
- (void)optOutWithCompletionHandler:(void (^_Nonnull)(BOOL success))handler;
- (void)resetProfile DEPRECATED_ATTRIBUTE DEPRECATED_MSG_ATTRIBUTE("Use resetProfileWithCompletionHandler");
- (void)setDeferredUserDataWithKey:(NSString * _Nonnull)key value:(NSString * _Nullable)value
DEPRECATED_ATTRIBUTE DEPRECATED_MSG_ATTRIBUTE("Use setUserDataWithKey(\"MY_KEY\", value:\"MY_VALUE\")");
- (void)setUserDataWithKey:(NSString* _Nonnull)key value:(NSString* _Nullable)value completionHandler:(void (^_Nullable)(NSError* _Nullable error))handler DEPRECATED_ATTRIBUTE DEPRECATED_MSG_ATTRIBUTE("Use setUserData(\"MY_KEY\", value:\"MY_VALUE\")");
- (void)setBatchUserDataWithDictionary:(NSDictionary<NSString*, id>* _Nonnull)valuesDictiornary completionHandler:(void (^_Nullable)(NSError* _Nullable error))handler DEPRECATED_ATTRIBUTE DEPRECATED_MSG_ATTRIBUTE("Use setUserData(\"MY_KEY\", value:\"MY_VALUE\")");
- (NSString* _Nullable)profileId DEPRECATED_ATTRIBUTE DEPRECATED_MSG_ATTRIBUTE("Use profileIdWithCompletionHandler");

// Radar
- (void)start;
- (void)stop;

// Content
- (void)userNotificationCenter:(UNUserNotificationCenter* _Nonnull)center willPresent:(UNNotification* _Nonnull)notification withCompletionHandler:(void (^_Nonnull)(UNNotificationPresentationOptions options))handler;
- (BOOL)getContentFrom:(UNNotificationResponse* _Nonnull)response completion:(void (^_Nullable)(NITReactionBundle* _Nullable object, NITTrackingInfo * _Nullable trackingInfo, NSError* _Nullable error))completionHandler;
- (BOOL)processRecipeWithResponse:(UNNotificationResponse* _Nonnull)response completion:(void (^_Nullable)(NITReactionBundle* _Nullable object, NITTrackingInfo * _Nullable trackingInfo, NSError* _Nullable error))completionHandler
DEPRECATED_ATTRIBUTE DEPRECATED_MSG_ATTRIBUTE("Use getContentFrom");
- (void)couponsWithCompletionHandler:(void (^ _Nullable)(NSArray<NITCoupon*>* _Nullable, NSError* _Nullable))handler;

// Manual configuration
- (BOOL)processRecipeSimpleWithUserInfo:(NSDictionary<NSString*, id> * _Nullable)userInfo;
- (void)recipesWithCompletionHandler:(void (^_Nullable)(NSArray<NITRecipe*>* _Nullable recipes, NSError * _Nullable error))completionHandler;
- (void)processRecipeWithId:(NSString* _Nonnull)recipeId;
- (BOOL)processRecipeWithUserInfo:(NSDictionary<NSString *,id> * _Nonnull)userInfo completion:(void (^_Nullable)(NITReactionBundle* _Nullable object, NITTrackingInfo * _Nullable trackingInfo, NSError* _Nullable error))completionHandler;
- (BOOL)processRecipeWithResponse:(UNNotificationResponse*)response completion:(void (^_Nullable)(NITReactionBundle* _Nullable object, NITTrackingInfo * _Nullable trackingInfo, NSError* _Nullable error))completionHandler;
- (void)resetProfile DEPRECATED_ATTRIBUTE DEPRECATED_MSG_ATTRIBUTE("Use resetProfileWithCompletionHandler");
- (void)resetProfileWithCompletionHandler:(void (^_Nonnull)(NSString* _Nullable profileId, NSError* _Nullable error))handler;
- (NSString* _Nullable)profileId DEPRECATED_ATTRIBUTE DEPRECATED_MSG_ATTRIBUTE("Use profileIdWithCompletionHandler");
- (void)profileIdWithCompletionHandler:(void (^_Nonnull)(NSString* _Nullable profileId, NSError* _Nullable error))handler;
- (void)setProfileId:(NSString * _Nonnull)profileId;
- (void)optOutWithCompletionHandler:(void (^_Nonnull)(BOOL success))handler;
- (void)refreshConfigWithCompletionHandler:(void (^_Nullable)(NSError * _Nullable error))completionHandler DEPRECATED_ATTRIBUTE;
- (void)sendTrackingWithTrackingInfo:(NITTrackingInfo * _Nullable)trackingInfo event:(NSString* _Nullable)event;
- (void)sendEventWithEvent:(NITEvent* _Nonnull)event completionHandler:(void (^_Nullable)(NSError* _Nullable error))handler;

// Custom trigger
- (void)processCustomTriggerWithKey:(NSString* _Nonnull)key
DEPRECATED_ATTRIBUTE DEPRECATED_MSG_ATTRIBUTE("Use triggerInAppEventWithKey");
- (void)triggerInAppEventWithKey:(NSString* _Nonnull)key;
- (void)application:(UIApplication* _Nonnull)application performFetchWithCompletionHandler:(void (^_Nonnull)(UIBackgroundFetchResult))completionHandler;

// Util
- (void)parseContent:(id _Nonnull)content trackingInfo:(NITTrackingInfo* _Nonnull)trackingInfo contentDelegate:(id<NITContentDelegate> _Nonnull)contentDelegate;
- (BOOL)application:(UIApplication* _Nonnull)application openURL:(NSURL* _Nonnull)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id>* _Nullable)options;

// Notification History
- (void)historyWithCompletion:(void(^_Nonnull)(NSArray<NITHistoryItem*>* _Nullable items, NSError* _Nullable error))completion;
- (void)updateWithNotification:(UNNotification* _Nonnull)notification;
- (void)markNotificationHistoryAsOld;
Expand Down
2 changes: 1 addition & 1 deletion NearITSDK.framework/PrivateHeaders/NITTrackingInfo.h
Expand Up @@ -21,6 +21,6 @@

+ (NITTrackingInfo* _Nonnull)trackingInfoFromRecipeId:(NSString* _Nonnull)recipeId;
+ (NITTrackingInfo* _Nonnull)trackingInfoFromRecipeId:(NSString* _Nonnull)recipeId deliveryId:(NSString* _Nullable)deliveryId;
+ (NITTrackingInfo* _Nonnull)trackingInfoFromRecipeId:(NSString* _Nonnull)recipeId extras:(NSDictionary<NSString*, id> *)extras;
+ (NITTrackingInfo* _Nonnull)trackingInfoFromRecipeId:(NSString* _Nonnull)recipeId extras:(NSDictionary<NSString*, id> *_Nonnull)extras;

@end
4 changes: 2 additions & 2 deletions NearITSDK.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = 'NearITSDK'
s.version = '2.11.2'
s.version = '2.11.3'
s.summary = 'nearit.com iOS SDK'
s.description = 'nearit.com iOS SDK for Objective-C'

Expand All @@ -10,7 +10,7 @@ s.license = 'MIT'

s.author = {
'Francesco Leoni' => 'francesco@nearit.com',
'Cattaneo Stefano' => 'stefano@nearit.com',
'Stefano Cattaneo' => 'stefano@nearit.com',
'Boschini Federico' => 'federico@nearit.com'
}
s.source = { :git => "https://github.com/nearit/iOS-SDK.git", :tag => s.version.to_s }
Expand Down
4 changes: 2 additions & 2 deletions NearITSDKSwift.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = 'NearITSDKSwift'
s.version = '2.11.2'
s.version = '2.11.3'
s.summary = 'nearit.com iOS SDK'
s.description = 'nearit.com iOS SDK for Swift'

Expand All @@ -19,7 +19,7 @@ s.ios.deployment_target = '9.0'
s.requires_arc = true
s.source_files = 'NearITSDKSwift/*.{h,swift}'

s.dependency 'NearITSDK', '= 2.11.2'
s.dependency 'NearITSDK', '= 2.11.3'
s.swift_version = '4.2'

end
14 changes: 13 additions & 1 deletion NearITSDKSwift/NearManager.swift
Expand Up @@ -96,11 +96,23 @@ public final class NearManager: NSObject, NITManagerDelegate, NITNotificationUpd
}

@available(iOS 10.0, *)
public func processRecipeFrom(_ response: UNNotificationResponse, completion: ((NITReactionBundle?, NITTrackingInfo?, Error?) -> Void)?) -> Bool {
public func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
manager.userNotificationCenter(center, willPresent: notification) { (options) in
completionHandler(options)
}
}

@available(iOS 10.0, *)
public func getContentFrom(_ response: UNNotificationResponse, completion: ((NITReactionBundle?, NITTrackingInfo?, Error?) -> Void)?) -> Bool {
let userInfo = response.notification.request.content.userInfo
return self.processRecipe(userInfo, completion: completion)
}

@available(iOS, introduced: 10.0, deprecated, message: "use getContent instead")
public func processRecipeFrom(_ response: UNNotificationResponse, completion: ((NITReactionBundle?, NITTrackingInfo?, Error?) -> Void)?) -> Bool {
return getContentFrom(response, completion: completion)
}

public func processRecipe(_ userInfo: [AnyHashable : Any], completion: ((NITReactionBundle?, NITTrackingInfo?, Error?) -> Void)?) -> Bool {
if let ui = userInfo as? [String : Any] {
return manager.processRecipe(userInfo: ui, completion: { (content, trackingInfo, error) in
Expand Down
47 changes: 23 additions & 24 deletions samples/NearSample/NearSample.xcodeproj/project.pbxproj
Expand Up @@ -7,13 +7,13 @@
objects = {

/* Begin PBXBuildFile section */
1913D3530FA1C06ABAE916B2 /* Pods_NearSample.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9BDD6CF262C301E504AAB1DE /* Pods_NearSample.framework */; };
2694A71A1FB99E160053AD19 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2694A7191FB99E160053AD19 /* AppDelegate.swift */; };
2694A7211FB99E160053AD19 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 2694A71F1FB99E160053AD19 /* Main.storyboard */; };
2694A7231FB99E160053AD19 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2694A7221FB99E160053AD19 /* Assets.xcassets */; };
2694A7261FB99E160053AD19 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 2694A7241FB99E160053AD19 /* LaunchScreen.storyboard */; };
2694A7301FB9A0BA0053AD19 /* HomeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2694A72F1FB9A0BA0053AD19 /* HomeViewController.swift */; };
26AC2A7B1FC837C300EC400D /* NearButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26AC2A7A1FC837C300EC400D /* NearButton.swift */; };
620DF6AF82809FEB5B0E437E /* Pods_NearSample.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DD97747CA16DD20EA30B2871 /* Pods_NearSample.framework */; };
D778EBEF20A4B0A700B1BF45 /* Podfile in Resources */ = {isa = PBXBuildFile; fileRef = D778EBEE20A4B0A400B1BF45 /* Podfile */; };
/* End PBXBuildFile section */

Expand All @@ -26,19 +26,19 @@
2694A7271FB99E160053AD19 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
2694A72F1FB9A0BA0053AD19 /* HomeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeViewController.swift; sourceTree = "<group>"; };
26AC2A7A1FC837C300EC400D /* NearButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NearButton.swift; sourceTree = "<group>"; };
9BDD6CF262C301E504AAB1DE /* Pods_NearSample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_NearSample.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A6B4125871FD301FA804A80D /* Pods-NearSample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NearSample.release.xcconfig"; path = "Pods/Target Support Files/Pods-NearSample/Pods-NearSample.release.xcconfig"; sourceTree = "<group>"; };
306DC0247F84AF16C747ABFE /* Pods-NearSample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NearSample.debug.xcconfig"; path = "Target Support Files/Pods-NearSample/Pods-NearSample.debug.xcconfig"; sourceTree = "<group>"; };
D778EBEE20A4B0A400B1BF45 /* Podfile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Podfile; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
D7B71B7F21CBFA7500BAB9EC /* NearSample.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = NearSample.entitlements; sourceTree = "<group>"; };
F80D34C636857BE7712E274E /* Pods-NearSample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NearSample.debug.xcconfig"; path = "Pods/Target Support Files/Pods-NearSample/Pods-NearSample.debug.xcconfig"; sourceTree = "<group>"; };
DD97747CA16DD20EA30B2871 /* Pods_NearSample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_NearSample.framework; sourceTree = BUILT_PRODUCTS_DIR; };
E8AF31AA5FA6DB13D42CCDEA /* Pods-NearSample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NearSample.release.xcconfig"; path = "Target Support Files/Pods-NearSample/Pods-NearSample.release.xcconfig"; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
2694A7131FB99E160053AD19 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
1913D3530FA1C06ABAE916B2 /* Pods_NearSample.framework in Frameworks */,
620DF6AF82809FEB5B0E437E /* Pods_NearSample.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand All @@ -51,8 +51,8 @@
D778EBEE20A4B0A400B1BF45 /* Podfile */,
2694A7181FB99E160053AD19 /* NearSample */,
2694A7171FB99E160053AD19 /* Products */,
B19D537226CC981263BF4C51 /* Pods */,
7ECE464BA93FBEE2D45A36A8 /* Frameworks */,
4897E06E4BED329B7BED287E /* Pods */,
B59AE42B8DFF781E57009C18 /* Frameworks */,
);
sourceTree = "<group>";
};
Expand Down Expand Up @@ -87,21 +87,22 @@
path = Views;
sourceTree = "<group>";
};
7ECE464BA93FBEE2D45A36A8 /* Frameworks */ = {
4897E06E4BED329B7BED287E /* Pods */ = {
isa = PBXGroup;
children = (
9BDD6CF262C301E504AAB1DE /* Pods_NearSample.framework */,
306DC0247F84AF16C747ABFE /* Pods-NearSample.debug.xcconfig */,
E8AF31AA5FA6DB13D42CCDEA /* Pods-NearSample.release.xcconfig */,
);
name = Frameworks;
name = Pods;
path = Pods;
sourceTree = "<group>";
};
B19D537226CC981263BF4C51 /* Pods */ = {
B59AE42B8DFF781E57009C18 /* Frameworks */ = {
isa = PBXGroup;
children = (
F80D34C636857BE7712E274E /* Pods-NearSample.debug.xcconfig */,
A6B4125871FD301FA804A80D /* Pods-NearSample.release.xcconfig */,
DD97747CA16DD20EA30B2871 /* Pods_NearSample.framework */,
);
name = Pods;
name = Frameworks;
sourceTree = "<group>";
};
/* End PBXGroup section */
Expand All @@ -111,11 +112,11 @@
isa = PBXNativeTarget;
buildConfigurationList = 2694A72A1FB99E160053AD19 /* Build configuration list for PBXNativeTarget "NearSample" */;
buildPhases = (
3780FF61E45F9B955DCCB2DE /* [CP] Check Pods Manifest.lock */,
A788D59DFE5C4061C494762D /* [CP] Check Pods Manifest.lock */,
2694A7121FB99E160053AD19 /* Sources */,
2694A7131FB99E160053AD19 /* Frameworks */,
2694A7141FB99E160053AD19 /* Resources */,
262A49739F73329D0B423E6B /* [CP] Embed Pods Frameworks */,
114A6980CA62D72EF9EB3AA5 /* [CP] Embed Pods Frameworks */,
);
buildRules = (
);
Expand Down Expand Up @@ -183,16 +184,15 @@
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
262A49739F73329D0B423E6B /* [CP] Embed Pods Frameworks */ = {
114A6980CA62D72EF9EB3AA5 /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
"${SRCROOT}/Pods/Target Support Files/Pods-NearSample/Pods-NearSample-frameworks.sh",
"${BUILT_PRODUCTS_DIR}/Hex/Hex.framework",
"${PODS_ROOT}/Target Support Files/Pods-NearSample/Pods-NearSample-frameworks.sh",
"${PODS_ROOT}/NearITSDK/NearITSDK.framework",
"${BUILT_PRODUCTS_DIR}/NearITSDKSwift/NearITSDKSwift.framework",
"${BUILT_PRODUCTS_DIR}/NearUIBinding/NearUIBinding.framework",
Expand All @@ -201,17 +201,16 @@
outputFileListPaths = (
);
outputPaths = (
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Hex.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/NearITSDK.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/NearITSDKSwift.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/NearUIBinding.framework",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-NearSample/Pods-NearSample-frameworks.sh\"\n";
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NearSample/Pods-NearSample-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
3780FF61E45F9B955DCCB2DE /* [CP] Check Pods Manifest.lock */ = {
A788D59DFE5C4061C494762D /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
Expand Down Expand Up @@ -377,7 +376,7 @@
};
2694A72B1FB99E160053AD19 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = F80D34C636857BE7712E274E /* Pods-NearSample.debug.xcconfig */;
baseConfigurationReference = 306DC0247F84AF16C747ABFE /* Pods-NearSample.debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = NearSample/NearSample.entitlements;
Expand All @@ -395,7 +394,7 @@
};
2694A72C1FB99E160053AD19 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = A6B4125871FD301FA804A80D /* Pods-NearSample.release.xcconfig */;
baseConfigurationReference = E8AF31AA5FA6DB13D42CCDEA /* Pods-NearSample.release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = NearSample/NearSample.entitlements;
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>

0 comments on commit aa877e3

Please sign in to comment.