diff --git a/BlueShift-iOS-Extension-SDK.podspec b/BlueShift-iOS-Extension-SDK.podspec new file mode 100644 index 00000000..09e06a17 --- /dev/null +++ b/BlueShift-iOS-Extension-SDK.podspec @@ -0,0 +1,138 @@ +# +# Be sure to run `pod spec lint BlueShift-iOS-Extension-SDK.podspec.podspec' to ensure this is a +# valid spec and to remove all comments including this before submitting the spec. +# +# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html +# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ +# + +Pod::Spec.new do |s| + + # ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # + # + # These will help people to find your library, and whilst it + # can feel like a chore to fill in it's definitely to your advantage. The + # summary should be tweet-length, and the description more in depth. + # + + s.name = "BlueShift-iOS-Extension-SDK" + s.version = "0.1.6" + s.summary = "iOS SDK for push notification content extension and service extension for integrating media and carousel push notifications" + + s.description = <<-DESC + A longer description of BlueShift-iOS-SDK in Markdown format. + + * Think: Why did you write this? What is the focus? What does it do? + * CocoaPods will be using this to generate tags, and improve search results. + * Try to keep it short, snappy and to the point. + * Finally, don't worry about the indent, CocoaPods strips it! + DESC + + s.homepage = "https://github.com/blueshift-labs/Blueshift-iOS-SDK" + # s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif" + + + # ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # + # + # Licensing your code is important. See http://choosealicense.com for more info. + # CocoaPods will detect a license file if there is a named LICENSE* + # Popular ones are 'MIT', 'BSD' and 'Apache License, Version 2.0'. + # + + #s.license = "MIT (example)" + s.license = { :type => "MIT", :file => "LICENSE.md" } + + + # ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # + # + # Specify the authors of the library, with email addresses. Email addresses + # of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also + # accepts just a name if you'd rather not provide an email address. + # + # Specify a social_media_url where others can refer to, for example a twitter + # profile URL. + # + + s.author = { "Blueshift" => "success@getblueshift.com" } + # Or just: s.author = "shahas" + # s.authors = { "shahas" => "shahas@bullfin.ch" } + # s.social_media_url = "http://twitter.com/shahas" + + # ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― # + # + # If this Pod runs only on iOS or OS X, then specify the platform and + # the deployment target. You can optionally include the target after the platform. + # + + # s.platform = :ios + s.platform = :ios, "8.0" + + # When using multiple platforms + # s.ios.deployment_target = "5.0" + # s.osx.deployment_target = "10.7" + # s.watchos.deployment_target = "2.0" + # s.tvos.deployment_target = "9.0" + + + # ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # + # + # Specify the location from where the source should be retrieved. + # Supports git, hg, bzr, svn and HTTP. + # + + s.source = { :git => "https://github.com/blueshift-labs/BlueShift-iOS-SDK.git", :tag => "0.1.6" } + + + # ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # + # + # CocoaPods is smart about how it includes source code. For source files + # giving a folder will include any swift, h, m, mm, c & cpp files. + # For header files it will include any header in the folder. + # Not including the public_header_files will make all headers public. + # + + s.source_files = "BlueShift-iOS-Extension-SDK", "BlueShift-iOS-Extension-SDK/**/*.{h,m}" + s.exclude_files = "Classes/Exclude" + + s.public_header_files = "BlueShift-iOS-Extension-SDK/**/*.h" + + + # ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # + # + # A list of resources included with the Pod. These are copied into the + # target bundle with a build phase script. Anything else will be cleaned. + # You can preserve files from being cleaned, please don't preserve + # non-essential files like tests, examples and documentation. + # + + # s.resource = "icon.png" + # s.resources = "Resources/*.png" + + # s.preserve_paths = "FilesToSave", "MoreFilesToSave" + + + # ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # + # + # Link your library with frameworks, or libraries. Libraries do not include + # the lib prefix of their name. + # + + # s.framework = "SomeFramework" + # s.frameworks = "SomeFramework", "AnotherFramework" + + # s.library = "iconv" + # s.libraries = "iconv", "xml2" + + + # ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # + # + # If your library depends on compiler flags you can set them in the xcconfig hash + # where they will only apply to your library. If you depend on other Podspecs + # you can include multiple dependencies to ensure it works. + + # s.requires_arc = true + + # s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" } + # s.dependency "JSONKit", "~> 1.4" + +end diff --git a/BlueShift-iOS-SDK/BlueShiftAppExtension.h b/BlueShift-iOS-Extension-SDK/BlueShiftAppExtension.h similarity index 100% rename from BlueShift-iOS-SDK/BlueShiftAppExtension.h rename to BlueShift-iOS-Extension-SDK/BlueShiftAppExtension.h diff --git a/BlueShift-iOS-SDK/BlueShiftCarousalViewController.h b/BlueShift-iOS-Extension-SDK/BlueShiftCarousalViewController.h similarity index 100% rename from BlueShift-iOS-SDK/BlueShiftCarousalViewController.h rename to BlueShift-iOS-Extension-SDK/BlueShiftCarousalViewController.h diff --git a/BlueShift-iOS-SDK/BlueShiftCarousalViewController.m b/BlueShift-iOS-Extension-SDK/BlueShiftCarousalViewController.m similarity index 100% rename from BlueShift-iOS-SDK/BlueShiftCarousalViewController.m rename to BlueShift-iOS-Extension-SDK/BlueShiftCarousalViewController.m diff --git a/BlueShift-iOS-SDK/BlueShiftPushNotification.h b/BlueShift-iOS-Extension-SDK/BlueShiftPushNotification.h similarity index 100% rename from BlueShift-iOS-SDK/BlueShiftPushNotification.h rename to BlueShift-iOS-Extension-SDK/BlueShiftPushNotification.h diff --git a/BlueShift-iOS-SDK/BlueShiftPushNotification.m b/BlueShift-iOS-Extension-SDK/BlueShiftPushNotification.m similarity index 100% rename from BlueShift-iOS-SDK/BlueShiftPushNotification.m rename to BlueShift-iOS-Extension-SDK/BlueShiftPushNotification.m diff --git a/BlueShift-iOS-SDK/iCarousel.h b/BlueShift-iOS-Extension-SDK/iCarousel.h similarity index 100% rename from BlueShift-iOS-SDK/iCarousel.h rename to BlueShift-iOS-Extension-SDK/iCarousel.h diff --git a/BlueShift-iOS-SDK/iCarousel.m b/BlueShift-iOS-Extension-SDK/iCarousel.m similarity index 100% rename from BlueShift-iOS-SDK/iCarousel.m rename to BlueShift-iOS-Extension-SDK/iCarousel.m diff --git a/BlueShift-iOS-SDK.podspec b/BlueShift-iOS-SDK.podspec index c5b65312..098fdda5 100644 --- a/BlueShift-iOS-SDK.podspec +++ b/BlueShift-iOS-SDK.podspec @@ -16,8 +16,8 @@ Pod::Spec.new do |s| # s.name = "BlueShift-iOS-SDK" - s.version = "0.1.5" - s.summary = "A short description of BlueShift-iOS-SDK." + s.version = "0.1.6" + s.summary = "iOS SDK for integrating push notification and analytics" s.description = <<-DESC A longer description of BlueShift-iOS-SDK in Markdown format. @@ -78,7 +78,7 @@ Pod::Spec.new do |s| # Supports git, hg, bzr, svn and HTTP. # - s.source = { :git => "https://github.com/blueshift-labs/BlueShift-iOS-SDK.git", :tag => "0.1.5" } + s.source = { :git => "https://github.com/blueshift-labs/BlueShift-iOS-SDK.git", :tag => "0.1.6" } # ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # @@ -97,14 +97,15 @@ Pod::Spec.new do |s| s.subspec 'Core' do |ss| ss.source_files = "BlueShift-iOS-SDK/*.{h,m}" ss.public_header_files = "BlueShift-iOS-SDK/**/*.h" - ss.exclude_files = "Classes/Exclude", "BlueShift-iOS-SDK/BlueShiftPushNotification.{h,m}", "BlueShift-iOS-SDK/BlueShiftCarousalViewController.{h,m}", "BlueShift-iOS-SDK/iCarousel.{h,m}", "BlueShift-iOS-SDK/BlueShiftAppExtension.h" + ss.exclude_files = "Classes/Exclude" ss.resources = "BlueShift-iOS-SDK/**/*.{xcdatamodeld,xcdatamodel}" ss.resource_bundle = { :BlueShiftBundle => 'BlueShift-iOS-SDK/**/*.{xcdatamodeld,xcdatamodel}' } end s.subspec 'AppExtension' do |ss| - ss.source_files = "BlueShift-iOS-SDK/BlueShiftPushNotification.{h,m}", "BlueShift-iOS-SDK/BlueShiftCarousalViewController.{h,m}", "BlueShift-iOS-SDK/iCarousel.{h,m}", "BlueShift-iOS-SDK/BlueShiftAppExtension.h" + ss.source_files = "BlueShift-iOS-Extension-SDK", "BlueShift-iOS-Extension-SDK/**/*.{h,m}" ss.exclude_files = "Classes/Exclude" + ss.public_header_files = "BlueShift-iOS-Extension-SDK/**/*.h" end s.default_subspecs = 'Core' diff --git a/BlueShift-iOS-SDK.xcodeproj/project.pbxproj b/BlueShift-iOS-SDK.xcodeproj/project.pbxproj index 656f03bd..6438a570 100644 --- a/BlueShift-iOS-SDK.xcodeproj/project.pbxproj +++ b/BlueShift-iOS-SDK.xcodeproj/project.pbxproj @@ -23,6 +23,9 @@ /* Begin PBXBuildFile section */ 1F0B9037AD751886034A0665 /* libPods-BlueShift-iOS-SDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F87290F272894ADA86BB8C2A /* libPods-BlueShift-iOS-SDK.a */; settings = {ATTRIBUTES = (Required, ); }; }; 550274751D7820BF00BC832D /* BlueShiftSDKDataModel.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = 550274561D7820BF00BC832D /* BlueShiftSDKDataModel.xcdatamodeld */; }; + 555A39AF1ECDA8030067D21C /* BlueShiftCarousalViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 555A39AA1ECDA8030067D21C /* BlueShiftCarousalViewController.m */; }; + 555A39B01ECDA8030067D21C /* BlueShiftPushNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 555A39AC1ECDA8030067D21C /* BlueShiftPushNotification.m */; }; + 555A39B11ECDA8030067D21C /* iCarousel.m in Sources */ = {isa = PBXBuildFile; fileRef = 555A39AE1ECDA8030067D21C /* iCarousel.m */; }; 557CFEA51E1230C600768CC7 /* BlueShiftAppData.m in Sources */ = {isa = PBXBuildFile; fileRef = 557CFEA41E1230C600768CC7 /* BlueShiftAppData.m */; }; 55BD2BF31D9172F300422869 /* BatchEventEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 55BD2BC01D9172F300422869 /* BatchEventEntity.m */; }; 55BD2BF41D9172F300422869 /* BlueShift.m in Sources */ = {isa = PBXBuildFile; fileRef = 55BD2BC21D9172F300422869 /* BlueShift.m */; }; @@ -36,7 +39,6 @@ 55BD2BFC1D9172F300422869 /* BlueShiftHttpRequestBatchUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = 55BD2BD31D9172F300422869 /* BlueShiftHttpRequestBatchUpload.m */; }; 55BD2BFD1D9172F300422869 /* BlueShiftNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 55BD2BD61D9172F300422869 /* BlueShiftNetworkReachabilityManager.m */; }; 55BD2BFE1D9172F300422869 /* BlueShiftProduct.m in Sources */ = {isa = PBXBuildFile; fileRef = 55BD2BD91D9172F300422869 /* BlueShiftProduct.m */; }; - 55BD2BFF1D9172F300422869 /* BlueShiftPushNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 55BD2BDC1D9172F300422869 /* BlueShiftPushNotification.m */; }; 55BD2C001D9172F300422869 /* BlueShiftRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 55BD2BDF1D9172F300422869 /* BlueShiftRequestOperation.m */; }; 55BD2C011D9172F300422869 /* BlueShiftRequestOperationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 55BD2BE11D9172F300422869 /* BlueShiftRequestOperationManager.m */; }; 55BD2C021D9172F300422869 /* BlueShiftRequestQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 55BD2BE31D9172F300422869 /* BlueShiftRequestQueue.m */; }; @@ -46,8 +48,6 @@ 55BD2C061D9172F300422869 /* NSDate+BlueShiftDateHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 55BD2BF01D9172F300422869 /* NSDate+BlueShiftDateHelpers.m */; }; 55BD2C071D9172F300422869 /* NSNumber+BlueShiftHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 55BD2BF21D9172F300422869 /* NSNumber+BlueShiftHelpers.m */; }; 55C739171E28A31200A5EAE4 /* BlueShiftLiveContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 55C739161E28A31200A5EAE4 /* BlueShiftLiveContent.m */; }; - 55F56AC51D93CE1B00EEFD84 /* BlueShiftCarousalViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 55F56AC41D93CE1B00EEFD84 /* BlueShiftCarousalViewController.m */; }; - 55F56AC81D942C4A00EEFD84 /* iCarousel.m in Sources */ = {isa = PBXBuildFile; fileRef = 55F56AC71D942C4A00EEFD84 /* iCarousel.m */; }; DC7125C71AA76ABB00D6C30E /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC7125C61AA76ABB00D6C30E /* CoreTelephony.framework */; settings = {ATTRIBUTES = (Weak, ); }; }; DCA6202F1AA4F2AA001EC26B /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DCA6201F1AA4E303001EC26B /* CoreData.framework */; }; DCA620301AA4F4D6001EC26B /* BlueShiftModelBundle.bundle in Resources */ = {isa = PBXBuildFile; fileRef = DCA620271AA4F129001EC26B /* BlueShiftModelBundle.bundle */; }; @@ -68,8 +68,14 @@ /* Begin PBXFileReference section */ 550274571D7820BF00BC832D /* BlueShiftSDKDataModel.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = BlueShiftSDKDataModel.xcdatamodel; sourceTree = ""; }; - 5522CF7F1DA27D06004C6609 /* BlueShiftAppExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlueShiftAppExtension.h; sourceTree = ""; }; 5557E47C1E0955E300753813 /* SDKVersion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDKVersion.h; sourceTree = ""; }; + 555A39A81ECDA8030067D21C /* BlueShiftAppExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BlueShiftAppExtension.h; path = "BlueShift-iOS-Extension-SDK/BlueShiftAppExtension.h"; sourceTree = SOURCE_ROOT; }; + 555A39A91ECDA8030067D21C /* BlueShiftCarousalViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BlueShiftCarousalViewController.h; path = "BlueShift-iOS-Extension-SDK/BlueShiftCarousalViewController.h"; sourceTree = SOURCE_ROOT; }; + 555A39AA1ECDA8030067D21C /* BlueShiftCarousalViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BlueShiftCarousalViewController.m; path = "BlueShift-iOS-Extension-SDK/BlueShiftCarousalViewController.m"; sourceTree = SOURCE_ROOT; }; + 555A39AB1ECDA8030067D21C /* BlueShiftPushNotification.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BlueShiftPushNotification.h; path = "BlueShift-iOS-Extension-SDK/BlueShiftPushNotification.h"; sourceTree = SOURCE_ROOT; }; + 555A39AC1ECDA8030067D21C /* BlueShiftPushNotification.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BlueShiftPushNotification.m; path = "BlueShift-iOS-Extension-SDK/BlueShiftPushNotification.m"; sourceTree = SOURCE_ROOT; }; + 555A39AD1ECDA8030067D21C /* iCarousel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = iCarousel.h; path = "BlueShift-iOS-Extension-SDK/iCarousel.h"; sourceTree = SOURCE_ROOT; }; + 555A39AE1ECDA8030067D21C /* iCarousel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = iCarousel.m; path = "BlueShift-iOS-Extension-SDK/iCarousel.m"; sourceTree = SOURCE_ROOT; }; 557CFEA31E1230C600768CC7 /* BlueShiftAppData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlueShiftAppData.h; sourceTree = ""; }; 557CFEA41E1230C600768CC7 /* BlueShiftAppData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BlueShiftAppData.m; sourceTree = ""; }; 55BD2BBF1D9172F300422869 /* BatchEventEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BatchEventEntity.h; sourceTree = ""; }; @@ -100,8 +106,6 @@ 55BD2BD81D9172F300422869 /* BlueShiftProduct.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlueShiftProduct.h; sourceTree = ""; }; 55BD2BD91D9172F300422869 /* BlueShiftProduct.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BlueShiftProduct.m; sourceTree = ""; }; 55BD2BDA1D9172F300422869 /* BlueShiftPushDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlueShiftPushDelegate.h; sourceTree = ""; }; - 55BD2BDB1D9172F300422869 /* BlueShiftPushNotification.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlueShiftPushNotification.h; sourceTree = ""; }; - 55BD2BDC1D9172F300422869 /* BlueShiftPushNotification.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BlueShiftPushNotification.m; sourceTree = ""; }; 55BD2BDD1D9172F300422869 /* BlueShiftPushParamDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlueShiftPushParamDelegate.h; sourceTree = ""; }; 55BD2BDE1D9172F300422869 /* BlueShiftRequestOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlueShiftRequestOperation.h; sourceTree = ""; }; 55BD2BDF1D9172F300422869 /* BlueShiftRequestOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BlueShiftRequestOperation.m; sourceTree = ""; }; @@ -126,10 +130,6 @@ 55BD2BF21D9172F300422869 /* NSNumber+BlueShiftHelpers.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNumber+BlueShiftHelpers.m"; sourceTree = ""; }; 55C739151E28A31200A5EAE4 /* BlueShiftLiveContent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlueShiftLiveContent.h; sourceTree = ""; }; 55C739161E28A31200A5EAE4 /* BlueShiftLiveContent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BlueShiftLiveContent.m; sourceTree = ""; }; - 55F56AC31D93CE1B00EEFD84 /* BlueShiftCarousalViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlueShiftCarousalViewController.h; sourceTree = ""; }; - 55F56AC41D93CE1B00EEFD84 /* BlueShiftCarousalViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BlueShiftCarousalViewController.m; sourceTree = ""; }; - 55F56AC61D942C4A00EEFD84 /* iCarousel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iCarousel.h; sourceTree = ""; }; - 55F56AC71D942C4A00EEFD84 /* iCarousel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = iCarousel.m; sourceTree = ""; }; 99CE5242ED9870A5D4A5BADE /* Pods-BlueShift-iOS-SDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BlueShift-iOS-SDK.release.xcconfig"; path = "Pods/Target Support Files/Pods-BlueShift-iOS-SDK/Pods-BlueShift-iOS-SDK.release.xcconfig"; sourceTree = ""; }; 9A09163D6DFCFEE31B4B799F /* Pods-BlueShift-iOS-SDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BlueShift-iOS-SDK.debug.xcconfig"; path = "Pods/Target Support Files/Pods-BlueShift-iOS-SDK/Pods-BlueShift-iOS-SDK.debug.xcconfig"; sourceTree = ""; }; DC7125C61AA76ABB00D6C30E /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; }; @@ -229,8 +229,6 @@ 55BD2BD81D9172F300422869 /* BlueShiftProduct.h */, 55BD2BD91D9172F300422869 /* BlueShiftProduct.m */, 55BD2BDA1D9172F300422869 /* BlueShiftPushDelegate.h */, - 55BD2BDB1D9172F300422869 /* BlueShiftPushNotification.h */, - 55BD2BDC1D9172F300422869 /* BlueShiftPushNotification.m */, 55BD2BDD1D9172F300422869 /* BlueShiftPushParamDelegate.h */, 55BD2BDE1D9172F300422869 /* BlueShiftRequestOperation.h */, 55BD2BDF1D9172F300422869 /* BlueShiftRequestOperation.m */, @@ -254,16 +252,18 @@ 55BD2BF11D9172F300422869 /* NSNumber+BlueShiftHelpers.h */, 55BD2BF21D9172F300422869 /* NSNumber+BlueShiftHelpers.m */, 550274561D7820BF00BC832D /* BlueShiftSDKDataModel.xcdatamodeld */, - 55F56AC31D93CE1B00EEFD84 /* BlueShiftCarousalViewController.h */, - 55F56AC41D93CE1B00EEFD84 /* BlueShiftCarousalViewController.m */, - 55F56AC61D942C4A00EEFD84 /* iCarousel.h */, - 55F56AC71D942C4A00EEFD84 /* iCarousel.m */, - 5522CF7F1DA27D06004C6609 /* BlueShiftAppExtension.h */, 5557E47C1E0955E300753813 /* SDKVersion.h */, 557CFEA31E1230C600768CC7 /* BlueShiftAppData.h */, 557CFEA41E1230C600768CC7 /* BlueShiftAppData.m */, 55C739151E28A31200A5EAE4 /* BlueShiftLiveContent.h */, 55C739161E28A31200A5EAE4 /* BlueShiftLiveContent.m */, + 555A39A81ECDA8030067D21C /* BlueShiftAppExtension.h */, + 555A39A91ECDA8030067D21C /* BlueShiftCarousalViewController.h */, + 555A39AA1ECDA8030067D21C /* BlueShiftCarousalViewController.m */, + 555A39AB1ECDA8030067D21C /* BlueShiftPushNotification.h */, + 555A39AC1ECDA8030067D21C /* BlueShiftPushNotification.m */, + 555A39AD1ECDA8030067D21C /* iCarousel.h */, + 555A39AE1ECDA8030067D21C /* iCarousel.m */, ); path = "BlueShift-iOS-SDK"; sourceTree = ""; @@ -394,14 +394,14 @@ 55BD2C071D9172F300422869 /* NSNumber+BlueShiftHelpers.m in Sources */, 55BD2BFB1D9172F300422869 /* BlueShiftDeviceData.m in Sources */, 557CFEA51E1230C600768CC7 /* BlueShiftAppData.m in Sources */, - 55BD2BFF1D9172F300422869 /* BlueShiftPushNotification.m in Sources */, - 55F56AC51D93CE1B00EEFD84 /* BlueShiftCarousalViewController.m in Sources */, 55BD2C051D9172F300422869 /* HttpRequestOperationEntity.m in Sources */, 55C739171E28A31200A5EAE4 /* BlueShiftLiveContent.m in Sources */, + 555A39B11ECDA8030067D21C /* iCarousel.m in Sources */, 55BD2BF91D9172F300422869 /* BlueShiftConfig.m in Sources */, 55BD2BF71D9172F300422869 /* BlueShiftBatchRequestOperation.m in Sources */, 55BD2C021D9172F300422869 /* BlueShiftRequestQueue.m in Sources */, 55BD2C001D9172F300422869 /* BlueShiftRequestOperation.m in Sources */, + 555A39AF1ECDA8030067D21C /* BlueShiftCarousalViewController.m in Sources */, 55BD2BF61D9172F300422869 /* BlueShiftAppDelegate.m in Sources */, 55BD2BFD1D9172F300422869 /* BlueShiftNetworkReachabilityManager.m in Sources */, 55BD2BF51D9172F300422869 /* BlueShiftAlertView.m in Sources */, @@ -414,7 +414,7 @@ 55BD2BF41D9172F300422869 /* BlueShift.m in Sources */, 55BD2BF81D9172F300422869 /* BlueShiftBatchUploadConfig.m in Sources */, 55BD2BFC1D9172F300422869 /* BlueShiftHttpRequestBatchUpload.m in Sources */, - 55F56AC81D942C4A00EEFD84 /* iCarousel.m in Sources */, + 555A39B01ECDA8030067D21C /* BlueShiftPushNotification.m in Sources */, 55BD2C041D9172F300422869 /* BlueShiftUserInfo.m in Sources */, 55BD2BFA1D9172F300422869 /* BlueShiftDeepLink.m in Sources */, ); diff --git a/BlueShift-iOS-SDK/SDKVersion.h b/BlueShift-iOS-SDK/SDKVersion.h index f5999582..f5a770dc 100644 --- a/BlueShift-iOS-SDK/SDKVersion.h +++ b/BlueShift-iOS-SDK/SDKVersion.h @@ -9,6 +9,6 @@ #ifndef SDKVersion_h #define SDKVersion_h -#define kSDKVersionNumber @"0.1.5" +#define kSDKVersionNumber @"0.1.6" #endif /* SDKVersion_h */