Skip to content

Commit d6f7216

Browse files
authored
Update adobe.md
1 parent a82ee9d commit d6f7216

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

doc/english/adobe.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,17 @@ public class YourApplicationClass extends Application {
2222
public void onAttributionChanged(Attribution attribution) {
2323
Map<String,Object> dataAdjust = new HashMap<String,Object>();
2424

25-
dataAdjust.put("Adjust Network", adjustAttribution.network); // Do not change the key "Adjust Network". This key is being used in the Data Connector Processing Rule
26-
dataAdjust.put("Adjust Campaign", adjustAttribution.campaign); // Do not change the key "Adjust Campaign". This key is being used in the Data Connector Processing Rule
27-
dataAdjust.put("Adjust Adgroup", adjustAttribution.adgroup); // Do not change the key "Adjust Adgroup". This key is being used in the Data Connector Processing Rule
28-
dataAdjust.put("Adjust Creative", adjustAttribution.creative); // Do not change the key "Adjust Creative". This key is being used in the Data Connector Processing Rule
25+
// Do not change the key "Adjust Network". This key is being used in the Data Connector Processing Rule
26+
dataAdjust.put("Adjust Network", adjustAttribution.network);
27+
// Do not change the key "Adjust Campaign". This key is being used in the Data Connector Processing Rule
28+
dataAdjust.put("Adjust Campaign", adjustAttribution.campaign);
29+
// Do not change the key "Adjust Adgroup". This key is being used in the Data Connector Processing Rule
30+
dataAdjust.put("Adjust Adgroup", adjustAttribution.adgroup);
31+
// Do not change the key "Adjust Creative". This key is being used in the Data Connector Processing Rule
32+
dataAdjust.put("Adjust Creative", adjustAttribution.creative);
2933

30-
Analytics.trackAction("Adjust Campaign Data Received",dataAdjust); // Send Data to Adobe using Track Action
34+
// Send Data to Adobe using Track Action
35+
Analytics.trackAction("Adjust Campaign Data Received", dataAdjust);
3136
}
3237
});
3338

@@ -36,7 +41,7 @@ public class YourApplicationClass extends Application {
3641
}
3742
```
3843

39-
Before you implement this interface, please take care to consider [possible conditions for usage of some of your data][attribution_data].
44+
Before you implement this interface, please take care to consider [possible conditions for usage of some of your data][attribution-data].
4045

4146
[attribution-data]: https://github.com/adjust/sdks/blob/master/doc/attribution-data.md
4247
[attribution-callback]: https://github.com/adjust/android_sdk#attribution-callback

0 commit comments

Comments
 (0)