Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Documentation/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ On Experience Platform Data Collection, navigate to **Data Collection** > **Tags
1. Under the **Events** section, click on **Add**.
2. From the **Extension** dropdown list, select **Adobe Experience Platform Edge Network**.
3. From the **Event Type** dropdown list, select **AEP Request Event**.
4. On the right pane, click on **+** to specify **XDM Event Type** equals **personalization.request**.
4. On the right pane, click on **+** to specify **XDM Event Type** equals **decisioning.propositionFetch**.
5. Click on **Keep Changes**.

![Offer Decisioning and Target extension Lifecycle rule Event Configuration](./assets/ajo-decisioning-lifecycle-rule-event.png)
Expand Down
2 changes: 1 addition & 1 deletion code/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ org.gradle.caching=true
android.useAndroidX=true

moduleName=optimize
moduleVersion=3.6.2
moduleVersion=3.7.0

#Maven artifact
mavenRepoName=AdobeMobileOptimizeSdk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public void testUpdatePropositions_validDecisionScope() throws InterruptedExcept
Assert.assertNotNull(edgeEventData);
Assert.assertTrue(edgeEventData.size() > 0);
Assert.assertEquals(
"personalization.request",
"decisioning.propositionFetch",
((Map<String, Object>) edgeEventData.get("xdm")).get("eventType"));
Map<String, Object> personalizationMap =
(Map<String, Object>)
Expand Down Expand Up @@ -222,7 +222,7 @@ public void testUpdatePropositions_validNonEncodedDecisionScope() throws Interru
Assert.assertNotNull(edgeEventData);
Assert.assertTrue(edgeEventData.size() > 0);
Assert.assertEquals(
"personalization.request",
"decisioning.propositionFetch",
((Map<String, Object>) edgeEventData.get("xdm")).get("eventType"));
Map<String, Object> personalizationMap =
(Map<String, Object>)
Expand Down Expand Up @@ -290,7 +290,7 @@ public void testUpdatePropositions_validNonEncodedDecisionScopeWithItemCount()
Assert.assertNotNull(edgeEventData);
Assert.assertTrue(edgeEventData.size() > 0);
Assert.assertEquals(
"personalization.request",
"decisioning.propositionFetch",
((Map<String, Object>) edgeEventData.get("xdm")).get("eventType"));
Map<String, Object> personalizationMap =
(Map<String, Object>)
Expand Down Expand Up @@ -372,7 +372,7 @@ public void testUpdatePropositions_validDecisionScopeWithXdmAndDataAndDatasetId(
Assert.assertTrue(edgeEventData.size() > 0);
Assert.assertEquals(optimizeDatasetId, edgeEventData.get("datasetId"));
Assert.assertEquals(
"personalization.request",
"decisioning.propositionFetch",
((Map<String, Object>) edgeEventData.get("xdm")).get("eventType"));
Assert.assertEquals(
"MyXDMValue", ((Map<String, Object>) edgeEventData.get("xdm")).get("MyXDMKey"));
Expand Down Expand Up @@ -441,7 +441,7 @@ public void testUpdatePropositions_multipleValidDecisionScope() throws Interrupt
Assert.assertNotNull(edgeEventData);
Assert.assertTrue(edgeEventData.size() > 0);
Assert.assertEquals(
"personalization.request",
"decisioning.propositionFetch",
((Map<String, Object>) edgeEventData.get("xdm")).get("eventType"));
Map<String, Object> personalizationMap =
(Map<String, Object>)
Expand Down Expand Up @@ -535,7 +535,7 @@ public void testUpdatePropositions_validAndInvalidDecisionScopes() throws Interr
Assert.assertNotNull(edgeEventData);
Assert.assertTrue(edgeEventData.size() > 0);
Assert.assertEquals(
"personalization.request",
"decisioning.propositionFetch",
((Map<String, Object>) edgeEventData.get("xdm")).get("eventType"));
Map<String, Object> personalizationMap =
(Map<String, Object>)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

public class OptimizeTestConstants {

static final String EXTENSION_VERSION = "3.6.2";
static final String EXTENSION_VERSION = "3.7.0";
public static final String LOG_TAG = "OptimizeTest";
static final String CONFIG_DATA_STORE = "AdobeMobile_ConfigState";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

class OptimizeConstants {
static final String LOG_TAG = "Optimize";
static final String EXTENSION_VERSION = "3.6.2";
static final String EXTENSION_VERSION = "3.7.0";
static final String EXTENSION_NAME = "com.adobe.optimize";
static final String FRIENDLY_NAME = "Optimize";
static final double GET_RESPONSE_CALLBACK_TIMEOUT = 10;
Expand Down Expand Up @@ -170,7 +170,7 @@ private JsonKeys() {}
}

static final class JsonValues {
static final String EE_EVENT_TYPE_PERSONALIZATION = "personalization.request";
static final String EE_EVENT_TYPE_PERSONALIZATION = "decisioning.propositionFetch";
static final String EE_EVENT_TYPE_PROPOSITION_DISPLAY = "decisioning.propositionDisplay";
static final String EE_EVENT_TYPE_PROPOSITION_INTERACT = "decisioning.propositionInteract";

Expand Down
Loading