File tree Expand file tree Collapse file tree 9 files changed +852
-851
lines changed
examples/AdjustExample-ObjC/AdjustExample-ObjC Expand file tree Collapse file tree 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
9696If you're using [ CocoaPods] [ cocoapods ] , you can add the following line to your ` Podfile ` and continue from [ this step] ( #sdk-integrate ) :
9797
9898``` ruby
99- pod ' Adjust' , ' ~> 4.30 .0'
99+ pod ' Adjust' , ' ~> 4.31 .0'
100100```
101101
102102or:
103103
104104``` 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'
106106```
107107
108108---
Original file line number Diff line number Diff line change 9595如果您正在使用 [ CocoaPods] [ cocoapods ] ,可以将以下代码行添加至 ` Podfile ` ,然后继续进行[ 此步骤] ( #sdk-integrate ) :
9696
9797``` ruby
98- pod ' Adjust' , ' ~> 4.30 .0'
98+ pod ' Adjust' , ' ~> 4.31 .0'
9999```
100100
101101或:
102102
103103``` 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'
105105```
106106
107107---
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
22
33### Initial setup
44
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
9595[ CocoaPods] [ cocoapods ] を使用している場合は、Podfile`に下記のコードを追加し、[ こちらの手順] ( #sdk-integrate ) に進んでください。
9696
9797``` ruby
98- pod ' Adjust' , ' ~> 4.30 .0'
98+ pod ' Adjust' , ' ~> 4.31 .0'
9999```
100100
101101または
102102
103103``` 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'
105105```
106106
107107---
Original file line number Diff line number Diff line change @@ -95,13 +95,13 @@ iOS 개발용 Xcode를 사용한다는 가정하에 iOS 프로젝트에 Adjust S
9595[ CocoaPods] [ cocoapods ] 를 사용하는 경우, 다음 내용을 ` Podfile ` 에 추가한 후 [ 해당 단계] ( #sdk-integrate ) 를 완료하세요.
9696
9797``` ruby
98- pod ` Adjust` , ` ~> 4.30 .0`
98+ pod ` Adjust` , ` ~> 4.31 .0`
9999```
100100
101101또는:
102102
103103``` 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'
105105```
106106
107107---
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ iOS 개발용 Xcode를 사용한다는 가정하에 iOS 프로젝트에 Adjust S
6464[ CocoaPods] [ cocoapods ] 를 사용하는 경우, 다음 내용을 'Podfile'에 추가한 후 [ 해당 단계] ( #sdk-integrate ) 를 완료하세요.
6565
6666``` ruby
67- pod ' Adjust/WebBridge' , ' ~> 4.30 .0'
67+ pod ' Adjust/WebBridge' , ' ~> 4.31 .0'
6868```
6969
7070---
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
22
33### Initial setup
44
Original file line number Diff line number Diff line change @@ -20,16 +20,16 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
2020 NSString *appToken = kAppToken ;
2121 NSString *environment = ADJEnvironmentSandbox;
2222 ADJConfig *adjustConfig = [ADJConfig configWithAppToken: appToken environment: environment];
23-
23+
2424 // Change the log level.
2525 [adjustConfig setLogLevel: ADJLogLevelVerbose];
26-
26+
2727 // Enable event buffering.
2828 // [adjustConfig setEventBufferingEnabled:YES];
29-
29+
3030 // Set default tracker.
3131 // [adjustConfig setDefaultTracker:@"{TrackerToken}"];
32-
32+
3333 // Send in the background.
3434 // [adjustConfig setSendInBackground:YES];
3535
@@ -38,6 +38,7 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
3838
3939 // Set an attribution delegate.
4040 [adjustConfig setDelegate: self ];
41+ [adjustConfig setLinkMeEnabled: YES ];
4142
4243 // Delay the first session of the SDK.
4344 // [adjustConfig setDelayStart:7];
You can’t perform that action at this time.
0 commit comments