diff --git a/Adjust.podspec b/Adjust.podspec index 93903ad0b..cfcf117c8 100644 --- a/Adjust.podspec +++ b/Adjust.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = "Adjust" - s.version = "4.10.0" + s.version = "4.10.1" s.summary = "This is the iOS SDK of adjust. You can read more about it at http://adjust.com." s.homepage = "http://adjust.com" s.license = { :type => 'MIT', :file => 'MIT-LICENSE' } s.author = { "Christian Wellenbrock" => "welle@adjust.com" } - s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.10.0" } + s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.10.1" } s.ios.deployment_target = '6.0' s.tvos.deployment_target = '9.0' s.framework = 'SystemConfiguration' diff --git a/Adjust.xcodeproj/project.pbxproj b/Adjust.xcodeproj/project.pbxproj index 6c8ba2615..ee8985489 100644 --- a/Adjust.xcodeproj/project.pbxproj +++ b/Adjust.xcodeproj/project.pbxproj @@ -1770,7 +1770,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; INFOPLIST_FILE = AdjustSdk/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = NO; @@ -1799,7 +1799,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; INFOPLIST_FILE = AdjustSdk/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; MTL_ENABLE_DEBUG_INFO = NO; ONLY_ACTIVE_ARCH = NO; diff --git a/Adjust/ADJUtil.m b/Adjust/ADJUtil.m index 683c09c1b..3b5875820 100644 --- a/Adjust/ADJUtil.m +++ b/Adjust/ADJUtil.m @@ -26,7 +26,7 @@ static NSRegularExpression *optionalRedirectRegex = nil; static NSNumberFormatter * secondsNumberFormatter = nil; -static NSString * const kClientSdk = @"ios4.10.0"; +static NSString * const kClientSdk = @"ios4.10.1"; static NSURLSessionConfiguration * urlSessionConfiguration = nil; static NSString * userAgent = nil; static NSString * const kDeeplinkParam = @"deep_link="; @@ -138,10 +138,6 @@ + (void)initializeUrlSessionConfiguration { } + (void)updateUrlSessionConfiguration:(ADJConfig *)config { - if (config.sendInBackground) { - urlSessionConfiguration = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:@"Adjust"]; - } - userAgent = config.userAgent; } diff --git a/AdjustTests/ADJPackageFields.m b/AdjustTests/ADJPackageFields.m index 50505c150..4852fec6d 100644 --- a/AdjustTests/ADJPackageFields.m +++ b/AdjustTests/ADJPackageFields.m @@ -16,7 +16,7 @@ - (id) init { // default values self.appToken = @"qwerty123456"; - self.clientSdk = @"ios4.10.0"; + self.clientSdk = @"ios4.10.1"; self.suffix = @""; self.environment = @"sandbox"; diff --git a/CHANGELOG.md b/CHANGELOG.md index a0028df13..20eb0eab1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +### Version 4.10.1 (12th September 2016) +#### Changed +- Revert deployment target to iOs 6.0 + +#### Fixed +- Remove NSURLSessionConfiguration with backgroundSessionConfigurationWithIdentifier + +-- + ### Version 4.10.0 (8th September 2016) #### Changed - SDK updated due to an update to the Apple App Store Review Guidelines (https://developer.apple.com/app-store/review/guidelines/ chapter 5.1.1 iv). diff --git a/README.md b/README.md index 61e0c0bfc..3834ea8d2 100644 --- a/README.md +++ b/README.md @@ -87,13 +87,13 @@ If you're using [CocoaPods][cocoapods], you can add the following line to your ` [this step](#sdk-integrate): ```ruby -pod 'Adjust', '~> 4.10.0' +pod 'Adjust', '~> 4.10.1' ``` or: ```ruby -pod 'Adjust', :git => 'https://github.com/adjust/ios_sdk.git', :tag => 'v4.10.0' +pod 'Adjust', :git => 'https://github.com/adjust/ios_sdk.git', :tag => 'v4.10.1' ``` -- @@ -997,7 +997,7 @@ set to `verbose` level, you will see this `sdk_click` package looking something ``` [Adjust]d: Added package 1 (click) [Adjust]v: Path: /sdk_click -[Adjust]v: ClientSdk: ios4.10.0 +[Adjust]v: ClientSdk: ios4.10.1 [Adjust]v: Parameters: [Adjust]v: app_token {YourAppToken} [Adjust]v: created_at 2016-04-15T14:25:51.676Z+0200 diff --git a/examples/AdjustExample-Swift/AdjustExample-Swift/Adjust/AdjustSdk.framework/Versions/A/AdjustSdk b/examples/AdjustExample-Swift/AdjustExample-Swift/Adjust/AdjustSdk.framework/Versions/A/AdjustSdk index e44d314bd..fe2347f71 100644 Binary files a/examples/AdjustExample-Swift/AdjustExample-Swift/Adjust/AdjustSdk.framework/Versions/A/AdjustSdk and b/examples/AdjustExample-Swift/AdjustExample-Swift/Adjust/AdjustSdk.framework/Versions/A/AdjustSdk differ diff --git a/examples/AdjustExample-WebView/AdjustExample-WebView/Adjust/AdjustSdk.framework/Versions/A/AdjustSdk b/examples/AdjustExample-WebView/AdjustExample-WebView/Adjust/AdjustSdk.framework/Versions/A/AdjustSdk index e44d314bd..fe2347f71 100644 Binary files a/examples/AdjustExample-WebView/AdjustExample-WebView/Adjust/AdjustSdk.framework/Versions/A/AdjustSdk and b/examples/AdjustExample-WebView/AdjustExample-WebView/Adjust/AdjustSdk.framework/Versions/A/AdjustSdk differ diff --git a/examples/AdjustExample-iOS/AdjustExample-iOS/Adjust/AdjustSdk.framework/Versions/A/AdjustSdk b/examples/AdjustExample-iOS/AdjustExample-iOS/Adjust/AdjustSdk.framework/Versions/A/AdjustSdk index e44d314bd..fe2347f71 100644 Binary files a/examples/AdjustExample-iOS/AdjustExample-iOS/Adjust/AdjustSdk.framework/Versions/A/AdjustSdk and b/examples/AdjustExample-iOS/AdjustExample-iOS/Adjust/AdjustSdk.framework/Versions/A/AdjustSdk differ diff --git a/examples/AdjustExample-iWatch/AdjustExample-iWatch/Adjust/AdjustSdk.framework/Versions/A/AdjustSdk b/examples/AdjustExample-iWatch/AdjustExample-iWatch/Adjust/AdjustSdk.framework/Versions/A/AdjustSdk index e44d314bd..fe2347f71 100644 Binary files a/examples/AdjustExample-iWatch/AdjustExample-iWatch/Adjust/AdjustSdk.framework/Versions/A/AdjustSdk and b/examples/AdjustExample-iWatch/AdjustExample-iWatch/Adjust/AdjustSdk.framework/Versions/A/AdjustSdk differ diff --git a/examples/AdjustExample-tvOS/AdjustExample-tvOS/Adjust/AdjustSdkTV.framework/AdjustSdkTV b/examples/AdjustExample-tvOS/AdjustExample-tvOS/Adjust/AdjustSdkTV.framework/AdjustSdkTV index 875ab4d06..b2dda1278 100755 Binary files a/examples/AdjustExample-tvOS/AdjustExample-tvOS/Adjust/AdjustSdkTV.framework/AdjustSdkTV and b/examples/AdjustExample-tvOS/AdjustExample-tvOS/Adjust/AdjustSdkTV.framework/AdjustSdkTV differ diff --git a/examples/AdjustExample-tvOS/AdjustExample-tvOS/Adjust/AdjustSdkTV.framework/Info.plist b/examples/AdjustExample-tvOS/AdjustExample-tvOS/Adjust/AdjustSdkTV.framework/Info.plist index 49c229f9a..a66853148 100644 Binary files a/examples/AdjustExample-tvOS/AdjustExample-tvOS/Adjust/AdjustSdkTV.framework/Info.plist and b/examples/AdjustExample-tvOS/AdjustExample-tvOS/Adjust/AdjustSdkTV.framework/Info.plist differ diff --git a/examples/AdjustExample-tvOS/AdjustExample-tvOS/Adjust/AdjustSdkTv.framework/_CodeSignature/CodeResources b/examples/AdjustExample-tvOS/AdjustExample-tvOS/Adjust/AdjustSdkTv.framework/_CodeSignature/CodeResources deleted file mode 100644 index a1983ed80..000000000 --- a/examples/AdjustExample-tvOS/AdjustExample-tvOS/Adjust/AdjustSdkTv.framework/_CodeSignature/CodeResources +++ /dev/null @@ -1,276 +0,0 @@ - - - - - files - - Headers/ADJAttribution.h - - yebFF2FRfBwbCqjWTgTuMQAlCUA= - - Headers/ADJConfig.h - - +cpAu7hZIJHXmyLcyVkRbMCXpag= - - Headers/ADJEvent.h - - deuJbUUnULcOktAAWPkDnWwN5MQ= - - Headers/ADJEventFailure.h - - 5pjoyUKRgwpvv61Jv90UV4tOl4g= - - Headers/ADJEventSuccess.h - - kJnkpNREqCGMLp/KOt91avboeSE= - - Headers/ADJLogger.h - - wa8twtnqRtDwyeQl99fRFb/ONA8= - - Headers/ADJSessionFailure.h - - +S92Sypoo3GznEN3SIJpYSggnMU= - - Headers/ADJSessionSuccess.h - - ZC4oXvXhL/9zfBjw4w22BYWsMw4= - - Headers/Adjust.h - - DmabhyLl0wRvRC/IKydJlQT93N4= - - Headers/AdjustSdkTv.h - - bsPqO/1acqYnrpfUPnF8HTbszfE= - - Info.plist - - WLbRA2Rav+ah1h/Ze2Yoz0slD6c= - - Modules/module.modulemap - - RYOq6TAofvU6FudBmRynjQjLibk= - - - files2 - - Headers/ADJAttribution.h - - hash - - yebFF2FRfBwbCqjWTgTuMQAlCUA= - - hash2 - - DCPXSilyv7VHVa/ESg+jithmPvSjsvKfl+4UCmky4zY= - - - Headers/ADJConfig.h - - hash - - +cpAu7hZIJHXmyLcyVkRbMCXpag= - - hash2 - - kxYlIyQ3ccsEDJxk8MPrbQ2S9Rbm4X5MjgKKpm0rLwQ= - - - Headers/ADJEvent.h - - hash - - deuJbUUnULcOktAAWPkDnWwN5MQ= - - hash2 - - L9IOxDS6Nyno39n8muBk2hO1reib3Ox5ZuhA8RdzlDk= - - - Headers/ADJEventFailure.h - - hash - - 5pjoyUKRgwpvv61Jv90UV4tOl4g= - - hash2 - - EL9nXgt/dp9lZwgVe6Thss53U8NxHMqY+qcUbaoAdho= - - - Headers/ADJEventSuccess.h - - hash - - kJnkpNREqCGMLp/KOt91avboeSE= - - hash2 - - 04HIJDmevhvp2taV7v5pmydKPbFQsQlrnjbHwZbN46o= - - - Headers/ADJLogger.h - - hash - - wa8twtnqRtDwyeQl99fRFb/ONA8= - - hash2 - - J1t0g8KczDTft0dVJt/+bYwD7mt/9bv/vF31P/msQ0I= - - - Headers/ADJSessionFailure.h - - hash - - +S92Sypoo3GznEN3SIJpYSggnMU= - - hash2 - - NN9GsaFVqYUb1XclTLaNpk0b15gYTef7ld+w3O7qDmI= - - - Headers/ADJSessionSuccess.h - - hash - - ZC4oXvXhL/9zfBjw4w22BYWsMw4= - - hash2 - - m4TbwxoYuykXhft3CKFJjX4jA/R88VehRPIG2ct9VnU= - - - Headers/Adjust.h - - hash - - DmabhyLl0wRvRC/IKydJlQT93N4= - - hash2 - - nSW223nANHIFWWmFjVynkVXJk96etKiUN1i1kZdN6tE= - - - Headers/AdjustSdkTv.h - - hash - - bsPqO/1acqYnrpfUPnF8HTbszfE= - - hash2 - - LFZq28ZFCvaRtFwU1MLoA4rltVZmSaEHORFSzzVCCNo= - - - Modules/module.modulemap - - hash - - RYOq6TAofvU6FudBmRynjQjLibk= - - hash2 - - xSanbXlaKKREfmidijXwxyaFz/FKrv3QPq76gwm5TIw= - - - - 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 - - - -