diff --git a/CHANGELOG.md b/CHANGELOG.md index 671c706..31fb885 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. `Shine-iOS` adheres to [Semantic Versioning](http://semver.org/). --- + +## [1.1.1](https://github.com/SoundwaveApp/Shine-iOS/releases/tag/1.1.1) (2015-07-31) + +#### Updated + +* Clarifications in contacts and location sync instructions +* Improved debug logging + + ## [1.1](https://github.com/SoundwaveApp/Shine-iOS/releases/tag/1.1) (2015-07-28) #### What's New diff --git a/README.md b/README.md index 7401f3a..74f83ca 100644 --- a/README.md +++ b/README.md @@ -91,6 +91,9 @@ The following Shine integration points are not mandatory when using Shine. Shine can capture a device's location if the host app has the required location services permissions. To capture location data, you need to add the following code to a class that conforms to the CLLocationDelegate protocol. ```objective-c +#import + +... - (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations { [Shine updateLocation:locations]; @@ -102,8 +105,11 @@ An example of capturing location data is available in the example app. ###Contacts Syncing### -Shine can capture a device's contacts if the host app has the required contacts access permissions. +Shine can capture a device's contacts if the host app has the required contacts access permissions. Make a call to `[Shine syncContacts]` after permission to access contacts has been granted. + ```objective-c +#import + ABAddressBookRequestAccessWithCompletion(ABAddressBookCreateWithOptions(nil, nil), ^(bool granted, CFErrorRef error) { if (granted) { [Shine syncContacts]; diff --git a/Shine.framework/Headers b/Shine.framework/Headers deleted file mode 120000 index a177d2a..0000000 --- a/Shine.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Headers \ No newline at end of file diff --git a/Shine.framework/Headers/SWUser.h b/Shine.framework/Headers/SWUser.h new file mode 100644 index 0000000..f14a638 --- /dev/null +++ b/Shine.framework/Headers/SWUser.h @@ -0,0 +1,22 @@ +// +// SWUser.h +// Shine +// +// Created by Brian Boyle on 16/06/2015. +// Copyright (c) 2015 Liam Russell. All rights reserved. +// + +#import + +@interface SWUser : NSObject + +@property (nonatomic, copy) NSString *firstName; +@property (nonatomic, copy) NSString *middleName; +@property (nonatomic, copy) NSString *lastName; +@property (nonatomic, copy) NSString *email; +@property (nonatomic, copy) NSString *zip; +@property (nonatomic, copy) NSString *yearOfBirth; +@property (nonatomic, copy) NSString *dateOfBirth; +@property (nonatomic, copy) NSString *gender; + +@end diff --git a/Shine.framework/Headers/Shine.h b/Shine.framework/Headers/Shine.h new file mode 100644 index 0000000..84e1b43 --- /dev/null +++ b/Shine.framework/Headers/Shine.h @@ -0,0 +1,41 @@ +// +// Shine.h +// Shine +// Created by Brian Boyle on 08/06/2015. +// Copyright (c) 2015 Soundwave. All rights reserved. + + +@import UIKit; +@import Foundation; +@import CoreLocation; + + +//! Project version number for Shine. +FOUNDATION_EXPORT double ShineVersionNumber; + +//! Project version string for Shine. +FOUNDATION_EXPORT const unsigned char ShineVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import +#import + +@interface Shine : NSObject + + +#pragma mark - Startup + ++ (void)setDeveloperKey:(NSString *)token; ++ (void)registerUserDetails:(SWUser *)userDetails; + +#pragma mark - Permissions + ++ (void)syncContacts; ++ (void)updateLocation:(NSArray *)locations; + + +#pragma mark - Debug + ++ (void)enableLogging; ++ (void)enableVerboseLogging; + +@end diff --git a/Shine.framework/Resources b/Shine.framework/Resources deleted file mode 120000 index 953ee36..0000000 --- a/Shine.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Resources \ No newline at end of file diff --git a/Shine.framework/Resources/Info.plist b/Shine.framework/Resources/Info.plist new file mode 100644 index 0000000..ee9e677 Binary files /dev/null and b/Shine.framework/Resources/Info.plist differ diff --git a/Shine.framework/Resources/Modules/module.modulemap b/Shine.framework/Resources/Modules/module.modulemap new file mode 100644 index 0000000..646f7f3 --- /dev/null +++ b/Shine.framework/Resources/Modules/module.modulemap @@ -0,0 +1,6 @@ +framework module Shine { + umbrella header "Shine.h" + + export * + module * { export * } +} diff --git a/Shine.framework/Resources/SWShineModel.momd/SWShineModel.mom b/Shine.framework/Resources/SWShineModel.momd/SWShineModel.mom new file mode 100644 index 0000000..1cc9584 Binary files /dev/null and b/Shine.framework/Resources/SWShineModel.momd/SWShineModel.mom differ diff --git a/Shine.framework/Resources/SWShineModel.momd/VersionInfo.plist b/Shine.framework/Resources/SWShineModel.momd/VersionInfo.plist new file mode 100644 index 0000000..c62b5e4 Binary files /dev/null and b/Shine.framework/Resources/SWShineModel.momd/VersionInfo.plist differ diff --git a/Shine.framework/Resources/ShineBundle.bundle/Info.plist b/Shine.framework/Resources/ShineBundle.bundle/Info.plist new file mode 100644 index 0000000..87b20d1 Binary files /dev/null and b/Shine.framework/Resources/ShineBundle.bundle/Info.plist differ diff --git a/Shine.framework/Resources/ShineBundle.bundle/SWShineModel.momd/SWShineModel.mom b/Shine.framework/Resources/ShineBundle.bundle/SWShineModel.momd/SWShineModel.mom new file mode 100644 index 0000000..1cc9584 Binary files /dev/null and b/Shine.framework/Resources/ShineBundle.bundle/SWShineModel.momd/SWShineModel.mom differ diff --git a/Shine.framework/Resources/ShineBundle.bundle/SWShineModel.momd/VersionInfo.plist b/Shine.framework/Resources/ShineBundle.bundle/SWShineModel.momd/VersionInfo.plist new file mode 100644 index 0000000..c62b5e4 Binary files /dev/null and b/Shine.framework/Resources/ShineBundle.bundle/SWShineModel.momd/VersionInfo.plist differ diff --git a/Shine.framework/Resources/ShineBundle.bundle/ShineBundle b/Shine.framework/Resources/ShineBundle.bundle/ShineBundle new file mode 100755 index 0000000..55c01b1 Binary files /dev/null and b/Shine.framework/Resources/ShineBundle.bundle/ShineBundle differ diff --git a/Shine.framework/Resources/_CodeSignature/CodeDirectory b/Shine.framework/Resources/_CodeSignature/CodeDirectory new file mode 100644 index 0000000..798f959 Binary files /dev/null and b/Shine.framework/Resources/_CodeSignature/CodeDirectory differ diff --git a/Shine.framework/Resources/_CodeSignature/CodeRequirements b/Shine.framework/Resources/_CodeSignature/CodeRequirements new file mode 100644 index 0000000..d9a9e86 Binary files /dev/null and b/Shine.framework/Resources/_CodeSignature/CodeRequirements differ diff --git a/Shine.framework/Resources/_CodeSignature/CodeResources b/Shine.framework/Resources/_CodeSignature/CodeResources new file mode 100644 index 0000000..578e073 --- /dev/null +++ b/Shine.framework/Resources/_CodeSignature/CodeResources @@ -0,0 +1,183 @@ + + + + + files + + Headers/SWUser.h + + Q2Pd85/gCPqLADIYbEXwX+NfALo= + + Headers/Shine.h + + 94lCnyPExZg9tz97Fqa61t3SuAE= + + Info.plist + + e+/TP2IF25oSLhi/5PQgrsR+kJ0= + + Modules/module.modulemap + + uktMIoMnY9KbXc+ifBmXdptiwEo= + + SWShineModel.momd/SWShineModel.mom + + KeTIi0XUz577VOc4Ib2UC6ymSXY= + + SWShineModel.momd/VersionInfo.plist + + 19sbxGq7v1iCnLr3vA92feH+89Q= + + ShineBundle.bundle/Info.plist + + JrW1AJkWZhvuhQj3rKtDNRun1lA= + + ShineBundle.bundle/SWShineModel.momd/SWShineModel.mom + + KeTIi0XUz577VOc4Ib2UC6ymSXY= + + ShineBundle.bundle/SWShineModel.momd/VersionInfo.plist + + 19sbxGq7v1iCnLr3vA92feH+89Q= + + ShineBundle.bundle/ShineBundle + + yjOXOqyKEspZYGaj5cv8TX+WSPI= + + + files2 + + Headers/SWUser.h + + Q2Pd85/gCPqLADIYbEXwX+NfALo= + + Headers/Shine.h + + 94lCnyPExZg9tz97Fqa61t3SuAE= + + Modules/module.modulemap + + uktMIoMnY9KbXc+ifBmXdptiwEo= + + SWShineModel.momd/SWShineModel.mom + + KeTIi0XUz577VOc4Ib2UC6ymSXY= + + SWShineModel.momd/VersionInfo.plist + + 19sbxGq7v1iCnLr3vA92feH+89Q= + + ShineBundle.bundle/Info.plist + + JrW1AJkWZhvuhQj3rKtDNRun1lA= + + ShineBundle.bundle/SWShineModel.momd/SWShineModel.mom + + KeTIi0XUz577VOc4Ib2UC6ymSXY= + + ShineBundle.bundle/SWShineModel.momd/VersionInfo.plist + + 19sbxGq7v1iCnLr3vA92feH+89Q= + + ShineBundle.bundle/ShineBundle + + yjOXOqyKEspZYGaj5cv8TX+WSPI= + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/Shine.framework/Resources/_CodeSignature/CodeSignature b/Shine.framework/Resources/_CodeSignature/CodeSignature new file mode 100644 index 0000000..b3d5ee3 Binary files /dev/null and b/Shine.framework/Resources/_CodeSignature/CodeSignature differ diff --git a/Shine.framework/Shine b/Shine.framework/Shine deleted file mode 120000 index b55a22d..0000000 --- a/Shine.framework/Shine +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Shine \ No newline at end of file diff --git a/Shine.framework/Shine b/Shine.framework/Shine new file mode 100644 index 0000000..4f1f849 Binary files /dev/null and b/Shine.framework/Shine differ diff --git a/Shine.framework/Versions/A/Headers/Shine.h b/Shine.framework/Versions/A/Headers/Shine.h index 51ebd93..84e1b43 100644 --- a/Shine.framework/Versions/A/Headers/Shine.h +++ b/Shine.framework/Versions/A/Headers/Shine.h @@ -26,11 +26,11 @@ FOUNDATION_EXPORT const unsigned char ShineVersionString[]; + (void)setDeveloperKey:(NSString *)token; + (void)registerUserDetails:(SWUser *)userDetails; -+ (void)updateLocation:(NSArray *)locations; #pragma mark - Permissions + (void)syncContacts; ++ (void)updateLocation:(NSArray *)locations; #pragma mark - Debug diff --git a/Shine.framework/Versions/A/Resources/Info.plist b/Shine.framework/Versions/A/Resources/Info.plist index d1d730f..ee9e677 100644 Binary files a/Shine.framework/Versions/A/Resources/Info.plist and b/Shine.framework/Versions/A/Resources/Info.plist differ diff --git a/Shine.framework/Versions/A/Resources/ShineBundle.bundle/Info.plist b/Shine.framework/Versions/A/Resources/ShineBundle.bundle/Info.plist index 29ca300..87b20d1 100644 Binary files a/Shine.framework/Versions/A/Resources/ShineBundle.bundle/Info.plist and b/Shine.framework/Versions/A/Resources/ShineBundle.bundle/Info.plist differ diff --git a/Shine.framework/Versions/A/Resources/ShineBundle.bundle/ShineBundle b/Shine.framework/Versions/A/Resources/ShineBundle.bundle/ShineBundle index c106725..55c01b1 100755 Binary files a/Shine.framework/Versions/A/Resources/ShineBundle.bundle/ShineBundle and b/Shine.framework/Versions/A/Resources/ShineBundle.bundle/ShineBundle differ diff --git a/Shine.framework/Versions/A/Resources/_CodeSignature/CodeDirectory b/Shine.framework/Versions/A/Resources/_CodeSignature/CodeDirectory index 5f097f3..798f959 100644 Binary files a/Shine.framework/Versions/A/Resources/_CodeSignature/CodeDirectory and b/Shine.framework/Versions/A/Resources/_CodeSignature/CodeDirectory differ diff --git a/Shine.framework/Versions/A/Resources/_CodeSignature/CodeResources b/Shine.framework/Versions/A/Resources/_CodeSignature/CodeResources index a948b39..578e073 100644 --- a/Shine.framework/Versions/A/Resources/_CodeSignature/CodeResources +++ b/Shine.framework/Versions/A/Resources/_CodeSignature/CodeResources @@ -10,11 +10,11 @@ Headers/Shine.h - Wfer6hXf5IfaQlXFopunZvKhTxc= + 94lCnyPExZg9tz97Fqa61t3SuAE= Info.plist - lwByOLjmjft/fJd+GcwJjgdMR5I= + e+/TP2IF25oSLhi/5PQgrsR+kJ0= Modules/module.modulemap @@ -30,7 +30,7 @@ ShineBundle.bundle/Info.plist - TMW/Qm6vN96UAl+ORRx9sR3Kh3A= + JrW1AJkWZhvuhQj3rKtDNRun1lA= ShineBundle.bundle/SWShineModel.momd/SWShineModel.mom @@ -42,7 +42,7 @@ ShineBundle.bundle/ShineBundle - ykyQd8ieKn1U8CuGjfOJlBAesKE= + yjOXOqyKEspZYGaj5cv8TX+WSPI= files2 @@ -53,7 +53,7 @@ Headers/Shine.h - Wfer6hXf5IfaQlXFopunZvKhTxc= + 94lCnyPExZg9tz97Fqa61t3SuAE= Modules/module.modulemap @@ -69,7 +69,7 @@ ShineBundle.bundle/Info.plist - TMW/Qm6vN96UAl+ORRx9sR3Kh3A= + JrW1AJkWZhvuhQj3rKtDNRun1lA= ShineBundle.bundle/SWShineModel.momd/SWShineModel.mom @@ -81,7 +81,7 @@ ShineBundle.bundle/ShineBundle - ykyQd8ieKn1U8CuGjfOJlBAesKE= + yjOXOqyKEspZYGaj5cv8TX+WSPI= rules diff --git a/Shine.framework/Versions/A/Resources/_CodeSignature/CodeSignature b/Shine.framework/Versions/A/Resources/_CodeSignature/CodeSignature index ab8b37c..b3d5ee3 100644 Binary files a/Shine.framework/Versions/A/Resources/_CodeSignature/CodeSignature and b/Shine.framework/Versions/A/Resources/_CodeSignature/CodeSignature differ diff --git a/Shine.framework/Versions/A/Shine b/Shine.framework/Versions/A/Shine index 54e3590..4f1f849 100644 Binary files a/Shine.framework/Versions/A/Shine and b/Shine.framework/Versions/A/Shine differ diff --git a/Shine.framework/Versions/Current b/Shine.framework/Versions/Current deleted file mode 120000 index 8c7e5a6..0000000 --- a/Shine.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/Shine.framework/Versions/Current/Headers/SWUser.h b/Shine.framework/Versions/Current/Headers/SWUser.h new file mode 100644 index 0000000..f14a638 --- /dev/null +++ b/Shine.framework/Versions/Current/Headers/SWUser.h @@ -0,0 +1,22 @@ +// +// SWUser.h +// Shine +// +// Created by Brian Boyle on 16/06/2015. +// Copyright (c) 2015 Liam Russell. All rights reserved. +// + +#import + +@interface SWUser : NSObject + +@property (nonatomic, copy) NSString *firstName; +@property (nonatomic, copy) NSString *middleName; +@property (nonatomic, copy) NSString *lastName; +@property (nonatomic, copy) NSString *email; +@property (nonatomic, copy) NSString *zip; +@property (nonatomic, copy) NSString *yearOfBirth; +@property (nonatomic, copy) NSString *dateOfBirth; +@property (nonatomic, copy) NSString *gender; + +@end diff --git a/Shine.framework/Versions/Current/Headers/Shine.h b/Shine.framework/Versions/Current/Headers/Shine.h new file mode 100644 index 0000000..84e1b43 --- /dev/null +++ b/Shine.framework/Versions/Current/Headers/Shine.h @@ -0,0 +1,41 @@ +// +// Shine.h +// Shine +// Created by Brian Boyle on 08/06/2015. +// Copyright (c) 2015 Soundwave. All rights reserved. + + +@import UIKit; +@import Foundation; +@import CoreLocation; + + +//! Project version number for Shine. +FOUNDATION_EXPORT double ShineVersionNumber; + +//! Project version string for Shine. +FOUNDATION_EXPORT const unsigned char ShineVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import +#import + +@interface Shine : NSObject + + +#pragma mark - Startup + ++ (void)setDeveloperKey:(NSString *)token; ++ (void)registerUserDetails:(SWUser *)userDetails; + +#pragma mark - Permissions + ++ (void)syncContacts; ++ (void)updateLocation:(NSArray *)locations; + + +#pragma mark - Debug + ++ (void)enableLogging; ++ (void)enableVerboseLogging; + +@end diff --git a/Shine.framework/Versions/Current/Resources/Info.plist b/Shine.framework/Versions/Current/Resources/Info.plist new file mode 100644 index 0000000..ee9e677 Binary files /dev/null and b/Shine.framework/Versions/Current/Resources/Info.plist differ diff --git a/Shine.framework/Versions/Current/Resources/Modules/module.modulemap b/Shine.framework/Versions/Current/Resources/Modules/module.modulemap new file mode 100644 index 0000000..646f7f3 --- /dev/null +++ b/Shine.framework/Versions/Current/Resources/Modules/module.modulemap @@ -0,0 +1,6 @@ +framework module Shine { + umbrella header "Shine.h" + + export * + module * { export * } +} diff --git a/Shine.framework/Versions/Current/Resources/SWShineModel.momd/SWShineModel.mom b/Shine.framework/Versions/Current/Resources/SWShineModel.momd/SWShineModel.mom new file mode 100644 index 0000000..1cc9584 Binary files /dev/null and b/Shine.framework/Versions/Current/Resources/SWShineModel.momd/SWShineModel.mom differ diff --git a/Shine.framework/Versions/Current/Resources/SWShineModel.momd/VersionInfo.plist b/Shine.framework/Versions/Current/Resources/SWShineModel.momd/VersionInfo.plist new file mode 100644 index 0000000..c62b5e4 Binary files /dev/null and b/Shine.framework/Versions/Current/Resources/SWShineModel.momd/VersionInfo.plist differ diff --git a/Shine.framework/Versions/Current/Resources/ShineBundle.bundle/Info.plist b/Shine.framework/Versions/Current/Resources/ShineBundle.bundle/Info.plist new file mode 100644 index 0000000..87b20d1 Binary files /dev/null and b/Shine.framework/Versions/Current/Resources/ShineBundle.bundle/Info.plist differ diff --git a/Shine.framework/Versions/Current/Resources/ShineBundle.bundle/SWShineModel.momd/SWShineModel.mom b/Shine.framework/Versions/Current/Resources/ShineBundle.bundle/SWShineModel.momd/SWShineModel.mom new file mode 100644 index 0000000..1cc9584 Binary files /dev/null and b/Shine.framework/Versions/Current/Resources/ShineBundle.bundle/SWShineModel.momd/SWShineModel.mom differ diff --git a/Shine.framework/Versions/Current/Resources/ShineBundle.bundle/SWShineModel.momd/VersionInfo.plist b/Shine.framework/Versions/Current/Resources/ShineBundle.bundle/SWShineModel.momd/VersionInfo.plist new file mode 100644 index 0000000..c62b5e4 Binary files /dev/null and b/Shine.framework/Versions/Current/Resources/ShineBundle.bundle/SWShineModel.momd/VersionInfo.plist differ diff --git a/Shine.framework/Versions/Current/Resources/ShineBundle.bundle/ShineBundle b/Shine.framework/Versions/Current/Resources/ShineBundle.bundle/ShineBundle new file mode 100755 index 0000000..55c01b1 Binary files /dev/null and b/Shine.framework/Versions/Current/Resources/ShineBundle.bundle/ShineBundle differ diff --git a/Shine.framework/Versions/Current/Resources/_CodeSignature/CodeDirectory b/Shine.framework/Versions/Current/Resources/_CodeSignature/CodeDirectory new file mode 100644 index 0000000..798f959 Binary files /dev/null and b/Shine.framework/Versions/Current/Resources/_CodeSignature/CodeDirectory differ diff --git a/Shine.framework/Versions/Current/Resources/_CodeSignature/CodeRequirements b/Shine.framework/Versions/Current/Resources/_CodeSignature/CodeRequirements new file mode 100644 index 0000000..d9a9e86 Binary files /dev/null and b/Shine.framework/Versions/Current/Resources/_CodeSignature/CodeRequirements differ diff --git a/Shine.framework/Versions/Current/Resources/_CodeSignature/CodeResources b/Shine.framework/Versions/Current/Resources/_CodeSignature/CodeResources new file mode 100644 index 0000000..578e073 --- /dev/null +++ b/Shine.framework/Versions/Current/Resources/_CodeSignature/CodeResources @@ -0,0 +1,183 @@ + + + + + files + + Headers/SWUser.h + + Q2Pd85/gCPqLADIYbEXwX+NfALo= + + Headers/Shine.h + + 94lCnyPExZg9tz97Fqa61t3SuAE= + + Info.plist + + e+/TP2IF25oSLhi/5PQgrsR+kJ0= + + Modules/module.modulemap + + uktMIoMnY9KbXc+ifBmXdptiwEo= + + SWShineModel.momd/SWShineModel.mom + + KeTIi0XUz577VOc4Ib2UC6ymSXY= + + SWShineModel.momd/VersionInfo.plist + + 19sbxGq7v1iCnLr3vA92feH+89Q= + + ShineBundle.bundle/Info.plist + + JrW1AJkWZhvuhQj3rKtDNRun1lA= + + ShineBundle.bundle/SWShineModel.momd/SWShineModel.mom + + KeTIi0XUz577VOc4Ib2UC6ymSXY= + + ShineBundle.bundle/SWShineModel.momd/VersionInfo.plist + + 19sbxGq7v1iCnLr3vA92feH+89Q= + + ShineBundle.bundle/ShineBundle + + yjOXOqyKEspZYGaj5cv8TX+WSPI= + + + files2 + + Headers/SWUser.h + + Q2Pd85/gCPqLADIYbEXwX+NfALo= + + Headers/Shine.h + + 94lCnyPExZg9tz97Fqa61t3SuAE= + + Modules/module.modulemap + + uktMIoMnY9KbXc+ifBmXdptiwEo= + + SWShineModel.momd/SWShineModel.mom + + KeTIi0XUz577VOc4Ib2UC6ymSXY= + + SWShineModel.momd/VersionInfo.plist + + 19sbxGq7v1iCnLr3vA92feH+89Q= + + ShineBundle.bundle/Info.plist + + JrW1AJkWZhvuhQj3rKtDNRun1lA= + + ShineBundle.bundle/SWShineModel.momd/SWShineModel.mom + + KeTIi0XUz577VOc4Ib2UC6ymSXY= + + ShineBundle.bundle/SWShineModel.momd/VersionInfo.plist + + 19sbxGq7v1iCnLr3vA92feH+89Q= + + ShineBundle.bundle/ShineBundle + + yjOXOqyKEspZYGaj5cv8TX+WSPI= + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/Shine.framework/Versions/Current/Resources/_CodeSignature/CodeSignature b/Shine.framework/Versions/Current/Resources/_CodeSignature/CodeSignature new file mode 100644 index 0000000..b3d5ee3 Binary files /dev/null and b/Shine.framework/Versions/Current/Resources/_CodeSignature/CodeSignature differ diff --git a/Shine.framework/Versions/Current/Shine b/Shine.framework/Versions/Current/Shine new file mode 100644 index 0000000..4f1f849 Binary files /dev/null and b/Shine.framework/Versions/Current/Shine differ diff --git a/Shine.podspec b/Shine.podspec index 056f96c..8ca228f 100755 --- a/Shine.podspec +++ b/Shine.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Shine" - s.version = "1.1" + s.version = "1.1.1" s.summary = "The Shine iOS SDK, for integrating Shine into your iOS application." s.homepage = "https://github.com/SoundwaveApp/Shine-iOS" s.license = { :type => 'Apache 2.0', :file => 'LICENSE.txt' }