Skip to content

Commit

Permalink
Merge pull request #473 from adjust/v4232
Browse files Browse the repository at this point in the history
Version 4.23.2
  • Loading branch information
uerceg authored Sep 28, 2020
2 parents 3a30f97 + be72aa8 commit 950ba35
Show file tree
Hide file tree
Showing 35 changed files with 119 additions and 19 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,6 @@ Frameworks

# Code style
uncrustify.cfg

#SPM
.swiftpm/
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.23.1"
s.version = "4.23.2"
s.summary = "This is the iOS SDK of adjust. You can read more about it at http://adjust.com."
s.homepage = "https://github.com/adjust/ios_sdk"
s.license = { :type => 'MIT', :file => 'MIT-LICENSE' }
s.author = { "Christian Wellenbrock" => "[email protected]" }
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.23.1" }
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.23.2" }
s.ios.deployment_target = '6.0'
s.tvos.deployment_target = '9.0'
s.framework = 'SystemConfiguration'
Expand Down
2 changes: 1 addition & 1 deletion Adjust/ADJUtil.m
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
static CTTelephonyNetworkInfo *networkInfo = nil;
#endif

static NSString * const kClientSdk = @"ios4.23.1";
static NSString * const kClientSdk = @"ios4.23.2";
static NSString * const kDeeplinkParam = @"deep_link=";
static NSString * const kSchemeDelimiter = @"://";
static NSString * const kDefaultScheme = @"AdjustUniversalScheme";
Expand Down
2 changes: 1 addition & 1 deletion Adjust/Adjust.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Adjust.h
// Adjust
//
// V4.23.1
// V4.23.2
// Created by Christian Wellenbrock (wellle) on 23rd July 2013.
// Copyright © 2012-2017 Adjust GmbH. All rights reserved.
//
Expand Down
1 change: 1 addition & 0 deletions Adjust/include/ADJAttribution.h
1 change: 1 addition & 0 deletions Adjust/include/ADJConfig.h
1 change: 1 addition & 0 deletions Adjust/include/ADJEvent.h
1 change: 1 addition & 0 deletions Adjust/include/ADJEventFailure.h
1 change: 1 addition & 0 deletions Adjust/include/ADJEventSuccess.h
1 change: 1 addition & 0 deletions Adjust/include/ADJLogger.h
1 change: 1 addition & 0 deletions Adjust/include/ADJSessionFailure.h
1 change: 1 addition & 0 deletions Adjust/include/ADJSessionSuccess.h
1 change: 1 addition & 0 deletions Adjust/include/ADJSubscription.h
1 change: 1 addition & 0 deletions Adjust/include/Adjust.h
1 change: 1 addition & 0 deletions AdjustBridge/Adjust
2 changes: 1 addition & 1 deletion AdjustBridge/AdjustBridgeRegister.m
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ + (NSString *)adjust_js {
if (this.sdkPrefix) {
return this.sdkPrefix;
} else {
return 'web-bridge4.23.1';
return 'web-bridge4.23.2';
}
},
setTestOptions: function(testOptions) {
Expand Down
1 change: 1 addition & 0 deletions AdjustBridge/include/AdjustBridge.h
1 change: 1 addition & 0 deletions AdjustBridge/include/AdjustBridgeRegister.h
1 change: 1 addition & 0 deletions AdjustBridge/include/WKWebViewJavascriptBridge.h
1 change: 1 addition & 0 deletions AdjustBridge/include/WebViewJavascriptBridgeBase.h
2 changes: 1 addition & 1 deletion AdjustTests/AdjustUnitTests/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.23.1";
self.clientSdk = @"ios4.23.2";
self.suffix = @"";
self.environment = @"sandbox";

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### Version 4.23.2 (28th September 2020)
#### Added
- Added support for Swift Package Manager (thanks to @mstfy).

---

### Version 4.23.1 (16th September 2020)
#### Fixed
- Fixed warning about storing negative value to `NSUInteger` data type.
Expand Down
65 changes: 65 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
// swift-tools-version:5.3

import PackageDescription

let package = Package(
name: "Adjust",
products: [
.library(name: "Adjust", targets: ["Adjust"]),
.library(name: "Sociomantic", targets: ["Sociomantic", "Adjust"]),
.library(name: "Criteo", targets: ["Criteo", "Adjust"]),
.library(name: "Trademob", targets: ["Trademob", "Adjust"]),
.library(name: "WebBridge", targets: ["WebBridge", "Adjust"])
],
targets: [
.target(
name: "Adjust",
path: "Adjust",
exclude: ["Info.plist"],
cSettings: [
.headerSearchPath(""),
.headerSearchPath("ADJAdditions")
]
),
.target(
name: "Sociomantic",
path: "plugin/Sociomantic",
exclude: ["Adjust"],
publicHeadersPath: "",
cSettings: [
.headerSearchPath("Adjust"),
.headerSearchPath("Adjust/ADJAdditions")
]
),
.target(
name: "Criteo",
path: "plugin/Criteo",
exclude: ["Adjust"],
publicHeadersPath: "",
cSettings: [
.headerSearchPath("Adjust"),
.headerSearchPath("Adjust/ADJAdditions")
]
),
.target(
name: "Trademob",
path: "plugin/Trademob",
exclude: ["Adjust"],
publicHeadersPath: "",
cSettings: [
.headerSearchPath("Adjust"),
.headerSearchPath("Adjust/ADJAdditions")
]
),
.target(
name: "WebBridge",
path: "AdjustBridge",
exclude: ["Adjust"],
cSettings: [
.headerSearchPath(""),
.headerSearchPath("WebViewJavascriptBridge"),
.headerSearchPath("Adjust"),
]
),
]
)
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ We will describe the steps to integrate the Adjust SDK into your iOS project. We
If you're using [CocoaPods][cocoapods], you can add the following line to your `Podfile` and continue from [this step](#sdk-integrate):

```ruby
pod 'Adjust', '~> 4.23.1'
pod 'Adjust', '~> 4.23.2'
```

or:

```ruby
pod 'Adjust', :git => 'https://github.com/adjust/ios_sdk.git', :tag => 'v4.23.1'
pod 'Adjust', :git => 'https://github.com/adjust/ios_sdk.git', :tag => 'v4.23.2'
```

---
Expand All @@ -97,6 +97,14 @@ github "adjust/ios_sdk"

---

If you're using Swift Package Manager, you can add the repository address directly in Xcode going to `File > Swift Packages > Add Package Dependency` and continue from [this step](#sdk-frameworks):

```
https://github.com/adjust/ios_sdk
```

---

You can also choose to integrate the Adjust SDK by adding it to your project as a framework. On the [releases page][releases] you can find the following archives:

* `AdjustSdkStatic.framework.zip`
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.23.1
4.23.2
4 changes: 2 additions & 2 deletions doc/chinese/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ Read this in other languages: [English][en-readme], [中文][zh-readme], [日本
如果您正在使用[CocoaPods][cocoapods],您可以将以下代码行添加至 `Podfile`,然后继续进行[此步骤](#sdk-integrate):

```ruby
pod 'Adjust', '~> 4.23.1'
pod 'Adjust', '~> 4.23.2'
```

或:

```ruby
pod 'Adjust', :git => 'https://github.com/adjust/ios_sdk.git', :tag => 'v4.23.1'
pod 'Adjust', :git => 'https://github.com/adjust/ios_sdk.git', :tag => 'v4.23.2'
```

---
Expand Down
2 changes: 1 addition & 1 deletion doc/english/migrate.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Migrate your Adjust SDK for iOS to v4.23.1 from v3.4.0
## Migrate your Adjust SDK for iOS to v4.23.2 from v3.4.0

### Initial setup

Expand Down
2 changes: 1 addition & 1 deletion doc/english/web_views.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ We will describe the steps to integrate the Adjust SDK into your iOS project. We
If you're using [CocoaPods][cocoapods], you can add the following line to your `Podfile` and continue from [this step](#sdk-integrate):

```ruby
pod 'Adjust/WebBridge', '~> 4.23.1'
pod 'Adjust/WebBridge', '~> 4.23.2'
```

---
Expand Down
4 changes: 2 additions & 2 deletions doc/japanese/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ adjust SDKをiOSプロジェクトに連携する手順を説明します。
[こちらの手順](#sdk-integrate)に進んでください。

```ruby
pod 'Adjust', '~> 4.23.1'
pod 'Adjust', '~> 4.23.2'
```

または

```ruby
pod 'Adjust', :git => 'https://github.com/adjust/ios_sdk.git', :tag => 'v4.23.1'
pod 'Adjust', :git => 'https://github.com/adjust/ios_sdk.git', :tag => 'v4.23.2'
```

---
Expand Down
4 changes: 2 additions & 2 deletions doc/korean/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ iOS 개발용 Xcode를 사용한다는 가정하에 iOS 프로젝트에 Adjust S
[CocoaPods][cocoapods]를 사용하는 경우, 다음 내용을 `Podfile`에 추가한 후 [해당 단계](#sdk-integrate)를 완료하세요.

```ruby
pod 'Adjust', '~> 4.23.1'
pod 'Adjust', '~> 4.23.2'
```

또는:

```ruby
pod 'Adjust', :git => 'https://github.com/adjust/ios_sdk.git', :tag => 'v4.23.1'
pod 'Adjust', :git => 'https://github.com/adjust/ios_sdk.git', :tag => 'v4.23.2'
```

---
Expand Down
2 changes: 1 addition & 1 deletion doc/korean/web_views.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ iOS 개발용 Xcode를 사용한다는 가정하에 iOS 프로젝트에 Adjust S
[CocoaPods][cocoapods]를 사용하는 경우, 다음 내용을 'Podfile'에 추가한 후 [해당 단계](#sdk-integrate)를 완료하세요.

```ruby
pod 'Adjust/WebBridge', '~> 4.23.1'
pod 'Adjust/WebBridge', '~> 4.23.2'
```

---
Expand Down
2 changes: 1 addition & 1 deletion doc/migrate.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Migrate your Adjust SDK for iOS to v4.23.1 from v3.4.0
## Migrate your Adjust SDK for iOS to v4.23.2 from v3.4.0

### Initial setup

Expand Down
1 change: 1 addition & 0 deletions plugin/Criteo/Adjust
1 change: 1 addition & 0 deletions plugin/Sociomantic/Adjust
1 change: 1 addition & 0 deletions plugin/Trademob/Adjust

0 comments on commit 950ba35

Please sign in to comment.