Skip to content
Merged

V4101 #240

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Adjust.podspec
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
4 changes: 2 additions & 2 deletions Adjust.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down
6 changes: 1 addition & 5 deletions Adjust/ADJUtil.m
Original file line number Diff line number Diff line change
Expand Up @@ -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=";
Expand Down Expand Up @@ -138,10 +138,6 @@ + (void)initializeUrlSessionConfiguration {
}

+ (void)updateUrlSessionConfiguration:(ADJConfig *)config {
if (config.sendInBackground) {
urlSessionConfiguration = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:@"Adjust"];
}

userAgent = config.userAgent;
}

Expand Down
2 changes: 1 addition & 1 deletion AdjustTests/ADJPackageFields.m
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
```

--
Expand Down Expand Up @@ -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
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

This file was deleted.