You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+19-13Lines changed: 19 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -257,16 +257,17 @@ The delegate function will get called every time any activity was tracked or
257
257
failed to track. Within the delegate function you have access to the
258
258
`responseData` parameter. Here is a quick summary of its attributes:
259
259
260
-
-`AIActivityKind activityKind` indicates what kind of activity
261
-
was tracked. It has one of these values:
260
+
-`AIActivityKind activityKind` indicates what kind of activity was tracked. It
261
+
has one of these values:
262
262
263
263
```
264
264
AIActivityKindSession
265
265
AIActivityKindEvent
266
266
AIActivityKindRevenue
267
267
```
268
268
269
-
- `NSString activityKindString` human readable version of the activity kind. Possible values:
269
+
- `NSString activityKindString` human readable version of the activity kind.
270
+
Possible values:
270
271
271
272
```
272
273
session
@@ -298,26 +299,31 @@ in the `didFinishLaunching` method of your Application Delegate:
298
299
299
300
### 10. Disable tracking
300
301
301
-
You can disable the adjust SDK from tracking by invoking the method`setEnabled`
302
-
with the enabled parameter as `NO`. This setting is remembered between sessions, but it can only
303
-
be activated after the first session.
302
+
You can disable the adjust SDK from tracking by invoking the method
303
+
`setEnabled`with the enabled parameter as `NO`. This setting is remembered
304
+
between sessions, but it can only be activated after the first session.
304
305
305
306
```objc
306
307
[Adjust setEnabled:NO];
307
308
```
308
309
309
-
You can verify if the adjust SDK is currently active with the method `isEnabled`. It is always possible
310
-
to activate the adjust SDK by invoking `setEnabled` with the enabled parameter as `YES`.
310
+
You can verify if the adjust SDK is currently active with the method
311
+
`isEnabled`. It is always possible to activate the adjust SDK by invoking
312
+
`setEnabled` with the enabled parameter as `YES`.
311
313
312
314
### 11. Handle deep linking
313
315
314
-
You can also set up the adjust sdk to read deep links that come to your app, also known as custom URL schemes in iOS. We will read only the data that is injected by adjust when you use deep links with adjust tracker URLs. This is a core feature if you are planning to run retargeting or re-engagement campaigns with deep links.
316
+
You can also set up the adjust SDK to read deep links that come to your app,
317
+
also known as custom URL schemes in iOS. We will only read the data that is
318
+
injected by adjust tracker URLs. This is essential if you are planning to run
319
+
retargeting or re-engagement campaigns with deep links.
315
320
316
-
In the Project Navigator open the source file your Application Delegate. Find or add the method `openURL` and add the following call to adjust:
321
+
In the Project Navigator open the source file your Application Delegate. Find
322
+
or add the method `openURL` and add the following call to adjust:
0 commit comments