Commit e28481c 1 parent 917eb05 commit e28481c Copy full SHA for e28481c
File tree 9 files changed +852
-851
lines changed
examples/AdjustExample-ObjC/AdjustExample-ObjC
9 files changed +852
-851
lines changed Original file line number Diff line number Diff line change @@ -96,13 +96,13 @@ We will describe the steps to integrate the Adjust SDK into your iOS project. We
96
96
If you're using [ CocoaPods] [ cocoapods ] , you can add the following line to your ` Podfile ` and continue from [ this step] ( #sdk-integrate ) :
97
97
98
98
``` ruby
99
- pod ' Adjust' , ' ~> 4.30 .0'
99
+ pod ' Adjust' , ' ~> 4.31 .0'
100
100
```
101
101
102
102
or:
103
103
104
104
``` ruby
105
- pod ' Adjust' , :git => ' https://github.com/adjust/ios_sdk.git' , :tag => ' v4.30 .0'
105
+ pod ' Adjust' , :git => ' https://github.com/adjust/ios_sdk.git' , :tag => ' v4.31 .0'
106
106
```
107
107
108
108
---
Original file line number Diff line number Diff line change 95
95
如果您正在使用 [ CocoaPods] [ cocoapods ] ,可以将以下代码行添加至 ` Podfile ` ,然后继续进行[ 此步骤] ( #sdk-integrate ) :
96
96
97
97
``` ruby
98
- pod ' Adjust' , ' ~> 4.30 .0'
98
+ pod ' Adjust' , ' ~> 4.31 .0'
99
99
```
100
100
101
101
或:
102
102
103
103
``` ruby
104
- pod ' Adjust' , :git => ' https://github.com/adjust/ios_sdk.git' , :tag => ' v4.30 .0'
104
+ pod ' Adjust' , :git => ' https://github.com/adjust/ios_sdk.git' , :tag => ' v4.31 .0'
105
105
```
106
106
107
107
---
Original file line number Diff line number Diff line change 1
- ## Migrate your Adjust SDK for iOS to v4.30 .0 from v3.4.0
1
+ ## Migrate your Adjust SDK for iOS to v4.31 .0 from v3.4.0
2
2
3
3
### Initial setup
4
4
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -95,13 +95,13 @@ Adjust SDKをiOSプロジェクトに導入する手順を説明します。Xcod
95
95
[ CocoaPods] [ cocoapods ] を使用している場合は、Podfile`に下記のコードを追加し、[ こちらの手順] ( #sdk-integrate ) に進んでください。
96
96
97
97
``` ruby
98
- pod ' Adjust' , ' ~> 4.30 .0'
98
+ pod ' Adjust' , ' ~> 4.31 .0'
99
99
```
100
100
101
101
または
102
102
103
103
``` ruby
104
- pod ' Adjust' , :git => ' https://github.com/adjust/ios_sdk.git' , :tag => ' v4.30 .0'
104
+ pod ' Adjust' , :git => ' https://github.com/adjust/ios_sdk.git' , :tag => ' v4.31 .0'
105
105
```
106
106
107
107
---
Original file line number Diff line number Diff line change @@ -95,13 +95,13 @@ iOS 개발용 Xcode를 사용한다는 가정하에 iOS 프로젝트에 Adjust S
95
95
[ CocoaPods] [ cocoapods ] 를 사용하는 경우, 다음 내용을 ` Podfile ` 에 추가한 후 [ 해당 단계] ( #sdk-integrate ) 를 완료하세요.
96
96
97
97
``` ruby
98
- pod ` Adjust` , ` ~> 4.30 .0`
98
+ pod ` Adjust` , ` ~> 4.31 .0`
99
99
```
100
100
101
101
또는:
102
102
103
103
``` ruby
104
- pod ' Adjust' , :git => ' https://github.com/adjust/ios_sdk.git' , :tag => ' v4.30 .0'
104
+ pod ' Adjust' , :git => ' https://github.com/adjust/ios_sdk.git' , :tag => ' v4.31 .0'
105
105
```
106
106
107
107
---
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ iOS 개발용 Xcode를 사용한다는 가정하에 iOS 프로젝트에 Adjust S
64
64
[ CocoaPods] [ cocoapods ] 를 사용하는 경우, 다음 내용을 'Podfile'에 추가한 후 [ 해당 단계] ( #sdk-integrate ) 를 완료하세요.
65
65
66
66
``` ruby
67
- pod ' Adjust/WebBridge' , ' ~> 4.30 .0'
67
+ pod ' Adjust/WebBridge' , ' ~> 4.31 .0'
68
68
```
69
69
70
70
---
Original file line number Diff line number Diff line change 1
- ## Migrate your Adjust SDK for iOS to v4.30 .0 from v3.4.0
1
+ ## Migrate your Adjust SDK for iOS to v4.31 .0 from v3.4.0
2
2
3
3
### Initial setup
4
4
Original file line number Diff line number Diff line change @@ -20,16 +20,16 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
20
20
NSString *appToken = kAppToken ;
21
21
NSString *environment = ADJEnvironmentSandbox;
22
22
ADJConfig *adjustConfig = [ADJConfig configWithAppToken: appToken environment: environment];
23
-
23
+
24
24
// Change the log level.
25
25
[adjustConfig setLogLevel: ADJLogLevelVerbose];
26
-
26
+
27
27
// Enable event buffering.
28
28
// [adjustConfig setEventBufferingEnabled:YES];
29
-
29
+
30
30
// Set default tracker.
31
31
// [adjustConfig setDefaultTracker:@"{TrackerToken}"];
32
-
32
+
33
33
// Send in the background.
34
34
// [adjustConfig setSendInBackground:YES];
35
35
@@ -38,6 +38,7 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
38
38
39
39
// Set an attribution delegate.
40
40
[adjustConfig setDelegate: self ];
41
+ [adjustConfig setLinkMeEnabled: YES ];
41
42
42
43
// Delay the first session of the SDK.
43
44
// [adjustConfig setDelayStart:7];
You can’t perform that action at this time.
0 commit comments