diff --git a/.github/scripts/update-release-notes.js b/.github/scripts/update-release-notes.js index 4d262888f9..67d8911272 100644 --- a/.github/scripts/update-release-notes.js +++ b/.github/scripts/update-release-notes.js @@ -101,7 +101,7 @@ var reqGet = https.request(options, function(res) { const monthNames = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October","November","December"] const fullMonth = monthNames[month] - const releaseMdPath = "./src/pages/documentation/release-notes/index.md"; + const releaseMdPath = "./src/pages/home/release-notes/index.md"; const releaseNotesHeader = "# Release notes"; // Read the contents of the markdown file. @@ -166,7 +166,7 @@ function updateBOMReleaseNotesForAdobeIO(releaseNotesString) { function releaseFileContainsLineStartWith(lineStartWithString){ try { - execSync(`grep -E "^${lineStartWithString}" ./src/pages/documentation/release-notes/index.md`, { stdio: 'ignore' }); + execSync(`grep -E "^${lineStartWithString}" ./src/pages/home/release-notes/index.md`, { stdio: 'ignore' }); return true; } catch (e) { return false; diff --git a/.github/workflows/release-pr.yml b/.github/workflows/release-pr.yml index fe42e7e973..d3f916d9eb 100644 --- a/.github/workflows/release-pr.yml +++ b/.github/workflows/release-pr.yml @@ -43,11 +43,11 @@ jobs: - name: Check release-notes/index.md run: | - if git diff --exit-code ./src/pages/documentation/release-notes/index.md; then + if git diff --exit-code ./src/pages/home/release-notes/index.md; then gh run cancel ${{ github.run_id }} gh run watch ${{ github.run_id }} else - echo "./src/pages/documentation/release-notes/index.md -> no update" + echo "./src/pages/home/release-notes/index.md -> no update" fi env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/gatsby-config.js b/gatsby-config.js index 5ed97f0d34..efce9dd634 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -11,623 +11,612 @@ */ module.exports = { siteMetadata: { - versions: [ - { + versions: [{ title: 'Latest version', - path: '/client-sdks/documentation/', + path: '/client-sdks/', selected: true - }, - { + }, + { title: 'Previous versions', path: '/client-sdks/previous-versions/' - } - ], - pages: [{ - title: 'Documentation', - path: '/documentation', - }], + } + ], + pages: [ + { + title: "Home", + path: "/home" + }, + { + title: 'Edge Network extensions', + path: '/edge', + }, + { + title: "Solution-specific extensions", + path: "/solution" + }, + { + title: "Resources", + path: "/resources" + } + ], subPages: [ { title: "Home", - path: "/documentation" + path: "/home" }, { title: "Current SDK versions", - path: "documentation/current-sdk-versions" + path: "/home/current-sdk-versions" }, { title: "Release notes", - path: "/documentation/release-notes", - pages: [ - { + path: "/home/release-notes", + pages: [{ title: "2023", - path: "/documentation/release-notes" + path: "/home/release-notes" }, { title: "2022", - path: "/documentation/release-notes/2022" + path: "/home/release-notes/2022" }, { title: "2021", - path: "/documentation/release-notes/2021" + path: "/home/release-notes/2021" } ] }, { title: "Getting started", - path: "/documentation/getting-started", - pages: [ - { + path: "/home/getting-started", + pages: [{ title: "Overview", - path: "/documentation/getting-started" + path: "/home/getting-started" }, { title: "Set up schemas and datasets", - path: "/documentation/getting-started/set-up-schemas-and-datasets" + path: "/home/getting-started/set-up-schemas-and-datasets" }, { title: "Configure datastreams", - path: "/documentation/getting-started/configure-datastreams" + path: "/home/getting-started/configure-datastreams" }, { title: "Set up a mobile property", - path: "/documentation/getting-started/create-a-mobile-property" + path: "/home/getting-started/create-a-mobile-property" }, { title: "Get the Experience Platform SDK", - path: "/documentation/getting-started/get-the-sdk" + path: "/home/getting-started/get-the-sdk" }, { title: "Debugging and lifecycle metrics", - path: "/documentation/getting-started/enable-debug-logging" + path: "/home/getting-started/enable-debug-logging" }, { title: "Track events", - path: "/documentation/getting-started/track-events" + path: "/home/getting-started/track-events" }, { title: "Validation and next steps", - path: "/documentation/getting-started/validate" + path: "/home/getting-started/validate" } ] }, { - title: "Mobile Foundation extensions", - path: "/documentation/mobile-foundation-extensions", + title: "Edge Network extensions", + path: "/edge", pages: [ { - title: "Overview", - path: "/documentation/mobile-foundation-extensions" - }, - { - title: "Mobile Core", - path: "/documentation/mobile-core", - pages: [ - { + title: "Adobe Experience Platform Edge Network", + path: "/edge/edge-network", + pages: [{ title: "Overview", - path: "/documentation/mobile-core" + path: "/edge/edge-network" }, { - title: "Configuration", - path: "documentation/mobile-core/configuration", - pages: [ - { - title: "Overview", - path: "documentation/mobile-core/configuration" - }, - { - title: "API reference", - path: "documentation/mobile-core/configuration/api-reference" - } - ] + title: "API reference", + path: "/edge/edge-network/api-reference" }, { - title: "Identity", - path: "documentation/mobile-core/identity", - pages: [ - { - title: "Overview", - path: "documentation/mobile-core/identity" - }, - { - title: "API reference", - path: "documentation/mobile-core/identity/api-reference" - }, - { - title: "Push identifier sync", - path: "documentation/mobile-core/identity/push-sync" - } - ] + title: "XDM Experience Events", + path: "/edge/edge-network/xdm-experience-events" }, { - title: "Lifecycle", - path: "documentation/mobile-core/lifecycle", - pages: [ - { - title: "Overview", - path: "documentation/mobile-core/lifecycle" - }, - { - title: "Lifecycle extension in Android", - path: "documentation/mobile-core/lifecycle/android" - }, - { - title: "Lifecycle extension in iOS", - path: "documentation/mobile-core/lifecycle/ios" - }, - { - title: "API reference", - path: "documentation/mobile-core/lifecycle/api-reference" - }, - { - title: "Metrics", - path: "documentation/mobile-core/lifecycle/metrics" - }, - { - title: "Configuration keys", - path: "documentation/mobile-core/lifecycle/configuration-keys" - } - ] + title: "Validation", + path: "/edge/edge-network/validation" }, { - title: "Platform services", - path: "documentation/mobile-core/platform-services", - pages: [ - { - title: "Overview", - path: "documentation/mobile-core/platform-services" - }, - { - title: "Network service", - path: "documentation/mobile-core/platform-services/network-service" - } - ] + title: "Release notes", + path: "/edge/edge-network/release-notes" + } + ] + }, + { + title: "Adobe Journey Optimizer", + path: "/edge/adobe-journey-optimizer", + pages: [{ + title: "Overview", + path: "/edge/adobe-journey-optimizer" }, { - title: "Rules Engine", - path: "documentation/mobile-core/rules-engine", - pages: [ - { - title: "Overview", - path: "documentation/mobile-core/rules-engine" + title: "API reference", + path: "/edge/adobe-journey-optimizer/api-reference" + }, + { + title: "Release notes", + path: "/edge/adobe-journey-optimizer/release-notes" + }, + { + title: "Public classes and enums", + path: "/edge/adobe-journey-optimizer/public-classes" + }, + { + title: "Tutorials", + path: "/edge/adobe-journey-optimizer/tutorials", + pages: [{ + title: "Implement a MessagingDelegate", + path: "/edge/adobe-journey-optimizer/tutorials/messaging-delegate" }, { - title: "Technical details", - path: "documentation/mobile-core/rules-engine/technical-details" + title: "Call native code from the JavaScript of an in-app message", + path: "/edge/adobe-journey-optimizer/tutorials/native-from-javascript" }, { - title: "Consequence details", - path: "documentation/mobile-core/rules-engine/consequence-details" - } - ] - }, - { - title: "Signal", - path: "documentation/mobile-core/signal", - pages: [ - { - title: "Overview", - path: "documentation/mobile-core/signal" + title: "Execute Javascript methods from native code", + path: "/edge/adobe-journey-optimizer/tutorials/javascript-from-native" }, { - title: "API reference", - path: "documentation/mobile-core/signal/api-reference" + title: "Handle URL clicks from an in-app message", + path: "/edge/adobe-journey-optimizer/tutorials/handle-clicks" }, { - title: "Signal and Rules Engine integration", - path: "documentation/mobile-core/signal/rules-engine-integration.md" + title: "Validate in-app messaging using Assurance", + path: "/edge/adobe-journey-optimizer/tutorials/validate-messages" } ] + } + ] + }, + { + title: "Adobe Journey Optimizer Decisioning", + path: "/edge/adobe-journey-optimizer-decisioning", + pages: [{ + title: "Overview", + path: "/edge/adobe-journey-optimizer-decisioning" }, { title: "API reference", - path: "documentation/mobile-core/api-reference" + path: "/edge/adobe-journey-optimizer-decisioning/api-reference" }, { title: "Release notes", - path: "documentation/mobile-core/release-notes" + path: "/edge/adobe-journey-optimizer-decisioning/release-notes" } ] }, { - title: "Adobe Experience Platform Edge Network", - path: "/documentation/edge-network", - pages: [ - { + title: "Adobe Streaming Media for Edge Network", + path: "/edge/media-for-edge-network", + pages: [{ title: "Overview", - path: "/documentation/edge-network" + path: "/edge/media-for-edge-network" }, { title: "API reference", - path: "/documentation/edge-network/api-reference" - }, - { - title: "XDM Experience Events", - path: "/documentation/edge-network/xdm-experience-events" - }, - { - title: "Validation", - path: "/documentation/edge-network/validation" + path: "/edge/media-for-edge-network/api-reference" }, { - title: "Release notes", - path: "/documentation/edge-network/release-notes" + title: 'Release notes', + path: '/edge/media-for-edge-network/release-notes' } ] }, { title: "Consent for Edge Network", - path: "/documentation/consent-for-edge-network", - pages: [ - { + path: "/edge/consent-for-edge-network", + pages: [{ title: "Overview", - path: "/documentation/consent-for-edge-network" + path: "/edge/consent-for-edge-network" }, { title: "API reference", - path: "documentation/consent-for-edge-network/api-reference" + path: "/edge/consent-for-edge-network/api-reference" }, { title: "Release notes", - path: "documentation/consent-for-edge-network/release-notes" + path: "/edge/consent-for-edge-network/release-notes" } ] }, { title: "Identity for Edge Network", - path: "/documentation/identity-for-edge-network", - pages: [ - { + path: "/edge/identity-for-edge-network", + pages: [{ title: "Overview", - path: "/documentation/identity-for-edge-network" + path: "/edge/identity-for-edge-network" }, { title: "API reference", - path: "documentation/identity-for-edge-network/api-reference" + path: "/edge/identity-for-edge-network/api-reference" }, { title: "Frequently asked questions", - path: "documentation/identity-for-edge-network/faq" + path: "/edge/identity-for-edge-network/faq" }, { title: "Release notes", - path: "documentation/identity-for-edge-network/release-notes" + path: "/edge/identity-for-edge-network/release-notes" } ] }, + { title: "Lifecycle for Edge Network", - path: "/documentation/lifecycle-for-edge-network", - pages: [ - { + path: "/edge/lifecycle-for-edge-network", + pages: [{ title: "Overview", - path: "/documentation/lifecycle-for-edge-network" + path: "/edge/lifecycle-for-edge-network" }, { title: "API reference", - path: "documentation/lifecycle-for-edge-network/api-reference" + path: "/edge/lifecycle-for-edge-network/api-reference" }, { title: "Event reference", - path: "documentation/lifecycle-for-edge-network/event-reference" + path: "/edge/lifecycle-for-edge-network/event-reference" }, { title: "Metrics", - path: "documentation/lifecycle-for-edge-network/metrics" + path: "/edge/lifecycle-for-edge-network/metrics" } ] - }, - { - title: "Adobe Experience Platform Assurance", - path: "/documentation/platform-assurance-sdk", - pages: [ - { - title: "Overview", - path: "/documentation/platform-assurance-sdk" - }, - { - title: "API reference", - path: "/documentation/platform-assurance-sdk/api-reference" - }, - { - title: "Resolving common issues", - path: "/documentation/platform-assurance-sdk/common-issues/" - }, - { - title: "Release notes", - path: "/documentation/platform-assurance-sdk/release-notes" - } - ] - }, - - - { - title: "Adobe Experience Platform Location Service", - path: "/documentation/places", - pages: [ - { - title: "Overview", - path: "/documentation/places" - }, - { - title: "API reference", - path: "documentation/places/api-reference.md" - }, - { - title: "Event forwarding to Adobe Experience Platform", - path: "documentation/places/places-to-platform.md" - }, - { - title: "Release notes", - path: "documentation/places/release-notes.md" } + ] }, { - title: "Profile", - path: "/documentation/profile", - pages: [ - { - title: "Overview", - path: "/documentation/profile" - }, - { - title: "API reference", - path: "documentation/profile/api-reference" - }, - { - title: "Release notes", - path: "documentation/profile/release-notes" - } - ] - } - ] - }, - { - title: "Experience Cloud extensions", - path: "/documentation/experience-cloud-extensions", - pages: [ - { - title: "Overview", - path: "/documentation/experience-cloud-extensions" - }, - { + title: "Solution specific extensions", + path: "/solution", + pages: [{ title: 'Adobe Analytics', - path: '/documentation/adobe-analytics/', - pages: [ - { + path: '/solution/adobe-analytics/', + pages: [{ title: "Overview", - path: "/documentation/adobe-analytics" + path: "/solution/adobe-analytics" }, { title: 'Migrate to Edge Network', - path: '/documentation/adobe-analytics/migrate-to-edge-network' + path: '/solution/adobe-analytics/migrate-to-edge-network' }, { title: "API reference", - path: "/documentation/adobe-analytics/api-reference" + path: "/solution/adobe-analytics/api-reference" }, { title: 'Event reference', - path: '/documentation/adobe-analytics/event-reference' + path: '/solution/adobe-analytics/event-reference' }, { title: "Product variable", - path: "/documentation/adobe-analytics/product-variable" + path: "/solution/adobe-analytics/product-variable" }, { title: "Tracking beacons", - path: "/documentation/adobe-analytics/track-beacon" + path: "/solution/adobe-analytics/track-beacon" }, { title: "Frequently asked questions", - path: "/documentation/adobe-analytics/faq" + path: "/solution/adobe-analytics/faq" }, { title: 'Release notes', - path: '/documentation/adobe-analytics/release-notes' + path: '/solution/adobe-analytics/release-notes' } ] }, { - title: "Adobe Streaming Media for Edge Network", - path: "/documentation/media-for-edge-network", - pages: [ - { + title: "Adobe Audience Manager", + path: "/solution/adobe-audience-manager/", + pages: [{ title: "Overview", - path: "/documentation/media-for-edge-network" + path: "/solution/adobe-audience-manager/" }, { title: "API reference", - path: "documentation/media-for-edge-network/api-reference" + path: "/solution/adobe-audience-manager/api-reference" }, { - title: 'Release notes', - path: '/documentation/media-for-edge-network/release-notes' + title: "Event reference", + path: "/solution/adobe-audience-manager/event-reference" + }, + { + title: "Release notes", + path: "/solution/adobe-audience-manager/release-notes" } ] }, { - title: "Adobe Media Analytics", - path: "/documentation/adobe-media-analytics", - pages: [ - { + title: "Adobe Campaign Classic", + path: "/solution/adobe-campaign-classic", + pages: [{ title: "Overview", - path: "/documentation/adobe-media-analytics" + path: "/solution/adobe-campaign-classic" }, { title: "API reference", - path: "documentation/adobe-media-analytics/api-reference" + path: "/solution/adobe-campaign-classic/api-reference" }, { - title: "Release notes", - path: "documentation/adobe-media-analytics/release-notes" + title: "Event reference", + path: "/solution/adobe-campaign-classic/event-reference" }, { - title: "Migration Guide", - path: "/documentation/adobe-media-analytics/migration-guide" - }, + title: "Release notes", + path: "/solution/adobe-campaign-classic/release-notes" + } ] }, { - title: "Adobe Audience Manager", - path: "/documentation/adobe-audience-manager/", - pages: [ - { + title: "Adobe Campaign Standard", + path: "/solution/adobe-campaign-standard", + pages: [{ title: "Overview", - path: "/documentation/adobe-audience-manager/" + path: "/solution/adobe-campaign-standard" }, { title: "API reference", - path: "documentation/adobe-audience-manager/api-reference" + path: "/solution/adobe-campaign-standard/api-reference" }, { title: "Event reference", - path: "documentation/adobe-audience-manager/event-reference" + path: "/solution/adobe-campaign-standard/event-reference" + }, + { + title: "Campaign push notifications", + path: "/solution/adobe-campaign-standard/push-notifications" }, { title: "Release notes", - path: "/documentation/adobe-audience-manager/release-notes" + path: "/solution/adobe-campaign-standard/release-notes" } ] }, + { - title: "Adobe Campaign Classic", - path: "/documentation/adobe-campaign-classic", - pages: [ - { + title: "Adobe Media Analytics", + path: "/solution/adobe-media-analytics", + pages: [{ title: "Overview", - path: "/documentation/adobe-campaign-classic" + path: "/solution/adobe-media-analytics" }, { title: "API reference", - path: "documentation/adobe-campaign-classic/api-reference" + path: "/solution/adobe-media-analytics/api-reference" }, { - title: "Event reference", - path: "documentation/adobe-campaign-classic/event-reference" + title: "Release notes", + path: "/solution/adobe-media-analytics/release-notes" }, { - title: "Release notes", - path: "documentation/adobe-campaign-classic/release-notes" - } + title: "Migration Guide", + path: "/solution/adobe-media-analytics/migration-guide" + }, ] }, { - title: "Adobe Campaign Standard", - path: "/documentation/adobe-campaign-standard", - pages: [ - { + title: "Adobe Target", + path: "/solution/adobe-target", + pages: [{ title: "Overview", - path: "/documentation/adobe-campaign-standard" + path: "/solution/adobe-target" }, { title: "API reference", - path: "documentation/adobe-campaign-standard/api-reference" + path: "/solution/adobe-target/api-reference" }, { - title: "Event reference", - path: "documentation/adobe-campaign-standard/event-reference" + title: "Raw API reference", + path: "/solution/adobe-target/raw-api-reference" }, { - title: "Campaign push notifications", - path: "documentation/adobe-campaign-standard/push-notifications" + title: "Event reference", + path: "/solution/adobe-target/event-reference" }, { title: "Release notes", - path: "documentation/adobe-campaign-standard/release-notes" + path: "/solution/adobe-target/release-notes" } ] }, { - title: "Adobe Journey Optimizer", - path: "/documentation/adobe-journey-optimizer", - pages: [ - { + title: "Adobe Experience Platform Location Service", + path: "/solution/places", + pages: [{ title: "Overview", - path: "/documentation/adobe-journey-optimizer" + path: "/solution/places" }, { title: "API reference", - path: "documentation/adobe-journey-optimizer/api-reference" + path: "/solution/places/api-reference.md" + }, + { + title: "Event forwarding to Adobe Experience Platform", + path: "/solution/places/places-to-platform.md" }, { title: "Release notes", - path: "documentation/adobe-journey-optimizer/release-notes" + path: "/solution/places/release-notes.md" + } + ] + } + ] + }, + { + title: "Base extensions", + path: "/home/base", + pages: [{ + title: "Overview", + path: "/home/base" + }, + { + title: "Mobile Core", + path: "/home/base/mobile-core", + pages: [{ + title: "Overview", + path: "/home/base/mobile-core" }, { - title: "Public classes and enums", - path: "documentation/adobe-journey-optimizer/public-classes" + title: "Configuration", + path: "/home/base/mobile-core/configuration", + pages: [{ + title: "Overview", + path: "/home/base/mobile-core/configuration" + }, + { + title: "API reference", + path: "/home/base/mobile-core/configuration/api-reference" + } + ] }, { - title: "Tutorials", - path: "documentation/adobe-journey-optimizer/tutorials", - pages: [ + title: "Identity", + path: "/home/base/mobile-core/identity", + pages: [{ + title: "Overview", + path: "/home/base/mobile-core/identity" + }, { - title: "Implement a MessagingDelegate", - path: "/documentation/adobe-journey-optimizer/tutorials/messaging-delegate" + title: "API reference", + path: "/home/base/mobile-core/identity/api-reference" }, { - title: "Call native code from the JavaScript of an in-app message", - path: "/documentation/adobe-journey-optimizer/tutorials/native-from-javascript" + title: "Push identifier sync", + path: "/home/base/mobile-core/identity/push-sync" + } + ] + }, + { + title: "Lifecycle", + path: "/home/base/mobile-core/lifecycle", + pages: [{ + title: "Overview", + path: "/home/base/mobile-core/lifecycle" }, { - title: "Execute Javascript methods from native code", - path: "/documentation/adobe-journey-optimizer/tutorials/javascript-from-native" + title: "Lifecycle extension in Android", + path: "/home/base/mobile-core/lifecycle/android" }, { - title: "Handle URL clicks from an in-app message", - path: "/documentation/adobe-journey-optimizer/tutorials/handle-clicks" + title: "Lifecycle extension in iOS", + path: "/home/base/mobile-core/lifecycle/ios" }, { - title: "Validate in-app messaging using Assurance", - path: "/documentation/adobe-journey-optimizer/tutorials/validate-messages" + title: "API reference", + path: "/home/base/mobile-core/lifecycle/api-reference" + }, + { + title: "Metrics", + path: "/home/base/mobile-core/lifecycle/metrics" + }, + { + title: "Configuration keys", + path: "/home/base/mobile-core/lifecycle/configuration-keys" } ] - } - ] - }, - { - title: "Adobe Journey Optimizer Decisioning", - path: "/documentation/adobe-journey-optimizer-decisioning", - pages: [ + }, { - title: "Overview", - path: "/documentation/adobe-journey-optimizer-decisioning" + title: "Platform services", + path: "/home/base/mobile-core/platform-services", + pages: [{ + title: "Overview", + path: "/home/base/mobile-core/platform-services" + }, + { + title: "Network service", + path: "/home/base/mobile-core/platform-services/network-service" + } + ] + }, + { + title: "Rules Engine", + path: "/home/base/mobile-core/rules-engine", + pages: [{ + title: "Overview", + path: "/home/base/mobile-core/rules-engine" + }, + { + title: "Technical details", + path: "/home/base/mobile-core/rules-engine/technical-details" + }, + { + title: "Consequence details", + path: "/home/base/mobile-core/rules-engine/consequence-details" + } + ] + }, + { + title: "Signal", + path: "/home/base/mobile-core/signal", + pages: [{ + title: "Overview", + path: "/home/base/mobile-core/signal" + }, + { + title: "API reference", + path: "/home/base/mobile-core/signal/api-reference" + }, + { + title: "Signal and Rules Engine integration", + path: "/home/base/mobile-core/signal/rules-engine-integration.md" + } + ] }, { title: "API reference", - path: "documentation/adobe-journey-optimizer-decisioning/api-reference" + path: "/home/base/mobile-core/api-reference" }, { title: "Release notes", - path: "documentation/adobe-journey-optimizer-decisioning/release-notes" + path: "/home/base/mobile-core/release-notes" } ] }, { - title: "Adobe Target", - path: "/documentation/adobe-target", - pages: [ - { + title: "Adobe Experience Platform Assurance", + path: "/home/base/assurance", + pages: [{ title: "Overview", - path: "/documentation/adobe-target" + path: "/home/base/assurance" }, { title: "API reference", - path: "documentation/adobe-target/api-reference" + path: "/home/base/assurance/api-reference" }, { - title: "Raw API reference", - path: "documentation/adobe-target/raw-api-reference" + title: "Resolving common issues", + path: "/home/base/assurance/common-issues/" }, { - title: "Event reference", - path: "documentation/adobe-target/event-reference" + title: "Release notes", + path: "/home/base/assurance/release-notes" + } + ] + }, + + { + title: "Profile", + path: "/home/base/profile", + pages: [{ + title: "Overview", + path: "/home/base/profile" + }, + { + title: "API reference", + path: "/home/base/profile/api-reference" }, { title: "Release notes", - path: "documentation/adobe-target/release-notes" + path: "/home/base/profile/release-notes" } ] } @@ -635,118 +624,114 @@ module.exports = { }, { title: "Resources", - path: "/documentation/resources", - pages: [ - { + path: "/resources", + pages: [{ title: "Overview", - path: "documentation/resources" + path: "/resources" }, { title: "Aligning major SDK versions", - path: "documentation/resources/major-version-alignment" + path: "/resources/major-version-alignment" }, { title: "Manage Gradle dependencies", - path: "documentation/resources/manage-gradle-dependencies" + path: "/resources/manage-gradle-dependencies" }, { title: "Manage SPM dependencies", - path: "documentation/resources/manage-spm-dependencies" + path: "/resources/manage-spm-dependencies" }, { title: "Privacy and GDPR", - path: "documentation/resources/privacy-and-gdpr" + path: "/resources/privacy-and-gdpr" }, { title: "Frequently asked questions", - path: "documentation/resources/faq" + path: "/resources/faq" }, { title: "ACP SDKs end-of-support", - path: "/documentation/resources/acp-end-of-support" + path: "/resources/acp-end-of-support" }, { title: "Adobe Mobile Library (v4) end-of-support", - path: "documentation/resources/upgrade-platform-sdks", - pages: [ - { + path: "/resources/upgrade-platform-sdks", + pages: [{ title: "Overview", - path: "documentation/resources/upgrade-platform-sdks" + path: "/resources/upgrade-platform-sdks" }, { title: "v4 SDK comparison", - path: "documentation/resources/upgrade-platform-sdks/comparison" + path: "/resources/upgrade-platform-sdks/comparison" }, { title: "v4 API changelog", - path: "documentation/resources/upgrade-platform-sdks/api-changelog.md" + path: "/resources/upgrade-platform-sdks/api-changelog.md" }, { title: "Manual Lifecycle implementation", - path: "documentation/resources/upgrade-platform-sdks/lifecycle" + path: "/resources/upgrade-platform-sdks/lifecycle" }, { title: "Analytics migration", - path: "documentation/resources/upgrade-platform-sdks/analytics.md" + path: "/resources/upgrade-platform-sdks/analytics.md" }, { title: "Frequently asked questions", - path: "documentation/resources/upgrade-platform-sdks/v4-faq" + path: "/resources/upgrade-platform-sdks/v4-faq" } ] }, { title: "Adobe Experience Cloud & Apple's IDFA, Privacy announcement", - path: "documentation/resources/privacy-announcement" + path: "/resources/privacy-announcement" } ] }, { title: "User guides", - path: "documentation/user-guides", - pages: [ - { + path: "/resources/user-guides", + pages: [{ title: "Overview", - path: "documentation/user-guides" + path: "/resources/user-guides" }, { title: "Getting started with Platform", - path: "documentation/user-guides/getting-started-with-platform/overview", - pages: [ - { + path: "/resources/user-guides/getting-started-with-platform/overview", + pages: [{ title: "Overview", - path: "documentation/user-guides/getting-started-with-platform/overview" + path: "/resources/user-guides/getting-started-with-platform/overview" }, { title: "Sample XDM implementation", - path: "documentation/user-guides/getting-started-with-platform/sample-xdm-implementation" + path: "/resources/user-guides/getting-started-with-platform/sample-xdm-implementation" }, { title: "Rules and XDM events", - path: "documentation/user-guides/getting-started-with-platform/rules-and-xdm-events" + path: "/resources/user-guides/getting-started-with-platform/rules-and-xdm-events" } ] }, { title: "Attach data to SDK events", - path: "documentation/user-guides/attach-data" + path: "/resources/user-guides/attach-data" }, { title: "Modify data in SDK events", - path: "documentation/user-guides/modify-data" + path: "/resources/user-guides/modify-data" }, { title: "Tags data elements", - path: "documentation/user-guides/tags-data-elements" + path: "/resources/user-guides/tags-data-elements" }, { title: "iOS App Extensions", - path: "documentation/user-guides/app-extension" + path: "/resources/user-guides/app-extension" }, { title: "Building mobile extensions", - path: "documentation/user-guides/building-mobile-extensions" + path: "/resources/user-guides/building-mobile-extensions" } ] } @@ -754,4 +739,4 @@ module.exports = { }, plugins: [`@adobe/gatsby-theme-aio`], pathPrefix: process.env.PATH_PREFIX || '/client-sdks/' -}; +}; \ No newline at end of file diff --git a/src/pages/documentation/current-sdk-versions.md b/src/pages/documentation/current-sdk-versions.md deleted file mode 100644 index f4ac22f000..0000000000 --- a/src/pages/documentation/current-sdk-versions.md +++ /dev/null @@ -1,162 +0,0 @@ ---- -title: Current SDK versions -description: An overview that shows the currently available mobile extensions, along with their versions, for each platform. -keywords: -- Guide -- Versions ---- - -# Current SDK versions - -## Android - - - -**Migrate to latest Mobile SDKs for Android**
If you are currently using the Mobile Core 1.x and the compatible libraries, please see the [Migrating to latest Mobile SDKs for Android](https://developer.adobe.com/client-sdks/previous-versions/documentation/migrate-to-android/) guide for next steps.
The latest Mobile SDKs for Android support Google Android API 19 (KitKat) or later. - - - -**Start using the BOM artifact for Android**
The Adobe SDK BOM artifact enables managing all compatible versions of Adobe Experience Platform Android extensions by specifying a single BOM version. This is now the recommended way to manage Android SDKs. For the installation instructions, see the steps to [add dependencies to your project](https://developer.adobe.com/client-sdks/documentation/getting-started/get-the-sdk/#installation-instructions). The BOM project is open-sourced. For more information, please refer to the [README](https://github.com/adobe/aepsdk-commons/blob/main/android/aepsdk-bom/README.md) file located in the public repository. - -### Android BOM - -
- -
- -descriptive text - -
- -The Android BOM (Bill of Materials) artifact has been released to Maven Central. The above Maven Badge displays the latest BOM version. To obtain information about which Android extension versions are mapped to the latest BOM, refer to the [release notes](https://developer.adobe.com/client-sdks/documentation/release-notes/). - -### Android extensions - -
- -| Extension | Maven | Github | -|---|---|---| -| [Mobile Core](../mobile-core/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/core.svg?logo=android&logoColor=white&label=core&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/core) | [Link](https://github.com/adobe/aepsdk-core-android) | -| [Rules Engine](../mobile-core/rules-engine/index.md) | Bundled in Mobile Core | — | -| [Signal](../mobile-core/signal/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/signal.svg?logo=android&logoColor=white&label=signal&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/signal) | [Link](https://github.com/adobe/aepsdk-core-android) | -| [Lifecycle](../mobile-core/lifecycle/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/lifecycle.svg?logo=android&logoColor=white&label=lifecycle&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/lifecycle) | [Link](https://github.com/adobe/aepsdk-core-android) | -| [Identity](../mobile-core/identity/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/identity.svg?logo=android&logoColor=white&label=identity&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/identity) | [Link](https://github.com/adobe/aepsdk-core-android) | -| [Profile](../profile/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/userprofile.svg?logo=android&logoColor=white&label=userprofile&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/userprofile) | [Link](https://github.com/adobe/aepsdk-userprofile-android) | -| [Adobe Experience Platform Assurance](../platform-assurance-sdk/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/assurance.svg?logo=android&logoColor=white&label=assurance&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/assurance) | [Link](https://github.com/adobe/aepsdk-assurance-android) | -| [Adobe Experience Platform Edge Network](../edge-network/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/edge.svg?logo=android&logoColor=white&label=edge&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/edge) | [Link](https://github.com/adobe/aepsdk-edge-android) | -| [Identity for Edge Network](../identity-for-edge-network/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/edgeidentity.svg?logo=android&logoColor=white&label=edgeidentity&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/edgeidentity) | [Link](https://github.com/adobe/aepsdk-edgeidentity-android) | -| [Consent for Edge Network](../consent-for-edge-network/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/edgeconsent.svg?logo=android&logoColor=white&label=edgeconsent&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/edgeconsent) | [Link](https://github.com/adobe/aepsdk-edgeconsent-android) | -| [Media for Edge Network](../media-for-edge-network/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/edgemedia.svg?logo=android&logoColor=white&label=edgemedia&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/edgemedia) | [Link](https://github.com/adobe/aepsdk-edgemedia-android) | -| [Edge Bridge](../adobe-analytics/migrate-to-edge-network.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/edgebridge.svg?logo=android&logoColor=white&label=edgebridge&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/edgebridge) | [Link](https://github.com/adobe/aepsdk-edgebridge-android) | -| [Adobe Journey Optimizer](../adobe-journey-optimizer/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/messaging.svg?logo=android&logoColor=white&label=messaging&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/messaging) | [Link](https://github.com/adobe/aepsdk-messaging-android) | -| [Adobe Journey Optimizer - Decisioning](../adobe-journey-optimizer-decisioning/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/optimize.svg?logo=android&logoColor=white&label=optimize&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/optimize) | [Link](https://github.com/adobe/aepsdk-optimize-android) | -| [Places Service](https://experienceleague.adobe.com/docs/places/using/home.html) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/places.svg?logo=android&logoColor=white&label=places&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/places) | [Link](https://github.com/adobe/aepsdk-places-android) | -| [Adobe Analytics](../adobe-analytics/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/analytics.svg?logo=android&logoColor=white&label=analytics&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/analytics) | [Link](https://github.com/adobe/aepsdk-analytics-android) | -| [Adobe Analytics - Media Analytics for Audio & Video](../adobe-media-analytics/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/media.svg?logo=android&logoColor=white&label=media&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/media) | [Link](https://github.com/adobe/aepsdk-media-android) | -| [Adobe Target](../adobe-target/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/target.svg?logo=android&logoColor=white&label=target&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/target) | [Link](https://github.com/adobe/aepsdk-target-android) | -| [Adobe Campaign Standard](../adobe-campaign-standard/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/campaign.svg?logo=android&logoColor=white&label=campaign&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/campaign) | [Link](https://github.com/adobe/aepsdk-campaign-android) | -| [Adobe Campaign Classic](../adobe-campaign-classic/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/campaignclassic.svg?logo=android&logoColor=white&label=campaignclassic&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/campaignclassic) | [Link](https://github.com/adobe/aepsdk-campaignclassic-android) | -| [Adobe Audience Manager](../adobe-audience-manager/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/audience.svg?logo=android&logoColor=white&label=audience&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/audience) | [Link](https://github.com/adobe/aepsdk-audience-android) | -| Adobe Analytics - Mobile Services | Deprecated | | -| Places Monitor | Deprecated | | - -## iOS - - - -**Migrate to latest Mobile SDKs for iOS**
If you are currently using the Objective-C (ACP-prefix) libraries, please see the [Migrating to latest Mobile SDKs for iOS](https://developer.adobe.com/client-sdks/previous-versions/documentation/migrate-to-swift/) guide for next steps.
The latest Mobile SDK for iOS supports iOS 11 or later; requires Swift 5.1 or newer and Xcode 14.1 or newer. In addition to **CocoaPods**, **Swift Package Manager (SPM)** installation option is supported with the latest iOS Swift SDKs! Find more details at the GitHub links below. - -| Extension | tvOS | App Extension | CocoaPods | GitHub | -|---|---|---|---|---| -| [Mobile Core](../mobile-core/index.md) | ✔️ | ✔️ | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-core-ios.svg?label=AEPCore&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPCore) | [Link](https://github.com/adobe/aepsdk-core-ios) | -| [Rules Engine](../mobile-core/rules-engine/index.md) | ✔️ | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-rulesengine-ios.svg?label=AEPRulesEngine&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPRulesEngine) | [Link](https://github.com/adobe/aepsdk-rulesengine-ios) | -| [Signal](../mobile-core/signal/index.md) | ✔️ | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-core-ios.svg?label=AEPSignal&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPSignal) | [Link](https://github.com/adobe/aepsdk-core-ios) | -| [Identity](../mobile-core/identity/index.md) | ✔️ | ✔️ | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-core-ios.svg?label=AEPIdentity&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPIdentity) | [Link](https://github.com/adobe/aepsdk-core-ios) | -| [Lifecycle](../mobile-core/lifecycle/index.md) | ✔️ | ✔️ | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-core-ios.svg?label=AEPLifecycle&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPLifecycle) | [Link](https://github.com/adobe/aepsdk-core-ios) | -| [Profile](../profile/index.md) | | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-userprofile-ios.svg?label=AEPUserProfile&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPUserProfile) | [Link](https://github.com/adobe/aepsdk-userprofile-ios) | -| [Adobe Experience Platform Assurance](../platform-assurance-sdk/index.md) | | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-assurance-ios.svg?label=AEPAssurance&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPAssurance) | [Link](https://github.com/adobe/aepsdk-assurance-ios) | -| [Adobe Experience Platform Edge Network](../edge-network/index.md) | ✔️ | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-edge-ios.svg?label=AEPEdge&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPEdge) | [Link](https://github.com/adobe/aepsdk-edge-ios) | -| [Identity for Edge Network](../identity-for-edge-network/index.md) | ✔️ | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-edgeidentity-ios.svg?label=AEPEdgeIdentity&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPEdgeIdentity) | [Link](https://github.com/adobe/aepsdk-edgeidentity-ios) | -| [Consent for Edge Network](../consent-for-edge-network/index.md) | ✔️ | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-edgeconsent-ios.svg?label=AEPEdgeConsent&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPEdgeConsent) | [Link](https://github.com/adobe/aepsdk-edgeconsent-ios) | -| [Media for Edge Network](../media-for-edge-network/index.md) | ✔️ | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-edgemedia-ios.svg?label=AEPEdgeMedia&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPEdgeMedia) | [Link](https://github.com/adobe/aepsdk-edgemedia-ios) | -| [Edge Bridge](../adobe-analytics/migrate-to-edge-network.md) | | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-edgebridge-ios.svg?label=AEPEdgeBridge&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPEdgeBridge) | [Link](https://github.com/adobe/aepsdk-edgebridge-ios) | -| [Adobe Journey Optimizer](../adobe-journey-optimizer/index.md) | | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-messaging-ios.svg?label=AEPMessaging&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPMessaging) | [Link](https://github.com/adobe/aepsdk-messaging-ios) | -| [Adobe Journey Optimizer - Decisioning](../adobe-journey-optimizer-decisioning/index.md) | | ✔️ | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-optimize-ios.svg?label=AEPOptimize&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPOptimize) | [Link](https://github.com/adobe/aepsdk-optimize-ios) | -| [Places Service](https://experienceleague.adobe.com/docs/places/using/home.html) | | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-places-ios.svg?label=AEPPlaces&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPPlaces) | [Link](https://github.com/adobe/aepsdk-places-ios) | -| [Adobe Analytics](../adobe-analytics/index.md) | ✔️ | ✔️ | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-analytics-ios.svg?label=AEPAnalytics&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPAnalytics) | [Link](https://github.com/adobe/aepsdk-analytics-ios) | -| [Adobe Analytics - Media Analytics for Audio & Video](../adobe-media-analytics/index.md) | ✔️ | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-media-ios.svg?label=AEPMedia&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPMedia) | [Link](https://github.com/adobe/aepsdk-media-ios) | -| [Adobe Target](../adobe-target/index.md) | | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-target-ios.svg?label=AEPTarget&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPTarget) | [Link](https://github.com/adobe/aepsdk-target-ios) | -| [Adobe Campaign Standard](../adobe-campaign-standard/index.md) | | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-campaign-ios.svg?label=AEPCampaign&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPCampaign) | [Link](https://github.com/adobe/aepsdk-campaign-ios) | -| [Adobe Campaign Classic](../adobe-campaign-classic/index.md) | | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-campaignclassic-ios.svg?label=AEPCampaignClassic&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPCampaignClassic) | [Link](https://github.com/adobe/aepsdk-campaignclassic-ios) | -| [Adobe Audience Manager](../adobe-audience-manager/index.md) | | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-audience-ios.svg?label=AEPAudience&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPAudience) | [Link](https://github.com/adobe/aepsdk-audience-ios) | -| Adobe Analytics - Mobile Services | | Deprecated | | | -| Places Monitor | | Deprecated | | | - -## React Native - -Adobe Experience Platform Mobile SDK plugin for React Native supports React Native **version 0.60.0 or later**. For the latest installation instructions, see the README file in the [`aepsdk-react-native`](https://github.com/adobe/aepsdk-react-native#installation) repository. - - - -Adobe Experience Platform Mobile SDK plugins for React Native are compatible with the [Android](#android) and [iOS](#ios) native libraries. - - - -If you are currently using the ACP-prefixed React Native libraries, please see [the guide to migrate to latest available version](https://github.com/adobe/aepsdk-react-native/blob/main/docs/migration.md) for React Native. - -| Extension | npmjs | -|---|---| -| [Mobile Core](../mobile-core/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepcore.svg?color=green&label=%40adobe%2Freact-native-aepcore&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepcore) | -| [Profile](../profile/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepuserprofile.svg?color=green&label=%40adobe%2Freact-native-aepuserprofile&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepuserprofile) | -| [Assurance](../platform-assurance-sdk/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepassurance.svg?color=green&label=%40adobe%2Freact-native-aepassurance&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepassurance) | -| [Edge](../edge-network/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepedge.svg?color=green&label=%40adobe%2Freact-native-aepedge&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepedge) | -| [EdgeIdentity](../identity-for-edge-network/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepedgeidentity.svg?color=green&label=%40adobe%2Freact-native-aepedgeidentity&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepedgeidentity) | -| [EdgeConsent](../consent-for-edge-network/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepedgeconsent.svg?color=green&label=%40adobe%2Freact-native-aepedgeconsent&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepedgeconsent) | -| [Edge Bridge](../adobe-analytics/migrate-to-edge-network.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepedgebridge.svg?color=green&label=%40adobe%2Freact-native-aepedgebridge&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepedgebridge) | -| [Messaging](../iam/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepmessaging.svg?color=green&label=%40adobe%2Freact-native-aepmessaging&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepmessaging) | -| [Optimize](./adobe-journey-optimizer/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepoptimize.svg?color=green&label=%40adobe%2Freact-native-aepoptimize&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepoptimize) | -| [Places](./places/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepplaces.svg?color=green&label=%40adobe%2Freact-native-aepplaces&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepplaces) | -| [Target](../adobe-target/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aeptarget.svg?color=green&label=%40adobe%2Freact-native-aeptarget&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aeptarget) | -| [Campaign Classic](./adobe-campaign-classic/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepcampaignclassic.svg?color=green&label=%40adobe%2Freact-native-aepcampaignclassic&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepcampaignclassic) | -| Adobe Analytics| Not Supported - Analytics workflows supported through Edge or Edge Bridge extensions, see [guide to migrate to Edge Network](../adobe-analytics/migrate-to-edge-network.md). | -| Adobe Media Analytics| Not Supported | -| Adobe Audience| Not Supported | -| Adobe Campaign Standard| Not Supported | -| Place Monitor| Deprecated | - -## Flutter - -Adobe Experience Platform Mobile SDK plugin for Flutter supports Flutter **versions 2.0.0 or later**. For the latest installation instructions, see the `README` file in the [`aepsdk-flutter`](https://github.com/adobe/aepsdk_flutter#installation) repository. - - - -Adobe Experience Platform Mobile SDK plugins for Flutter are compatible with the [Android](#android) and [iOS](#ios) native libraries. - - - -If you are currently using the ACP-prefixed Flutter libraries, please see [the guide to migrate to latest available version](https://github.com/adobe/aepsdk_flutter/blob/main/docs/migration.md) for Flutter. - -| Extension | pub.dev | -|---|---| -| [Mobile Core](../mobile-core/index.md) | [![pub package](https://img.shields.io/pub/v/flutter_aepcore.svg)](https://pub.dartlang.org/packages/flutter_aepcore) | -| [Assurance](../platform-assurance-sdk/index.md) | [![pub package](https://img.shields.io/pub/v/flutter_aepassurance.svg)](https://pub.dartlang.org/packages/flutter_aepassurance) | -| [Edge](../edge-network/index.md) | [![pub package](https://img.shields.io/pub/v/flutter_aepedge.svg)](https://pub.dartlang.org/packages/flutter_aepedge) | -| [EdgeIdentity](../identity-for-edge-network/index.md) | [![pub package](https://img.shields.io/pub/v/flutter_aepedgeidentity.svg)](https://pub.dartlang.org/packages/flutter_aepedgeidentity) | -| [EdgeConsent](../consent-for-edge-network/index.md) | [![pub package](https://img.shields.io/pub/v/flutter_aepedgeconsent.svg)](https://pub.dartlang.org/packages/flutter_aepedgeconsent) | -| [Edge Bridge](../adobe-analytics/migrate-to-edge-network.md) | [![pub package](https://img.shields.io/pub/v/flutter_aepedgebridge.svg)](https://pub.dartlang.org/packages/flutter_aepedgebridge) | -| [UserProfile](../profile/index.md) | [![pub package](https://img.shields.io/pub/v/flutter_aepuserprofile.svg)](https://pub.dartlang.org/packages/flutter_aepuserprofile) | -| Adobe Analytics| Not Supported - Analytics workflows supported through Edge or Edge Bridge extensions, see [guide to migrate to Edge Network](../adobe-analytics/migrate-to-edge-network.md). | -| Place Service | Not Supported | -| Place Monitor| Deprecated | - -## Roku - -
- -
- - - -
- -The Adobe Experience Platform SDK for Roku supports Roku OS 11.0 or later. The project is open sourced in GitHub. For more information, refer to the [aepsdk-roku](https://github.com/adobe/aepsdk-roku) repository. diff --git a/src/pages/documentation/experience-cloud-extensions.md b/src/pages/documentation/experience-cloud-extensions.md deleted file mode 100644 index eef8f62983..0000000000 --- a/src/pages/documentation/experience-cloud-extensions.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Experience Cloud extensions -description: An overview listing the available Experience Cloud mobile extensions for the Adobe Experience Platform Mobile SDK. -keywords: -- Overview ---- - -# Experience Cloud extensions - -Experience Cloud extensions are extensions that directly connect with Experience Cloud solutions. You can use these extensions if you need to connect to other Adobe solutions such as Adobe Analytics or Adobe Target. - -## Extensions - -* [Adobe Analytics](./adobe-analytics/index.md) -* [Adobe Streaming Media for Edge Network](./media-for-edge-network/index.md) -* [Adobe Media Analytics](./adobe-media-analytics/index.md) -* [Adobe Audience Manager](./adobe-audience-manager/index.md) -* [Adobe Campaign Classic](./adobe-campaign-classic/index.md) -* [Adobe Campaign Standard](./adobe-campaign-standard/index.md) -* [Adobe Journey Optimizer](./adobe-journey-optimizer/index.md) -* [Adobe Journey Optimizer Decisioning](./adobe-journey-optimizer-decisioning/index.md) -* [Adobe Target](./adobe-target/) diff --git a/src/pages/documentation/mobile-foundation-extensions.md b/src/pages/documentation/mobile-foundation-extensions.md deleted file mode 100644 index 1fbd51fcda..0000000000 --- a/src/pages/documentation/mobile-foundation-extensions.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: Mobile foundation extensions -description: An overview listing the available mobile foundation extensions for the Adobe Experience Platform Mobile SDK. -keyword: -- Overview ---- - -# Mobile foundation extensions - -Mobile foundation extensions are the main extensions you can use when using the Mobile SDKs. These extensions are highly recommended to use when you are implementing your own mobile solution. - -## Extensions - -* [Mobile Core](./mobile-core/index.md) - * [Configuration](./mobile-core/configuration/index.md) - * [Identity](./mobile-core/identity/index.md) - * [Lifecycle](./mobile-core/lifecycle/index.md) - * [Signal](./mobile-core/signal/index.md) - * [Rules Engine](./mobile-core/rules-engine/index.md) - * [Platform Services](./mobile-core/platform-services/index.md) -* [Adobe Experience Platform Edge Network](./edge-network/index.md) -* [Consent for Edge Network](./consent-for-edge-network/index.md) -* [Identity for Edge Network](./identity-for-edge-network/index.md) -* [Lifecycle for Edge Network](./lifecycle-for-edge-network/index.md) -* [Adobe Experience Platform Assurance](./platform-assurance-sdk/index.md) -* [Adobe Experience Platform Location Service](./places/index.md) -* [Profile](./profile/index.md) diff --git a/src/pages/documentation/resources/upgrade-platform-sdks/api-changelog.md b/src/pages/documentation/resources/upgrade-platform-sdks/api-changelog.md deleted file mode 100644 index 13c4c0bcb8..0000000000 --- a/src/pages/documentation/resources/upgrade-platform-sdks/api-changelog.md +++ /dev/null @@ -1,146 +0,0 @@ -# API Changelog - -This page details SDK API changes between the Experience Platform SDKs and 4x SDKs. - -## Mobile Core APIs - -For more information, see the [Mobile Core API reference](../../mobile-core/api-reference.md). - -### Supported APIs - -| Experience Platform SDK | 4x SDK | -|---|---| -| extensionVersion: | version/getVersion | -| [getPrivacyStatus:](../privacy-and-gdpr.md#getprivacystatus) | privacyStatus | -| [setPrivacyStatus:](../privacy-and-gdpr.md#setprivacystatus) | setPrivacyStatus: | -| [setLogLevel:](../../mobile-core/api-reference.md#setloglevel) | setDebugLogging: | -| [configureWithFileInPath:](../../mobile-core/configuration/api-reference.md/#configurewithfileinpath) | overrideConfigPath: | -| [setAppGroup:](../../mobile-core/api-reference.md#setappgroup) | setAppGroup: | -| [trackState:data:](../../mobile-core/api-reference.md#trackstate) | trackState:data: | -| [trackAction:data:](../../mobile-core/api-reference.md#trackaction) | trackAction:data: | -| [collectPII:](../../mobile-core/api-reference.md#collectpii) | collectPII: | -| [getSdkIdentities:](../../mobile-core/identity/api-reference.md#getsdkidentities) | getAllIdentifiersAsync: | - -### Deprecated APIs and functionality - -| 4x SDK | Notes | -|---|---| -| trackActionFromBackground | Deprecated | -| trackLocation:data: | Deprecated | -| trackBeacon:Data: | Support modified. See [guide](../../adobe-analytics/track-beacon.md) | -| trackingClearCurrentBeacon | Deprecated | -| registerAdobeDataCallback: | Deprecated | -| lifetimeValue | Deprecated | -| trackLifetimeValueIncrease:data: | Deprecated | -| trackTimedActionStart: | Deprecated | -| trackTimedActionUpdate: | Deprecated | -| trackTimedActionEnd: | Deprecated | -| trackTimedActionExists: | Deprecated | -| trackPushMessageClickThrough:userInfo | Support modified. See [guide](../faq.md#how-can-i-track-user-engagement-of-push-notifications-using-the-experience-platform-mobile-sdk) | -| Tracking App Crash | Deprecated | - -## Lifecycle extension APIs - -### Supported APIs - - - -In the v4 iOS SDK, Lifecycle start and stop calls are made automatically by the SDK. In the Adobe Experience Platform Mobile SDK, the calls to start and stop lifecycle need to be made by the application developer. For more information, see the [Lifecycle extension](../../mobile-core/lifecycle/index.md). - -For more information, see the [Lifecycle API reference](../../mobile-core/lifecycle/api-reference.md). - -| Experience Platform SDK | 4x SDK | -|---|---| -| [lifecycleStart:](../../mobile-core/lifecycle/api-reference.md#lifecyclestart) | collectLifecycleData | -| [lifecycleStart:](../../mobile-core/lifecycle/api-reference.md#lifecyclestart) | collectLifecycleWithAdditionalData | -| [lifecyclePause](../../mobile-core/lifecycle/api-reference.md#lifecyclepause) | pauseCollectingLifecycleData (Android only) | - -### Deprecated APIs - -| 4x SDK | Notes | -|---|---| -| keepLifecycleSessionAlive | Deprecated | - -## Identity extension APIs - -For more information, see the [Identity API reference](../../mobile-core/identity/api-reference.md). - -### Supported APIs - -| Experience Platform SDK | 4x SDK | -|---|---| -| [setPushIdentifier:](../../mobile-core/identity/api-reference.md#setpushidentifier) | setPushIdentifier | -| [setAdvertisingIdentifier:](../../mobile-core/identity/api-reference.md#setadvertisingidentifier) | setAdvertisingIdentifier | -| [getExperienceCloudId:](../../mobile-core/identity/api-reference.md#getexperiencecloudid) | visitorMarketingCloudID | -| [syncIdentifiers:](../../mobile-core/identity/api-reference.md#syncidentifiers) | visitorSyncIdentifiers | -| [syncIdentifiers:authentication:](../../mobile-core/identity/api-reference.md#syncidentifiers-overloaded) | visitorSyncIdentifiers:authenticationState: | -| [syncIdentifier:identifier:authentication:](../../mobile-core/identity/api-reference.md#syncidentifier) |visitorSyncIdentifiersWithType:identifier:authenticationState: | -| [getIdentifiers](../../mobile-core/identity/api-reference.md#getidentifiers) | visitorGetIDs | -| [appendToURL:withCallback:](../../mobile-core/identity/api-reference.md#appendtourl--appendvisitorinfoforurl) | visitorAppendToURL: | -| [getUrlVariables](../../mobile-core/identity/api-reference.md#geturlvariables) | visitorGetUrlVariablesAsync: | - -## Adobe Analytics extension APIs - -For more information, see the [Analytics API reference](../../adobe-analytics/api-reference.md). - -### Supported APIs - -| Experience Platform SDK | 4x SDK | -|---|---| -| [getVisitorIdentifier:](../../adobe-analytics/api-reference.md#getvisitoridentifier) | getUserIdentifier | -| [setVisitorIdentifier:](../../adobe-analytics/api-reference.md#setvisitoridentifier) | setUserIdentifier | -| [getTrackingIdentifier:](../../adobe-analytics/api-reference.md#gettrackingidentifier) | trackingIdentifier | -| [sendQueuedHits:](../../adobe-analytics/api-reference.md#sendqueuedhits) | trackingSendQueuedHits | -| [clearQueue](../../adobe-analytics/api-reference.md#clearqueue) | trackingClearQueue | -| [getQueueSize](../../adobe-analytics/api-reference.md#getqueuesize) | trackingGetQueueSize | - -## Adobe Audience Manager extension APIs - -For more information, see the [Audience Manager Extension API reference](../../adobe-audience-manager/api-reference.md). - -### Supported APIs - -| Experience Platform SDK | 4x SDK | -|---|---| -| [​getVisitorProfile:​](../../adobe-audience-manager/api-reference.md#getvisitorprofile) | audienceVisitorProfile | -| [​signalWithData:callback:​](../../adobe-audience-manager/api-reference.md#signalwithdata) | audienceSignalWithData:callback | -| [​reset​](../../adobe-audience-manager/api-reference.md#reset-identifiers-and-profiles) | audienceReset | - -### Deprecated APIs - -| 4x SDK | Notes | -|---|---| -| audienceSetDpid:dpuuid: | Replaced - See [Link](​https://experienceleague.adobe.com/docs/audience-manager/user-guide/reference/cid.html) | -| audienceDpid: | Replaced - See [Link](https://experienceleague.adobe.com/docs/audience-manager/user-guide/reference/cid.html) |​ -| audienceDpuuid: | Replaced - See [Link](https://experienceleague.adobe.com/docs/audience-manager/user-guide/reference/cid.html) | - -​## Adobe Target extension APIs - -For more information see [Target API reference](../../adobe-target/api-reference.md). - -### Supported APIs - -| Experience Platform SDK | 4x SDK (iOS \| Android) | -| --- | --- | -| getThirdPartyId: | targetThirdPartyID | -| setThirdPartyId: | targetSetThirdPartyID | -| resetExperience: | targetClearCookies | -| initWithName:targetParameters (AEPTargetPrefetchObject) | targetPrefetchObjectWithName:mboxParameters: | -| prefetchContent:withParameters:callback: | targetPrefetchContent:withProfileParameters:callback: | -| prefetchClearCache: | targetPrefetchClearCache | -| initWithMboxName:defaultContent:targetParameters:contentCallback (AEPTargetRequestObject) | targetRequestObjectWithName:defaultContent:mboxParameters:callback: | -| retrieveLocationContent:withParameters: | targetLoadRequests:withProfileParameters: | -| clickedLocation:withTargetParameters: | locationClickedWithName:mboxParameters:productParameters:orderParameters: | -| setPreviewRestartDeeplink: | targetPreviewRestartDeepLink: | - -### Deprecated APIs - -| 4x SDK | Notes | -|---|---| -| targetPcID | Deprecated | -| targetSessionID | Deprecated | -| targetLoadRequest:callback: | Deprecated | -| targetLoadRequestWithName:defaultContent:profileParameters:orderParameters:mboxParameters:callback: | Deprecated | -| targetLoadRequestWithName:defaultContent:profileParameters:orderParameters:mboxParameters:requestLocationParameters:callback: | Deprecated | -| targetCreateRequestWithName:defaultContent:parameters: | Deprecated | -| targetCreateOrderConfirmRequestWithName:orderId:orderTotal:productPurchasedId:parameters: | Deprecated | diff --git a/src/pages/documentation/adobe-journey-optimizer-decisioning/api-reference.md b/src/pages/edge/adobe-journey-optimizer-decisioning/api-reference.md similarity index 96% rename from src/pages/documentation/adobe-journey-optimizer-decisioning/api-reference.md rename to src/pages/edge/adobe-journey-optimizer-decisioning/api-reference.md index 0cef0c02f0..5d211563c1 100644 --- a/src/pages/documentation/adobe-journey-optimizer-decisioning/api-reference.md +++ b/src/pages/edge/adobe-journey-optimizer-decisioning/api-reference.md @@ -70,7 +70,7 @@ iOS -Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../mobile-core/api-reference.md#registerextensions) API instead. +Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../../home/base/mobile-core/api-reference.md#registerextensions) API instead. @@ -85,7 +85,7 @@ Android This API call can lead to unintended SDK behavior, e.g. resetting of Experience Cloud ID (ECID). So it should be sparingly used and caution should be followed! This `MobileCore` API is a request to each extension to reset its identities. Every extension responds to this request in its own unique manner. For example, Optimize extension uses this API call to clear out its client-side in-memory propositions cache. -For details on syntax, usage and availability, refer to [Mobile Core - Reset identities](../mobile-core/api-reference.md#resetidentities). +For details on syntax, usage and availability, refer to [Mobile Core - Reset identities](../../home/base/mobile-core/api-reference.md#resetidentities). ## updatePropositions diff --git a/src/pages/documentation/adobe-journey-optimizer-decisioning/assets/index/configuration-adobe-target.png b/src/pages/edge/adobe-journey-optimizer-decisioning/assets/index/configuration-adobe-target.png similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer-decisioning/assets/index/configuration-adobe-target.png rename to src/pages/edge/adobe-journey-optimizer-decisioning/assets/index/configuration-adobe-target.png diff --git a/src/pages/documentation/adobe-journey-optimizer-decisioning/assets/index/configuration-offer-decisioning.png b/src/pages/edge/adobe-journey-optimizer-decisioning/assets/index/configuration-offer-decisioning.png similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer-decisioning/assets/index/configuration-offer-decisioning.png rename to src/pages/edge/adobe-journey-optimizer-decisioning/assets/index/configuration-offer-decisioning.png diff --git a/src/pages/documentation/adobe-journey-optimizer-decisioning/assets/index/configuration.png b/src/pages/edge/adobe-journey-optimizer-decisioning/assets/index/configuration.png similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer-decisioning/assets/index/configuration.png rename to src/pages/edge/adobe-journey-optimizer-decisioning/assets/index/configuration.png diff --git a/src/pages/documentation/adobe-journey-optimizer-decisioning/assets/index/lifecycle-rule-action.png b/src/pages/edge/adobe-journey-optimizer-decisioning/assets/index/lifecycle-rule-action.png similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer-decisioning/assets/index/lifecycle-rule-action.png rename to src/pages/edge/adobe-journey-optimizer-decisioning/assets/index/lifecycle-rule-action.png diff --git a/src/pages/documentation/adobe-journey-optimizer-decisioning/assets/index/lifecycle-rule-event.png b/src/pages/edge/adobe-journey-optimizer-decisioning/assets/index/lifecycle-rule-event.png similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer-decisioning/assets/index/lifecycle-rule-event.png rename to src/pages/edge/adobe-journey-optimizer-decisioning/assets/index/lifecycle-rule-event.png diff --git a/src/pages/documentation/adobe-journey-optimizer-decisioning/assets/index/lifecycle-rule.png b/src/pages/edge/adobe-journey-optimizer-decisioning/assets/index/lifecycle-rule.png similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer-decisioning/assets/index/lifecycle-rule.png rename to src/pages/edge/adobe-journey-optimizer-decisioning/assets/index/lifecycle-rule.png diff --git a/src/pages/documentation/adobe-journey-optimizer-decisioning/assets/index/target-tpid.png b/src/pages/edge/adobe-journey-optimizer-decisioning/assets/index/target-tpid.png similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer-decisioning/assets/index/target-tpid.png rename to src/pages/edge/adobe-journey-optimizer-decisioning/assets/index/target-tpid.png diff --git a/src/pages/documentation/adobe-journey-optimizer-decisioning/index.md b/src/pages/edge/adobe-journey-optimizer-decisioning/index.md similarity index 94% rename from src/pages/documentation/adobe-journey-optimizer-decisioning/index.md rename to src/pages/edge/adobe-journey-optimizer-decisioning/index.md index 9ae5ae698a..46479e4bd4 100644 --- a/src/pages/documentation/adobe-journey-optimizer-decisioning/index.md +++ b/src/pages/edge/adobe-journey-optimizer-decisioning/index.md @@ -24,7 +24,7 @@ Before starting, make sure the following steps are completed. ### Configure the Datastream for Adobe Target and/or Journey Optimizer - Offer Decisioning -On [Experience Platform Data Collection](https://experience.adobe.com/#/data-collection/), navigate to **Data Collection** > **Datatreams** using the left navigation panel. Select an existing datastream or create a new datastream. For more details, see the [configure datastreams guide](../getting-started/configure-datastreams.md). +On [Experience Platform Data Collection](https://experience.adobe.com/#/data-collection/), navigate to **Data Collection** > **Datatreams** using the left navigation panel. Select an existing datastream or create a new datastream. For more details, see the [configure datastreams guide](../../home/getting-started/configure-datastreams.md). 1. In the datastream, click on the desired environment from the list. Make sure **Adobe Experience Platform** section is enabled and configured with the required information like **Sandbox** and **Event Dataset**. 2. For Journey Optimizer - Offer Decisioning, navigate to **Adobe Experience Platform** section and enable **Offer Decisioning** checkbox. @@ -40,7 +40,7 @@ On [Experience Platform Data Collection](https://experience.adobe.com/#/data-col 1. In your mobile property, navigate to **Extensions** in the left navigation panel and click on the **Catalog** tab. 2. In the extensions Catalog, search or locate the **Adobe Journey Optimizer - Decisioning** extension, and click **Install**. 3. Since an extension configuration is not necessary, click **Save**. -4. Follow the publishing process to update SDK configuration. For more details, see the [publish the configuration guide](../getting-started/create-a-mobile-property.md.md#publish-the-configuration). +4. Follow the publishing process to update SDK configuration. For more details, see the [publish the configuration guide](../../home/getting-started/create-a-mobile-property.md#publish-the-configuration). ![Adobe Journey Optimizer - Decisioning extension configuration](./assets/index/configuration.png) @@ -48,7 +48,7 @@ On [Experience Platform Data Collection](https://experience.adobe.com/#/data-col -For the AEPOptimize APIs to work properly, you need to integrate Mobile Core and Edge extensions in your mobile app. For more details see, documentation on [Mobile Core](../mobile-core/index.md) and [Adobe Experience Platform Edge Network](../edge-network/index.md). +For the AEPOptimize APIs to work properly, you need to integrate Mobile Core and Edge extensions in your mobile app. For more details see, documentation on [Mobile Core](../../home/base/mobile-core/index.md) and [Adobe Experience Platform Edge Network](../../edge/edge-network/index.md). ### Install the Experience Platform Mobile SDK @@ -143,7 +143,7 @@ To use Target Third Party ID in the Experience Edge mobile workflows, the corres ![Target Third Party ID configuration](./assets/index/target-tpid.png) -In your mobile application, integrate the Identity for Edge Network extension to add the Target Third Party ID in the Identity Map in the personalization query request to the Edge network when calling the `updatePropositions` API. For more details, see the [Identity for Edge Network - updateIdentities API](../identity-for-edge-network/api-reference.md#updateidentities). +In your mobile application, integrate the Identity for Edge Network extension to add the Target Third Party ID in the Identity Map in the personalization query request to the Edge network when calling the `updatePropositions` API. For more details, see the [Identity for Edge Network - updateIdentities API](../../edge/identity-for-edge-network/api-reference.md#updateidentities). @@ -227,7 +227,7 @@ After you finish your rule configuration, verify the rule details are as shown b ![Adobe Journey Optimizer - Decisioning extension Lifecycle rule Configuration](./assets/index/lifecycle-rule.png) 1. Click on **Save**. -2. [Republish your configuration](../getting-started/create-a-mobile-property.md#publish-the-configuration) to the desired environment. +2. [Republish your configuration](../../home/getting-started/create-a-mobile-property.md#publish-the-configuration) to the desired environment. ### Analytics for Target (A4T) @@ -283,7 +283,7 @@ iOS -The Edge `sendEvent` API can then be used to send this tracking XDM data along with any additional XDM and freeform data to the Experience Edge network. Additionally, an override dataset can also be specified for tracking data. For more details, see [Edge - sendEvent API](../edge-network/api-reference.md#sendevent). +The Edge `sendEvent` API can then be used to send this tracking XDM data along with any additional XDM and freeform data to the Experience Edge network. Additionally, an override dataset can also be specified for tracking data. For more details, see [Edge - sendEvent API](../../edge/edge-network/api-reference.md#sendevent). @@ -297,7 +297,7 @@ iOS ## Configuration keys -To update the SDK configuration programmatically, use the following information to change the Optimize extension configuration values. For more information, see the [programmatic updates to Configuration guide](../mobile-core/configuration/api-reference.md#updateconfiguration). +To update the SDK configuration programmatically, use the following information to change the Optimize extension configuration values. For more information, see the [programmatic updates to Configuration guide](../../home/base/mobile-core/configuration/api-reference.md#updateconfiguration). | Key | Required | Description | Data Type | | :--- | :--- | :--- | :--- | @@ -305,4 +305,4 @@ To update the SDK configuration programmatically, use the following information -If the override dataset is used for proposition tracking, make sure the corresponding schema definition contains the `Experience Event - Proposition Interaction` field group. For more information, see the [setup schemas and datasets guide](../getting-started/set-up-schemas-and-datasets.md). +If the override dataset is used for proposition tracking, make sure the corresponding schema definition contains the `Experience Event - Proposition Interaction` field group. For more information, see the [setup schemas and datasets guide](../../home/getting-started/set-up-schemas-and-datasets.md). diff --git a/src/pages/documentation/adobe-journey-optimizer-decisioning/release-notes.md b/src/pages/edge/adobe-journey-optimizer-decisioning/release-notes.md similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer-decisioning/release-notes.md rename to src/pages/edge/adobe-journey-optimizer-decisioning/release-notes.md diff --git a/src/pages/documentation/adobe-journey-optimizer-decisioning/tabs/api-reference.md b/src/pages/edge/adobe-journey-optimizer-decisioning/tabs/api-reference.md similarity index 98% rename from src/pages/documentation/adobe-journey-optimizer-decisioning/tabs/api-reference.md rename to src/pages/edge/adobe-journey-optimizer-decisioning/tabs/api-reference.md index 794ef0f21d..d0516f5f00 100644 --- a/src/pages/documentation/adobe-journey-optimizer-decisioning/tabs/api-reference.md +++ b/src/pages/edge/adobe-journey-optimizer-decisioning/tabs/api-reference.md @@ -105,7 +105,7 @@ public static void getPropositions(final List decisionScopes, fin ``` * _decisionScopes_ is a list of decision scopes for which propositions are requested. -* _callback_ `call` method is invoked with propositions map of type `Map`. If the callback is an instance of [AdobeCallbackWithError](../mobile-core/api-reference.md#adobecallbackwitherror), and if the operation times out or an error occurs in retrieving propositions, the `fail` method is invoked with the appropriate [AdobeError](../mobile-core/api-reference.md#adobeerror). +* _callback_ `call` method is invoked with propositions map of type `Map`. If the callback is an instance of [AdobeCallbackWithError](../../home/base/mobile-core/api-reference.md#adobecallbackwitherror), and if the operation times out or an error occurs in retrieving propositions, the `fail` method is invoked with the appropriate [AdobeError](../../home/base/mobile-core/api-reference.md#adobeerror). #### Example diff --git a/src/pages/documentation/adobe-journey-optimizer-decisioning/tabs/index.md b/src/pages/edge/adobe-journey-optimizer-decisioning/tabs/index.md similarity index 99% rename from src/pages/documentation/adobe-journey-optimizer-decisioning/tabs/index.md rename to src/pages/edge/adobe-journey-optimizer-decisioning/tabs/index.md index a435fba3ef..eb33c4c48c 100644 --- a/src/pages/documentation/adobe-journey-optimizer-decisioning/tabs/index.md +++ b/src/pages/edge/adobe-journey-optimizer-decisioning/tabs/index.md @@ -16,7 +16,7 @@ implementation 'com.adobe.marketing.mobile:optimize' -Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../resources/manage-gradle-dependencies.md) for more information. +Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../../resources/manage-gradle-dependencies.md) for more information. diff --git a/src/pages/documentation/adobe-journey-optimizer/api-reference.md b/src/pages/edge/adobe-journey-optimizer/api-reference.md similarity index 97% rename from src/pages/documentation/adobe-journey-optimizer/api-reference.md rename to src/pages/edge/adobe-journey-optimizer/api-reference.md index 6de07f2552..ef97efa908 100644 --- a/src/pages/documentation/adobe-journey-optimizer/api-reference.md +++ b/src/pages/edge/adobe-journey-optimizer/api-reference.md @@ -43,7 +43,7 @@ iOS -Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../mobile-core/api-reference.md#registerextensions) API instead. +Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../../home/base/mobile-core/api-reference.md#registerextensions) API instead. diff --git a/src/pages/documentation/adobe-journey-optimizer/assets/index/configuration.png b/src/pages/edge/adobe-journey-optimizer/assets/index/configuration.png similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer/assets/index/configuration.png rename to src/pages/edge/adobe-journey-optimizer/assets/index/configuration.png diff --git a/src/pages/documentation/adobe-journey-optimizer/assets/index/update-datastream.png b/src/pages/edge/adobe-journey-optimizer/assets/index/update-datastream.png similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer/assets/index/update-datastream.png rename to src/pages/edge/adobe-journey-optimizer/assets/index/update-datastream.png diff --git a/src/pages/documentation/adobe-journey-optimizer/index.md b/src/pages/edge/adobe-journey-optimizer/index.md similarity index 86% rename from src/pages/documentation/adobe-journey-optimizer/index.md rename to src/pages/edge/adobe-journey-optimizer/index.md index e903d84e2b..a9af4fa80a 100644 --- a/src/pages/documentation/adobe-journey-optimizer/index.md +++ b/src/pages/edge/adobe-journey-optimizer/index.md @@ -20,13 +20,13 @@ The following documentation details how to use the extension and required config 1. Read the tutorial on [getting started with push configuration](https://experienceleague.adobe.com/docs/journey-optimizer/using/get-started/configuration/push-config/push-gs.html) to learn how to configure push channels in Adobe Journey Optimizer. 2. [Update your app's Datastream](#update-datastream-with-profile-dataset) in [Adobe Experience Platform Data Collection](https://experience.adobe.com/#/data-collection/) 3. Integrate with following extensions: - * [Mobile Core](../mobile-core/index.md) - * [Adobe Experience Platform Edge Network](../edge-network/index.md) - * [Identity for Edge Network](../identity-for-edge-network/index.md) + * [Mobile Core](../../home/base/mobile-core/index.md) + * [Adobe Experience Platform Edge Network](../../edge/edge-network/index.md) + * [Identity for Edge Network](../../edge/identity-for-edge-network/index.md) ### Update Datastream with a Profile dataset -Navigate to a previously configured Datastream by following the instructions in the [configure datastreams tutorial](../getting-started/configure-datastreams.md) in [Adobe Experience Platform Data Collection](https://experience.adobe.com/#/data-collection/) and select **Add Service**. In the service dropdown select **Adobe Experience Platform**. +Navigate to a previously configured Datastream by following the instructions in the [configure datastreams tutorial](../../home/getting-started/configure-datastreams.md) in [Adobe Experience Platform Data Collection](https://experience.adobe.com/#/data-collection/) and select **Add Service**. In the service dropdown select **Adobe Experience Platform**. * In the **Event Dataset** dropdown, select a dataset previously created in the [Adobe Experience Platform](https://experience.adobe.com/#/platform) UI. * In the **Profile Dataset** dropdown, select the **AJO Push Profile Dataset**. @@ -38,7 +38,7 @@ Navigate to a previously configured Datastream by following the instructions in ## Set up a mobile property in Adobe Data Collection -To learn how to create the mobile property, please read the tutorial on [creating a mobile property](../getting-started/create-a-mobile-property.md) +To learn how to create the mobile property, please read the tutorial on [creating a mobile property](../../home/getting-started/create-a-mobile-property.md) Now that a mobile property is created, we can setup the Adobe Journey Optimizer extension. @@ -51,11 +51,11 @@ Go to the [Experience Platform Data Collection UI](https://experience.adobe.com/ 1. Navigate to the **Catalog** tab, locate the **Adobe Journey Optimizer** extension, and select **Install** 2. Select the pre-created **AJO Push Tracking Experience Event Dataset** from the **Event Dataset** dropdown. 3. Select **Save**. -4. [Follow the publishing process](../getting-started/create-a-mobile-property.md#publish-the-configuration) to update SDK configuration. +4. [Follow the publishing process](../../home/getting-started/create-a-mobile-property.md#publish-the-configuration) to update SDK configuration. -The datasets selected should use a schema that uses the "Push Notification Tracking" XDM field group. The pre-created CJM Push Tracking Dataset contains this XDM field group in its schema definition. For more information, please read the tutorial on [setting up schemas and datasets](../getting-started/set-up-schemas-and-datasets.md). +The datasets selected should use a schema that uses the "Push Notification Tracking" XDM field group. The pre-created CJM Push Tracking Dataset contains this XDM field group in its schema definition. For more information, please read the tutorial on [setting up schemas and datasets](../../home/getting-started/set-up-schemas-and-datasets.md). ![](./assets/index/configuration.png) diff --git a/src/pages/documentation/adobe-journey-optimizer/public-classes.md b/src/pages/edge/adobe-journey-optimizer/public-classes.md similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer/public-classes.md rename to src/pages/edge/adobe-journey-optimizer/public-classes.md diff --git a/src/pages/documentation/adobe-journey-optimizer/release-notes.md b/src/pages/edge/adobe-journey-optimizer/release-notes.md similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer/release-notes.md rename to src/pages/edge/adobe-journey-optimizer/release-notes.md diff --git a/src/pages/documentation/adobe-journey-optimizer/tabs/api-reference.md b/src/pages/edge/adobe-journey-optimizer/tabs/api-reference.md similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer/tabs/api-reference.md rename to src/pages/edge/adobe-journey-optimizer/tabs/api-reference.md diff --git a/src/pages/documentation/adobe-journey-optimizer/tabs/index.md b/src/pages/edge/adobe-journey-optimizer/tabs/index.md similarity index 98% rename from src/pages/documentation/adobe-journey-optimizer/tabs/index.md rename to src/pages/edge/adobe-journey-optimizer/tabs/index.md index 34c970dd7a..f903694831 100644 --- a/src/pages/documentation/adobe-journey-optimizer/tabs/index.md +++ b/src/pages/edge/adobe-journey-optimizer/tabs/index.md @@ -18,7 +18,7 @@ implementation "com.adobe.marketing.mobile:messaging" -Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../resources/manage-gradle-dependencies.md) for more information. +Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../../resources/manage-gradle-dependencies.md) for more information. diff --git a/src/pages/documentation/adobe-journey-optimizer/tabs/public-classes.md b/src/pages/edge/adobe-journey-optimizer/tabs/public-classes.md similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer/tabs/public-classes.md rename to src/pages/edge/adobe-journey-optimizer/tabs/public-classes.md diff --git a/src/pages/documentation/adobe-journey-optimizer/tutorials/assets/validate-messages/iam-simulation.png b/src/pages/edge/adobe-journey-optimizer/tutorials/assets/validate-messages/iam-simulation.png similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer/tutorials/assets/validate-messages/iam-simulation.png rename to src/pages/edge/adobe-journey-optimizer/tutorials/assets/validate-messages/iam-simulation.png diff --git a/src/pages/documentation/adobe-journey-optimizer/tutorials/assets/validate-messages/install-iam-plugin.png b/src/pages/edge/adobe-journey-optimizer/tutorials/assets/validate-messages/install-iam-plugin.png similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer/tutorials/assets/validate-messages/install-iam-plugin.png rename to src/pages/edge/adobe-journey-optimizer/tutorials/assets/validate-messages/install-iam-plugin.png diff --git a/src/pages/documentation/adobe-journey-optimizer/tutorials/assets/validate-messages/message-configuration.png b/src/pages/edge/adobe-journey-optimizer/tutorials/assets/validate-messages/message-configuration.png similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer/tutorials/assets/validate-messages/message-configuration.png rename to src/pages/edge/adobe-journey-optimizer/tutorials/assets/validate-messages/message-configuration.png diff --git a/src/pages/documentation/adobe-journey-optimizer/tutorials/assets/validate-messages/message-request.png b/src/pages/edge/adobe-journey-optimizer/tutorials/assets/validate-messages/message-request.png similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer/tutorials/assets/validate-messages/message-request.png rename to src/pages/edge/adobe-journey-optimizer/tutorials/assets/validate-messages/message-request.png diff --git a/src/pages/documentation/adobe-journey-optimizer/tutorials/assets/validate-messages/message-response-payload.png b/src/pages/edge/adobe-journey-optimizer/tutorials/assets/validate-messages/message-response-payload.png similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer/tutorials/assets/validate-messages/message-response-payload.png rename to src/pages/edge/adobe-journey-optimizer/tutorials/assets/validate-messages/message-response-payload.png diff --git a/src/pages/documentation/adobe-journey-optimizer/tutorials/assets/validate-messages/message-response.png b/src/pages/edge/adobe-journey-optimizer/tutorials/assets/validate-messages/message-response.png similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer/tutorials/assets/validate-messages/message-response.png rename to src/pages/edge/adobe-journey-optimizer/tutorials/assets/validate-messages/message-response.png diff --git a/src/pages/documentation/adobe-journey-optimizer/tutorials/handle-clicks.md b/src/pages/edge/adobe-journey-optimizer/tutorials/handle-clicks.md similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer/tutorials/handle-clicks.md rename to src/pages/edge/adobe-journey-optimizer/tutorials/handle-clicks.md diff --git a/src/pages/documentation/adobe-journey-optimizer/tutorials/index.md b/src/pages/edge/adobe-journey-optimizer/tutorials/index.md similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer/tutorials/index.md rename to src/pages/edge/adobe-journey-optimizer/tutorials/index.md diff --git a/src/pages/documentation/adobe-journey-optimizer/tutorials/javascript-from-native.md b/src/pages/edge/adobe-journey-optimizer/tutorials/javascript-from-native.md similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer/tutorials/javascript-from-native.md rename to src/pages/edge/adobe-journey-optimizer/tutorials/javascript-from-native.md diff --git a/src/pages/documentation/adobe-journey-optimizer/tutorials/messaging-delegate.md b/src/pages/edge/adobe-journey-optimizer/tutorials/messaging-delegate.md similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer/tutorials/messaging-delegate.md rename to src/pages/edge/adobe-journey-optimizer/tutorials/messaging-delegate.md diff --git a/src/pages/documentation/adobe-journey-optimizer/tutorials/native-from-javascript.md b/src/pages/edge/adobe-journey-optimizer/tutorials/native-from-javascript.md similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer/tutorials/native-from-javascript.md rename to src/pages/edge/adobe-journey-optimizer/tutorials/native-from-javascript.md diff --git a/src/pages/documentation/adobe-journey-optimizer/tutorials/tabs/javascript-from-native.md b/src/pages/edge/adobe-journey-optimizer/tutorials/tabs/javascript-from-native.md similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer/tutorials/tabs/javascript-from-native.md rename to src/pages/edge/adobe-journey-optimizer/tutorials/tabs/javascript-from-native.md diff --git a/src/pages/documentation/adobe-journey-optimizer/tutorials/tabs/messaging-delegate.md b/src/pages/edge/adobe-journey-optimizer/tutorials/tabs/messaging-delegate.md similarity index 100% rename from src/pages/documentation/adobe-journey-optimizer/tutorials/tabs/messaging-delegate.md rename to src/pages/edge/adobe-journey-optimizer/tutorials/tabs/messaging-delegate.md diff --git a/src/pages/documentation/adobe-journey-optimizer/tutorials/tabs/native-from-javascript.md b/src/pages/edge/adobe-journey-optimizer/tutorials/tabs/native-from-javascript.md similarity index 93% rename from src/pages/documentation/adobe-journey-optimizer/tutorials/tabs/native-from-javascript.md rename to src/pages/edge/adobe-journey-optimizer/tutorials/tabs/native-from-javascript.md index 0e1f2f5b9d..04aee096e4 100644 --- a/src/pages/documentation/adobe-journey-optimizer/tutorials/tabs/native-from-javascript.md +++ b/src/pages/edge/adobe-journey-optimizer/tutorials/tabs/native-from-javascript.md @@ -26,7 +26,7 @@ public boolean shouldShowMessage(FullscreenMessage fullscreenMessage) { -In the `shouldShowMessage` function of the `MessagingDelegate`, call [`handleJavascriptMessage(_:withHandler)`](./class-message.md#handlejavascriptmessage_withhandler) to register your handler. +In the `shouldShowMessage` function of the `MessagingDelegate`, call `handleJavascriptMessage(_:withHandler)` to register your handler. The name of the message you intend to pass from the JavaScript side should be specified in the first parameter. diff --git a/src/pages/documentation/adobe-journey-optimizer/tutorials/validate-messages.md b/src/pages/edge/adobe-journey-optimizer/tutorials/validate-messages.md similarity index 96% rename from src/pages/documentation/adobe-journey-optimizer/tutorials/validate-messages.md rename to src/pages/edge/adobe-journey-optimizer/tutorials/validate-messages.md index f5eb3fb2b1..c2765d8dd6 100644 --- a/src/pages/documentation/adobe-journey-optimizer/tutorials/validate-messages.md +++ b/src/pages/edge/adobe-journey-optimizer/tutorials/validate-messages.md @@ -21,7 +21,7 @@ This guide will walk you through steps necessary to ensure your app is properly ## Prerequisites -* Your app must have the **AEPMessaging** SDK extension installed. Integrate **AEPMessaging** by following the guide on [setting up AEPMessaging SDK](../setup.md). +* Your app must have the **AEPMessaging** SDK extension installed. Integrate **AEPMessaging** by following the guide on [setting up AEPMessaging SDK](../index.md). * This troubleshooting guide uses validation provided by the **AEPAssurance** extension and the **Adobe Assurance UI**. Integrate **AEPAssurance** in your application by following the [Adobe Experience Platform Assurance installation guide](https://experienceleague.adobe.com/docs/experience-platform/assurance/home.html). @@ -46,7 +46,7 @@ Ensure that your app has registered all necessary AEP SDK extensions by doing th -If your app uses the [Edge Consent extension](../../consent-for-edge-network/index.md), the device must be consenting (i.e. - a consent value of `Yes`) in order to download in-app messages. +If your app uses the [Edge Consent extension](../../../edge/consent-for-edge-network/index.md), the device must be consenting (i.e. - a consent value of `Yes`) in order to download in-app messages. A sample view in the Assurance UI can be seen below: @@ -127,7 +127,7 @@ Using the IAM plugin you can do the following for each message downloaded by the ### Q: What do I do when one of the required extensions is missing? -**A:** Ensure that each required extension is linked to your project and registered by `MobileCore`. For more information, please read the [Mobile Core API reference](../../mobile-core/api-reference.md#registerextensions). +**A:** Ensure that each required extension is linked to your project and registered by `MobileCore`. For more information, please read the [Mobile Core API reference](../../../home/base/mobile-core/api-reference.md#registerextensions). ### Q: Why can't I find an event named `Retrieve message definitions`? diff --git a/src/pages/documentation/consent-for-edge-network/api-reference.md b/src/pages/edge/consent-for-edge-network/api-reference.md similarity index 93% rename from src/pages/documentation/consent-for-edge-network/api-reference.md rename to src/pages/edge/consent-for-edge-network/api-reference.md index 0a044d1e2d..4db3ab2c7b 100644 --- a/src/pages/documentation/consent-for-edge-network/api-reference.md +++ b/src/pages/edge/consent-for-edge-network/api-reference.md @@ -43,7 +43,7 @@ iOS -Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../mobile-core/api-reference.md#registerextensions) API instead. +Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../../home/base/mobile-core/api-reference.md#registerextensions) API instead. @@ -97,4 +97,4 @@ Bellow you can see the snippet of the request payload sent to the Edge Network: ] ``` -For additional information about the management of consent preferences, please refer to the [Privacy and GDPR documentation](../resources/privacy-and-gdpr.md#using-experience-platform-sdks-for-edge-network). +For additional information about the management of consent preferences, please refer to the [Privacy and GDPR documentation](../../resources/privacy-and-gdpr.md#using-experience-platform-sdks-for-edge-network). diff --git a/src/pages/documentation/consent-for-edge-network/assets/index/configuration.png b/src/pages/edge/consent-for-edge-network/assets/index/configuration.png similarity index 100% rename from src/pages/documentation/consent-for-edge-network/assets/index/configuration.png rename to src/pages/edge/consent-for-edge-network/assets/index/configuration.png diff --git a/src/pages/documentation/consent-for-edge-network/index.md b/src/pages/edge/consent-for-edge-network/index.md similarity index 90% rename from src/pages/documentation/consent-for-edge-network/index.md rename to src/pages/edge/consent-for-edge-network/index.md index 63eb135fbb..61af51d05a 100644 --- a/src/pages/documentation/consent-for-edge-network/index.md +++ b/src/pages/edge/consent-for-edge-network/index.md @@ -11,7 +11,7 @@ import Tabs from './tabs/index.md' # Consent for Edge Network -The Adobe Experience Platform Consent mobile extension enables consent preferences collection from your mobile app when using the [Adobe Experience Platform Mobile SDK](../mobile-core/index.md) and the [Edge Network extension](../edge-network/index.md). +The Adobe Experience Platform Consent mobile extension enables consent preferences collection from your mobile app when using the [Adobe Experience Platform Mobile SDK](../../home/base/mobile-core/index.md) and the [Edge Network extension](../edge-network/index.md). ## Configure the Adobe Experience Platform Consent extension in Data Collection UI @@ -19,7 +19,7 @@ The Adobe Experience Platform Consent mobile extension enables consent preferenc 2. On the **Catalog** tab, locate or search for the **Consent** extension, and select **Install**. 3. Set your desired default consent level. 4. Select **Save**. -5. Follow the [publishing process](../getting-started/create-a-mobile-property.md#publish-the-configuration) to update SDK configuration. +5. Follow the [publishing process](../../home/getting-started/create-a-mobile-property.md#publish-the-configuration) to update SDK configuration. ![AEP Consent extension configuration](./assets/index/configuration.png) diff --git a/src/pages/documentation/consent-for-edge-network/release-notes.md b/src/pages/edge/consent-for-edge-network/release-notes.md similarity index 100% rename from src/pages/documentation/consent-for-edge-network/release-notes.md rename to src/pages/edge/consent-for-edge-network/release-notes.md diff --git a/src/pages/documentation/consent-for-edge-network/tabs/api-reference.md b/src/pages/edge/consent-for-edge-network/tabs/api-reference.md similarity index 100% rename from src/pages/documentation/consent-for-edge-network/tabs/api-reference.md rename to src/pages/edge/consent-for-edge-network/tabs/api-reference.md diff --git a/src/pages/documentation/consent-for-edge-network/tabs/index.md b/src/pages/edge/consent-for-edge-network/tabs/index.md similarity index 98% rename from src/pages/documentation/consent-for-edge-network/tabs/index.md rename to src/pages/edge/consent-for-edge-network/tabs/index.md index 3566a3347b..e96eacac01 100644 --- a/src/pages/documentation/consent-for-edge-network/tabs/index.md +++ b/src/pages/edge/consent-for-edge-network/tabs/index.md @@ -2,7 +2,7 @@ noIndex: true --- -import Alerts from '../../resources/alerts.md' +import Alerts from '/src/pages/resources/alerts.md' diff --git a/src/pages/documentation/edge-network/api-reference.md b/src/pages/edge/edge-network/api-reference.md similarity index 95% rename from src/pages/documentation/edge-network/api-reference.md rename to src/pages/edge/edge-network/api-reference.md index 9abf77c4e2..86d8764278 100644 --- a/src/pages/documentation/edge-network/api-reference.md +++ b/src/pages/edge/edge-network/api-reference.md @@ -42,7 +42,7 @@ iOS -Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../mobile-core/api-reference.md#registerextensions) API instead. +Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../../home/base/mobile-core/api-reference.md#registerextensions) API instead. @@ -54,7 +54,7 @@ Android Resets current state of the AEP Edge extension and clears previously cached content related to current identity, if any. -See [MobileCore.resetIdentities](../mobile-core/api-reference.md#resetidentities) for more details. +See [MobileCore.resetIdentities](../../home/base/mobile-core/api-reference.md#resetidentities) for more details. ## sendEvent diff --git a/src/pages/documentation/edge-network/assets/index/configuration.png b/src/pages/edge/edge-network/assets/index/configuration.png similarity index 100% rename from src/pages/documentation/edge-network/assets/index/configuration.png rename to src/pages/edge/edge-network/assets/index/configuration.png diff --git a/src/pages/documentation/edge-network/index.md b/src/pages/edge/edge-network/index.md similarity index 95% rename from src/pages/documentation/edge-network/index.md rename to src/pages/edge/edge-network/index.md index 444a50f229..e489c473c6 100644 --- a/src/pages/documentation/edge-network/index.md +++ b/src/pages/edge/edge-network/index.md @@ -23,13 +23,13 @@ The Adobe Experience Platform Edge Network extension requires the Identity for E 3. Select the **Datastream** you would like to use per environment. Read more about [datastreams](#datastreams) below. 4. Set up the **Domain configuration** by either using the automatically populated domain, or a first party domain mapped to an Adobe-provisioned Edge network domain. For more information, see [domain configuration](#domain-configuration) below. 4. Select **Save**. -5. Follow the [publishing process](../getting-started/create-a-mobile-property.md#publish-the-configuration) to update SDK configuration. +5. Follow the [publishing process](../../home/getting-started/create-a-mobile-property.md#publish-the-configuration) to update SDK configuration. ![Edge Network extension configuration](./assets/index/configuration.png) ### Datastreams -If no datastream was previously created, see [Configure datastreams](../getting-started/configure-datastreams.md) before moving to the next step. +If no datastream was previously created, see [Configure datastreams](../../home/getting-started/configure-datastreams.md) before moving to the next step. You may configure only the required datastream for the production environment, and by default the staging and development environments will use the same datastream. Alternatively, if you want to use different datastreams per each environment, select the desired ones from the corresponding drop-down lists. diff --git a/src/pages/documentation/edge-network/release-notes.md b/src/pages/edge/edge-network/release-notes.md similarity index 100% rename from src/pages/documentation/edge-network/release-notes.md rename to src/pages/edge/edge-network/release-notes.md diff --git a/src/pages/documentation/edge-network/tabs/api-reference.md b/src/pages/edge/edge-network/tabs/api-reference.md similarity index 100% rename from src/pages/documentation/edge-network/tabs/api-reference.md rename to src/pages/edge/edge-network/tabs/api-reference.md diff --git a/src/pages/documentation/edge-network/tabs/index.md b/src/pages/edge/edge-network/tabs/index.md similarity index 98% rename from src/pages/documentation/edge-network/tabs/index.md rename to src/pages/edge/edge-network/tabs/index.md index dc03a0aeb0..1144d8be29 100644 --- a/src/pages/documentation/edge-network/tabs/index.md +++ b/src/pages/edge/edge-network/tabs/index.md @@ -2,7 +2,7 @@ noIndex: true --- -import Alerts from '../../resources/alerts.md' +import Alerts from '/src/pages/resources/alerts.md' diff --git a/src/pages/documentation/edge-network/validation.md b/src/pages/edge/edge-network/validation.md similarity index 87% rename from src/pages/documentation/edge-network/validation.md rename to src/pages/edge/edge-network/validation.md index adf9c05a4e..a586d78bec 100644 --- a/src/pages/documentation/edge-network/validation.md +++ b/src/pages/edge/edge-network/validation.md @@ -13,7 +13,7 @@ The Adobe Experience Platform Edge Network extension is integrated with Adobe Ex ## SDK Logging -The Adobe Experience Platform Mobile SDKs allow for detailed debugging in debug or test environments when using Verbose or Debug Log level. To enable this and see the log messages in your IDE set the verbose/trace mode for [MobileCore logging](../getting-started/enable-debug-logging.md#debug-logging). +The Adobe Experience Platform Mobile SDKs allow for detailed debugging in debug or test environments when using Verbose or Debug Log level. To enable this and see the log messages in your IDE set the verbose/trace mode for [MobileCore logging](../../home/getting-started/enable-debug-logging.md#debug-logging). ## Validate with Assurance @@ -22,8 +22,8 @@ While the log messages can be quite helpful for an application developer, inspec ### Get started with Assurance 1. Start by following the instructions for [using Assurance](https://experienceleague.adobe.com/docs/experience-platform/assurance/user-access.html). -2. [Install and register the Assurance extension](../platform-assurance-sdk/index.md) in your mobile app. -3. Follow the same document for [connecting to an Assurance session](../platform-assurance-sdk/index.md#connect-to-an-assurance-session). +2. [Install and register the Assurance extension](../../home/base/assurance/index.md) in your mobile app. +3. Follow the same document for [connecting to an Assurance session](../../home/base/assurance/index.md#connect-to-an-assurance-session). ### Use the Event Transactions view diff --git a/src/pages/documentation/edge-network/xdm-experience-events.md b/src/pages/edge/edge-network/xdm-experience-events.md similarity index 100% rename from src/pages/documentation/edge-network/xdm-experience-events.md rename to src/pages/edge/edge-network/xdm-experience-events.md diff --git a/src/pages/documentation/identity-for-edge-network/api-reference.md b/src/pages/edge/identity-for-edge-network/api-reference.md similarity index 95% rename from src/pages/documentation/identity-for-edge-network/api-reference.md rename to src/pages/edge/identity-for-edge-network/api-reference.md index bfb8a6c0c5..b39c1b5c02 100644 --- a/src/pages/documentation/identity-for-edge-network/api-reference.md +++ b/src/pages/edge/identity-for-edge-network/api-reference.md @@ -81,7 +81,7 @@ iOS -Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../mobile-core/api-reference.md#registerextensions) API instead. +Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../../home/base/mobile-core/api-reference.md#registerextensions) API instead. @@ -124,15 +124,15 @@ Some example use cases for this API are: This API is **not** recommended for: -* Resetting a user's consent and privacy settings; see [Privacy and GDPR](../resources/privacy-and-gdpr.md). +* Resetting a user's consent and privacy settings; see [Privacy and GDPR](../../resources/privacy-and-gdpr.md). * Removing existing custom identifiers; use the [`removeIdentity`](#removeidentity) API instead. -* Removing a previously synced advertising identifier after the advertising tracking settings were changed by the user; use the [`setAdvertisingIdentifier`](../mobile-core/identity/api-reference.md#setadvertisingidentifier) API instead. +* Removing a previously synced advertising identifier after the advertising tracking settings were changed by the user; use the [`setAdvertisingIdentifier`](../../home/base/mobile-core/identity/api-reference.md#setadvertisingidentifier) API instead. The Identity for Edge Network extension does not read the Mobile SDK's privacy status, and therefore setting the SDK's privacy status to opt-out will not automatically clear the identities from the Identity for Edge Network extension. -See [`MobileCore.resetIdentities`](../mobile-core/api-reference.md#resetidentities) for more details. +See [`MobileCore.resetIdentities`](../../home/base/mobile-core/api-reference.md#resetidentities) for more details. ## setAdvertisingIdentifier diff --git a/src/pages/documentation/identity-for-edge-network/assets/index/configuration.png b/src/pages/edge/identity-for-edge-network/assets/index/configuration.png similarity index 100% rename from src/pages/documentation/identity-for-edge-network/assets/index/configuration.png rename to src/pages/edge/identity-for-edge-network/assets/index/configuration.png diff --git a/src/pages/documentation/identity-for-edge-network/faq.md b/src/pages/edge/identity-for-edge-network/faq.md similarity index 92% rename from src/pages/documentation/identity-for-edge-network/faq.md rename to src/pages/edge/identity-for-edge-network/faq.md index 8cda8769ad..c400a02b77 100644 --- a/src/pages/documentation/identity-for-edge-network/faq.md +++ b/src/pages/edge/identity-for-edge-network/faq.md @@ -101,7 +101,7 @@ Each identity extension has its own API to retrieve their respective ECIDs as we A: Use both `getSdkIdentities` and `getIdentities` -To get the identifiers used by the Adobe Solutions extensions, call [getSdkIdentities](../mobile-core/api-reference.md#getsdkidentities). +To get the identifiers used by the Adobe Solutions extensions, call [getSdkIdentities](../../home/base/mobile-core/api-reference.md#getsdkidentities). To get the identifiers used by the Edge extensions, call [getIdentities](./api-reference.md#getidentities). @@ -109,9 +109,9 @@ To get the identifiers used by the Edge extensions, call [getIdentities](./api-r A: Set privacy status to `optedOut` and call `resetIdentities` -To clear the identifiers used by the Adobe Solutions extensions, call [setPrivacyStatus](../resources/privacy-and-gdpr.md#set-and-get-privacy-status) and set the privacy status to `optedOut`. +To clear the identifiers used by the Adobe Solutions extensions, call [setPrivacyStatus](../../resources/privacy-and-gdpr.md#set-and-get-privacy-status) and set the privacy status to `optedOut`. -To clear the identifiers used by the Edge extensions, call [resetIdentities](../mobile-core/api-reference.md#resetidentities) +To clear the identifiers used by the Edge extensions, call [resetIdentities](../../home/base/mobile-core/api-reference.md#resetidentities) ## Q: What steps are needed to generate a new Experience Cloud ID (ECID) for a user when using both Edge extensions and Adobe Solutions extensions? @@ -121,10 +121,10 @@ When using Real-time Customer Profile and Identity Service, the ECIDs from both Perform the following API calls to regenerate the ECIDs in sequence: -1. Set [privacy status](../resources/privacy-and-gdpr.md#set-and-get-privacy-status) to `optedOut` to clear the ECID from the Identity direct service extension. +1. Set [privacy status](../../resources/privacy-and-gdpr.md#set-and-get-privacy-status) to `optedOut` to clear the ECID from the Identity direct service extension. 2. Call [resetIdentities](./api-reference.md#resetidentities) to regenerate a new ECID in the Identity for Edge Network extension. 3. Call [getExperienceCloudId](./api-reference.md#getexperiencecloudid) on the Identity for Edge Network extension. This ensures the new ECID is generated before continuing. -4. Set [privacy status](../privacy-and-gdpr.md#set-and-get-privacy-status) to `optedIn` to generate a new ECID in the Identity direct service extension. +4. Set [privacy status](../../resources/privacy-and-gdpr.md#set-and-get-privacy-status) to `optedIn` to generate a new ECID in the Identity direct service extension. After completing the above steps, each identity extension will have its own, different, ECID. The new ECIDs will get linked under a new Identity Graph for the customer. @@ -140,7 +140,7 @@ iOS ## Q: Can I safely remove the Identity for Experience Cloud ID Service extension in an app if I am using the Edge Network extension? -If no other extension relies on the Identity for Experience Cloud ID Service extension, you can safely remove it. Please refer to the [Identity consideration document](../adobe-analytics/migrate-to-edge-network.md#identity-consideration-for-the-migration) for more information. +If no other extension relies on the Identity for Experience Cloud ID Service extension, you can safely remove it. Please refer to the [Identity consideration document](../../solution/adobe-analytics/migrate-to-edge-network.md#identity-consideration-for-the-migration) for more information. ## Q: I am passing the ECID from to the WebView using `getUrlVariables` API, but the web interactions get a new ECID assigned, how do I fix this? diff --git a/src/pages/documentation/identity-for-edge-network/index.md b/src/pages/edge/identity-for-edge-network/index.md similarity index 100% rename from src/pages/documentation/identity-for-edge-network/index.md rename to src/pages/edge/identity-for-edge-network/index.md diff --git a/src/pages/documentation/identity-for-edge-network/release-notes.md b/src/pages/edge/identity-for-edge-network/release-notes.md similarity index 100% rename from src/pages/documentation/identity-for-edge-network/release-notes.md rename to src/pages/edge/identity-for-edge-network/release-notes.md diff --git a/src/pages/documentation/identity-for-edge-network/tabs/api-reference.md b/src/pages/edge/identity-for-edge-network/tabs/api-reference.md similarity index 96% rename from src/pages/documentation/identity-for-edge-network/tabs/api-reference.md rename to src/pages/edge/identity-for-edge-network/tabs/api-reference.md index e97b1e376f..c6ecd9e2c0 100644 --- a/src/pages/documentation/identity-for-edge-network/tabs/api-reference.md +++ b/src/pages/edge/identity-for-edge-network/tabs/api-reference.md @@ -60,7 +60,7 @@ NSString *extensionVersion = [AEPMobileEdgeIdentity extensionVersion]; -The ECID value is returned via the [AdobeCallback](../mobile-core/api-reference.md#public-classes). When [AdobeCallbackWithError](../mobile-core/api-reference.md#public-classes) is provided to this API, the timeout value is 500ms. If the operation times out or an unexpected error occurs, the `fail` method is called with the appropriate [AdobeError](../mobile-core/api-reference.md#public-classes). +The ECID value is returned via the [AdobeCallback](../../home/base/mobile-core/api-reference.md#public-classes). When [AdobeCallbackWithError](../../home/base/mobile-core/api-reference.md#public-classes) is provided to this API, the timeout value is 500ms. If the operation times out or an unexpected error occurs, the `fail` method is called with the appropriate [AdobeError](../../home/base/mobile-core/api-reference.md#public-classes). @@ -139,7 +139,7 @@ Identity.getExperienceCloudId { (ecid, error) in -When [AdobeCallbackWithError](../mobile-core/api-reference.md#public-classes) is provided, and you are fetching the identities from the Mobile SDK, the timeout value is 500ms. If the operation times out or an unexpected error occurs, the `fail` method is called with the appropriate [AdobeError](../mobile-core/api-reference.md#public-classes). +When [AdobeCallbackWithError](../../home/base/mobile-core/api-reference.md#public-classes) is provided, and you are fetching the identities from the Mobile SDK, the timeout value is 500ms. If the operation times out or an unexpected error occurs, the `fail` method is called with the appropriate [AdobeError](../../home/base/mobile-core/api-reference.md#public-classes). @@ -184,7 +184,7 @@ Identity.getIdentities { identityMap -> static func getIdentities(completion: @escaping (IdentityMap?, Error?) -> Void) ``` -* _completion_ is invoked after the identities are available. The default timeout is 1000ms. The return format is an instance of [IdentityMap](api-reference.md#identitymap). +* _completion_ is invoked after the identities are available. The default timeout is 1000ms. The return format is an instance of [IdentityMap](#identitymap). **Example** @@ -270,7 +270,7 @@ Identity.getUrlVariables { urlVariablesString -> static func getUrlVariables(completion: @escaping (String?, Error?) -> Void) ``` -* `completion` is invoked with `urlVariables` containing the visitor identifiers as a query string, or with `error` if an unexpected error occurs or the request times out. The returned `Error` contains the [AEPError](../mobile-core/api-reference.md#public-classes) code of the specific error. The default timeout is 1000ms. +* `completion` is invoked with `urlVariables` containing the visitor identifiers as a query string, or with `error` if an unexpected error occurs or the request times out. The returned `Error` contains the [AEPError](../../home/base/mobile-core/api-reference.md#public-classes) code of the specific error. The default timeout is 1000ms. **Example** diff --git a/src/pages/documentation/identity-for-edge-network/tabs/faq.md b/src/pages/edge/identity-for-edge-network/tabs/faq.md similarity index 98% rename from src/pages/documentation/identity-for-edge-network/tabs/faq.md rename to src/pages/edge/identity-for-edge-network/tabs/faq.md index 9be5429309..a386df50b6 100644 --- a/src/pages/documentation/identity-for-edge-network/tabs/faq.md +++ b/src/pages/edge/identity-for-edge-network/tabs/faq.md @@ -2,7 +2,7 @@ noIndex: true --- -import Alerts from '../../resources/alerts.md' +import Alerts from '/src/pages/resources/alerts.md' diff --git a/src/pages/documentation/identity-for-edge-network/tabs/index.md b/src/pages/edge/identity-for-edge-network/tabs/index.md similarity index 98% rename from src/pages/documentation/identity-for-edge-network/tabs/index.md rename to src/pages/edge/identity-for-edge-network/tabs/index.md index 0d56c668ec..dd29c020b7 100644 --- a/src/pages/documentation/identity-for-edge-network/tabs/index.md +++ b/src/pages/edge/identity-for-edge-network/tabs/index.md @@ -2,7 +2,7 @@ noIndex: true --- -import Alerts from '../../resources/alerts.md' +import Alerts from '/src/pages/resources/alerts.md' diff --git a/src/pages/edge/index.md b/src/pages/edge/index.md new file mode 100644 index 0000000000..707177f38d --- /dev/null +++ b/src/pages/edge/index.md @@ -0,0 +1,20 @@ +--- +title: Edge extensions +description: An overview listing the available extensions on Edge for the Adobe Experience Platform Mobile SDK. +keyword: +- Overview +--- + +# Edge extensions + +Edge extensions are extensions that you can use with the Mobile SDKs that are built on the Edge. + +## Extensions + +* [Adobe Experience Platform Edge Network](./edge-network/index.md) +* [Adobe Journey Optimizer](./adobe-journey-optimizer/index.md) +* [Adobe Journey Optimizer - Decisioning](./adobe-journey-optimizer-decisioning/index.md) +* [Adobe Streaming Media for Edge Network](./media-for-edge-network/index.md) +* [Consent for Edge Network](./consent-for-edge-network/index.md) +* [Identity for Edge Network](./identity-for-edge-network/index.md) +* [Lifecycle for Edge Network](./lifecycle-for-edge-network/index.md) diff --git a/src/pages/documentation/lifecycle-for-edge-network/api-reference.md b/src/pages/edge/lifecycle-for-edge-network/api-reference.md similarity index 65% rename from src/pages/documentation/lifecycle-for-edge-network/api-reference.md rename to src/pages/edge/lifecycle-for-edge-network/api-reference.md index 1e321c1688..ae5f162cdf 100644 --- a/src/pages/documentation/lifecycle-for-edge-network/api-reference.md +++ b/src/pages/edge/lifecycle-for-edge-network/api-reference.md @@ -9,4 +9,4 @@ keywords: # API Reference -For API details, please reference [Lifecycle API Reference](../mobile-core/lifecycle/api-reference.md). +For API details, please reference [Lifecycle API Reference](../../home/base/mobile-core/lifecycle/api-reference.md). diff --git a/src/pages/documentation/lifecycle-for-edge-network/assets/index/add-mobile-lifecycle-details.png b/src/pages/edge/lifecycle-for-edge-network/assets/index/add-mobile-lifecycle-details.png similarity index 100% rename from src/pages/documentation/lifecycle-for-edge-network/assets/index/add-mobile-lifecycle-details.png rename to src/pages/edge/lifecycle-for-edge-network/assets/index/add-mobile-lifecycle-details.png diff --git a/src/pages/documentation/lifecycle-for-edge-network/assets/index/configuration.png b/src/pages/edge/lifecycle-for-edge-network/assets/index/configuration.png similarity index 100% rename from src/pages/documentation/lifecycle-for-edge-network/assets/index/configuration.png rename to src/pages/edge/lifecycle-for-edge-network/assets/index/configuration.png diff --git a/src/pages/documentation/lifecycle-for-edge-network/assets/index/define-action.png b/src/pages/edge/lifecycle-for-edge-network/assets/index/define-action.png similarity index 100% rename from src/pages/documentation/lifecycle-for-edge-network/assets/index/define-action.png rename to src/pages/edge/lifecycle-for-edge-network/assets/index/define-action.png diff --git a/src/pages/documentation/lifecycle-for-edge-network/assets/index/save-rule.png b/src/pages/edge/lifecycle-for-edge-network/assets/index/save-rule.png similarity index 100% rename from src/pages/documentation/lifecycle-for-edge-network/assets/index/save-rule.png rename to src/pages/edge/lifecycle-for-edge-network/assets/index/save-rule.png diff --git a/src/pages/documentation/lifecycle-for-edge-network/assets/index/select-event.png b/src/pages/edge/lifecycle-for-edge-network/assets/index/select-event.png similarity index 100% rename from src/pages/documentation/lifecycle-for-edge-network/assets/index/select-event.png rename to src/pages/edge/lifecycle-for-edge-network/assets/index/select-event.png diff --git a/src/pages/documentation/lifecycle-for-edge-network/event-reference.md b/src/pages/edge/lifecycle-for-edge-network/event-reference.md similarity index 56% rename from src/pages/documentation/lifecycle-for-edge-network/event-reference.md rename to src/pages/edge/lifecycle-for-edge-network/event-reference.md index 542b665f06..ed218e22ba 100644 --- a/src/pages/documentation/lifecycle-for-edge-network/event-reference.md +++ b/src/pages/edge/lifecycle-for-edge-network/event-reference.md @@ -11,7 +11,7 @@ keywords: Events dispatched by the Lifecycle extension to support Adobe Experience Platform Edge Network workflows include: -* [Lifecycle Application Foreground](../mobile-core/lifecycle/event-reference.md#lifecycle-application-foreground) -* [Lifecycle Application Background](../mobile-core/lifecycle/event-reference.md#lifecycle-application-background) +* [Lifecycle Application Foreground](../../home/base/mobile-core/lifecycle/event-reference.md#lifecycle-application-foreground) +* [Lifecycle Application Background](../../home/base/mobile-core/lifecycle/event-reference.md#lifecycle-application-background) -For full event details, please read the [Lifecycle event reference](../mobile-core/lifecycle/event-reference.md). +For full event details, please read the [Lifecycle event reference](../../home/base/mobile-core/lifecycle/event-reference.md). diff --git a/src/pages/documentation/lifecycle-for-edge-network/index.md b/src/pages/edge/lifecycle-for-edge-network/index.md similarity index 92% rename from src/pages/documentation/lifecycle-for-edge-network/index.md rename to src/pages/edge/lifecycle-for-edge-network/index.md index 8cb74e451b..2a466dfd81 100644 --- a/src/pages/documentation/lifecycle-for-edge-network/index.md +++ b/src/pages/edge/lifecycle-for-edge-network/index.md @@ -91,6 +91,6 @@ After you complete your configuration, verify that your rule looks like the foll ## Add the Lifecycle extension to your app -For implementation details, please reference the Lifecycle documentation to learn how to [add Lifecycle to your app](../mobile-core/lifecycle/index.md#add-lifecycle-to-your-app). as well as [register Lifecycle with Mobile Core and add appropriate the Start/Pause calls](../mobile-core/lifecycle/index.md#register-lifecycle-with-mobile-core-and-add-appropriate-start-pause-calls). +For implementation details, please reference the Lifecycle documentation to learn how to [add Lifecycle to your app](../../home/base/mobile-core/lifecycle/index.md#add-lifecycle-to-your-app). as well as [register Lifecycle with Mobile Core and add appropriate the Start/Pause calls](../../home/base/mobile-core/lifecycle/index.md#register-lifecycle-with-mobile-core-and-add-appropriate-start-pause-calls). In addition, use the following steps to [add the Edge Network extension to your app](../edge-network/index.md#add-the-edge-network-extension-to-your-app). diff --git a/src/pages/documentation/lifecycle-for-edge-network/metrics.md b/src/pages/edge/lifecycle-for-edge-network/metrics.md similarity index 56% rename from src/pages/documentation/lifecycle-for-edge-network/metrics.md rename to src/pages/edge/lifecycle-for-edge-network/metrics.md index 66a20dbba2..acdeb23a1c 100644 --- a/src/pages/documentation/lifecycle-for-edge-network/metrics.md +++ b/src/pages/edge/lifecycle-for-edge-network/metrics.md @@ -11,7 +11,7 @@ keywords: The metrics auto-collected by the Lifecycle extension to support Adobe Experience Platform Edge Network workflows include: -* [Lifecycle Application Foreground metrics](../mobile-core/lifecycle/metrics.md#lifecycle-application-foreground-metrics) -* [Lifecycle Application Background metrics](../mobile-core/lifecycle/metrics.md#lifecycle-application-background-metrics) +* [Lifecycle Application Foreground metrics](../../home/base/mobile-core/lifecycle/metrics.md#lifecycle-application-foreground-metrics) +* [Lifecycle Application Background metrics](../../home/base/mobile-core/lifecycle/metrics.md#lifecycle-application-background-metrics) -For full metric details, please read the [Lifecycle metrics reference](../mobile-core/lifecycle/metrics.md). +For full metric details, please read the [Lifecycle metrics reference](../../home/base/mobile-core/lifecycle/metrics.md). diff --git a/src/pages/documentation/media-for-edge-network/api-reference.md b/src/pages/edge/media-for-edge-network/api-reference.md similarity index 99% rename from src/pages/documentation/media-for-edge-network/api-reference.md rename to src/pages/edge/media-for-edge-network/api-reference.md index 0feff2bc31..767331ce33 100644 --- a/src/pages/documentation/media-for-edge-network/api-reference.md +++ b/src/pages/edge/media-for-edge-network/api-reference.md @@ -31,7 +31,7 @@ iOS Immediately aborts all the active tracking sessions and clears all the MediaTracker instances. -See [MobileCore.resetIdentities](../mobile-core/api-reference.md#resetidentities) for more details. +See [MobileCore.resetIdentities](../../home/base/mobile-core/api-reference.md#resetidentities) for more details. ### createTracker diff --git a/src/pages/documentation/media-for-edge-network/assets/index/configuration.png b/src/pages/edge/media-for-edge-network/assets/index/configuration.png similarity index 100% rename from src/pages/documentation/media-for-edge-network/assets/index/configuration.png rename to src/pages/edge/media-for-edge-network/assets/index/configuration.png diff --git a/src/pages/documentation/media-for-edge-network/index.md b/src/pages/edge/media-for-edge-network/index.md similarity index 90% rename from src/pages/documentation/media-for-edge-network/index.md rename to src/pages/edge/media-for-edge-network/index.md index 1416984398..96673e9063 100644 --- a/src/pages/documentation/media-for-edge-network/index.md +++ b/src/pages/edge/media-for-edge-network/index.md @@ -26,7 +26,7 @@ Follow the full guide for setting up [Adobe Streaming Media for Edge Network wit ### Configure and Install Dependencies -Media for Edge Network requires Edge and Edge Identity extensions. Make sure to [configure the Edge extension in Data Collection UI](https://developer.adobe.com/client-sdks/documentation/edge-network/#configure-the-edge-network-extension-in-data-collection-ui) and [configure the Edge Identity extension in Data Collection UI](https://developer.adobe.com/client-sdks/documentation/identity-for-edge-network/#configure-the-identity-extension-in-the-data-collection-ui) before proceeding. +Media for Edge Network requires Edge and Edge Identity extensions. Make sure to [configure the Edge extension in Data Collection UI](https://developer.adobe.com/client-sdks/edge-network/#configure-the-edge-network-extension-in-data-collection-ui) and [configure the Edge Identity extension in Data Collection UI](https://developer.adobe.com/client-sdks/identity-for-edge-network/#configure-the-identity-extension-in-the-data-collection-ui) before proceeding. ## Configure Media for Edge Network extension in the Data Collection Tags @@ -86,7 +86,7 @@ iOS ## Configuration keys -To update your SDK configuration programmatically, use the following information to change your Media configuration values. For more information, see [Configuration API reference](../mobile-core/configuration/api-reference.md). +To update your SDK configuration programmatically, use the following information to change your Media configuration values. For more information, see [Configuration API reference](../../home/base/mobile-core/configuration/api-reference.md). | Key | Required | Description | Data Type | | :--- | :--- | :--- | :--- | diff --git a/src/pages/documentation/media-for-edge-network/release-notes.md b/src/pages/edge/media-for-edge-network/release-notes.md similarity index 100% rename from src/pages/documentation/media-for-edge-network/release-notes.md rename to src/pages/edge/media-for-edge-network/release-notes.md diff --git a/src/pages/documentation/media-for-edge-network/tabs/api-reference.md b/src/pages/edge/media-for-edge-network/tabs/api-reference.md similarity index 100% rename from src/pages/documentation/media-for-edge-network/tabs/api-reference.md rename to src/pages/edge/media-for-edge-network/tabs/api-reference.md diff --git a/src/pages/documentation/media-for-edge-network/tabs/index.md b/src/pages/edge/media-for-edge-network/tabs/index.md similarity index 98% rename from src/pages/documentation/media-for-edge-network/tabs/index.md rename to src/pages/edge/media-for-edge-network/tabs/index.md index ab44f04ad5..e23f92834d 100644 --- a/src/pages/documentation/media-for-edge-network/tabs/index.md +++ b/src/pages/edge/media-for-edge-network/tabs/index.md @@ -16,7 +16,7 @@ implementation 'com.adobe.marketing.mobile:edgemedia' -Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../resources/manage-gradle-dependencies.md) for more information. +Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../../resources/manage-gradle-dependencies.md) for more information. diff --git a/src/pages/documentation/platform-assurance-sdk/api-reference.md b/src/pages/home/base/assurance/api-reference.md similarity index 100% rename from src/pages/documentation/platform-assurance-sdk/api-reference.md rename to src/pages/home/base/assurance/api-reference.md diff --git a/src/pages/documentation/platform-assurance-sdk/assets/common-issues/assurance-connection-error.png b/src/pages/home/base/assurance/assets/common-issues/assurance-connection-error.png similarity index 100% rename from src/pages/documentation/platform-assurance-sdk/assets/common-issues/assurance-connection-error.png rename to src/pages/home/base/assurance/assets/common-issues/assurance-connection-error.png diff --git a/src/pages/documentation/platform-assurance-sdk/assets/common-issues/assurance-invalid-configuration-error.png b/src/pages/home/base/assurance/assets/common-issues/assurance-invalid-configuration-error.png similarity index 100% rename from src/pages/documentation/platform-assurance-sdk/assets/common-issues/assurance-invalid-configuration-error.png rename to src/pages/home/base/assurance/assets/common-issues/assurance-invalid-configuration-error.png diff --git a/src/pages/documentation/platform-assurance-sdk/assets/common-issues/assurance-pin.png b/src/pages/home/base/assurance/assets/common-issues/assurance-pin.png similarity index 100% rename from src/pages/documentation/platform-assurance-sdk/assets/common-issues/assurance-pin.png rename to src/pages/home/base/assurance/assets/common-issues/assurance-pin.png diff --git a/src/pages/documentation/platform-assurance-sdk/assets/common-issues/assurance-pincode.png b/src/pages/home/base/assurance/assets/common-issues/assurance-pincode.png similarity index 100% rename from src/pages/documentation/platform-assurance-sdk/assets/common-issues/assurance-pincode.png rename to src/pages/home/base/assurance/assets/common-issues/assurance-pincode.png diff --git a/src/pages/documentation/platform-assurance-sdk/assets/common-issues/assurance-unauthorized-access-error.png b/src/pages/home/base/assurance/assets/common-issues/assurance-unauthorized-access-error.png similarity index 100% rename from src/pages/documentation/platform-assurance-sdk/assets/common-issues/assurance-unauthorized-access-error.png rename to src/pages/home/base/assurance/assets/common-issues/assurance-unauthorized-access-error.png diff --git a/src/pages/documentation/platform-assurance-sdk/assets/index/assurance-extension.png b/src/pages/home/base/assurance/assets/index/assurance-extension.png similarity index 100% rename from src/pages/documentation/platform-assurance-sdk/assets/index/assurance-extension.png rename to src/pages/home/base/assurance/assets/index/assurance-extension.png diff --git a/src/pages/documentation/platform-assurance-sdk/common-issues.md b/src/pages/home/base/assurance/common-issues.md similarity index 96% rename from src/pages/documentation/platform-assurance-sdk/common-issues.md rename to src/pages/home/base/assurance/common-issues.md index 53f28570fd..2638ab31b1 100644 --- a/src/pages/documentation/platform-assurance-sdk/common-issues.md +++ b/src/pages/home/base/assurance/common-issues.md @@ -71,7 +71,7 @@ Or ensuring internet connectivity on the device/simulator. If you see an Invalid Mobile SDK Configuration error (see screenshot below), verify the following: 1. Mobile Core is [configured](../mobile-core/configuration/api-reference.md) -2. Configuration in the Data Collection UI is [published](../getting-started/create-a-mobile-property.md#publish-the-configuration) +2. Configuration in the Data Collection UI is [published](../../home/getting-started/create-a-mobile-property.md#publish-the-configuration) 3. Ensure the device/simulator has internet connectivity ![Invalid Mobile SDK configuration](./assets/common-issues/assurance-invalid-configuration-error.png) diff --git a/src/pages/documentation/platform-assurance-sdk/index.md b/src/pages/home/base/assurance/index.md similarity index 100% rename from src/pages/documentation/platform-assurance-sdk/index.md rename to src/pages/home/base/assurance/index.md diff --git a/src/pages/documentation/platform-assurance-sdk/release-notes.md b/src/pages/home/base/assurance/release-notes.md similarity index 100% rename from src/pages/documentation/platform-assurance-sdk/release-notes.md rename to src/pages/home/base/assurance/release-notes.md diff --git a/src/pages/documentation/platform-assurance-sdk/tabs/api-reference.md b/src/pages/home/base/assurance/tabs/api-reference.md similarity index 100% rename from src/pages/documentation/platform-assurance-sdk/tabs/api-reference.md rename to src/pages/home/base/assurance/tabs/api-reference.md diff --git a/src/pages/documentation/platform-assurance-sdk/tabs/common-issues.md b/src/pages/home/base/assurance/tabs/common-issues.md similarity index 100% rename from src/pages/documentation/platform-assurance-sdk/tabs/common-issues.md rename to src/pages/home/base/assurance/tabs/common-issues.md diff --git a/src/pages/documentation/platform-assurance-sdk/tabs/index.md b/src/pages/home/base/assurance/tabs/index.md similarity index 99% rename from src/pages/documentation/platform-assurance-sdk/tabs/index.md rename to src/pages/home/base/assurance/tabs/index.md index 0893ccf53e..be2792cc53 100644 --- a/src/pages/documentation/platform-assurance-sdk/tabs/index.md +++ b/src/pages/home/base/assurance/tabs/index.md @@ -14,7 +14,7 @@ implementation 'com.adobe.marketing.mobile:assurance' -Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../resources/manage-gradle-dependencies.md) for more information. +Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../../resources/manage-gradle-dependencies.md) for more information. diff --git a/src/pages/home/base/index.md b/src/pages/home/base/index.md new file mode 100644 index 0000000000..8e867cc838 --- /dev/null +++ b/src/pages/home/base/index.md @@ -0,0 +1,23 @@ +--- +title: Base extensions +description: Learn about the extensions that are core to using Mobile SDK. +keywords: +- Product overview +- Mobile SDK +--- + +# Base extensions + +The base extensions are extensions that are required to use Mobile SDK. + +## Extensions + +* [Mobile Core](./mobile-core/index.md) + * [Configuration](./mobile-core/configuration/index.md) + * [Identity](./mobile-core/identity/index.md) + * [Lifecycle](./mobile-core/lifecycle/index.md) + * [Platform Services](./mobile-core/platform-services/index.md) + * [Rules Engine](./mobile-core/rules-engine/index.md) + * [Signal](./mobile-core/signal/index.md) +* [Adobe Experience Platform Assurance](./assurance/index.md) +* [Profile](./profile/index.md) diff --git a/src/pages/documentation/mobile-core/api-reference.md b/src/pages/home/base/mobile-core/api-reference.md similarity index 97% rename from src/pages/documentation/mobile-core/api-reference.md rename to src/pages/home/base/mobile-core/api-reference.md index 25488695d2..2479bb27bd 100644 --- a/src/pages/documentation/mobile-core/api-reference.md +++ b/src/pages/home/base/mobile-core/api-reference.md @@ -16,7 +16,7 @@ Programmatic updates made to the configuration can be cleared via the `clearUpda ## collectMessageInfo -User interactions with local or push notifications can be tracked by invoking the `collectMessageInfo` API. Please refer to [this page](../../documentation/adobe-campaign-standard#tracking-local-and-push-notification-message-interactions) for more information about tracking local and push notification message interactions. +User interactions with local or push notifications can be tracked by invoking the `collectMessageInfo` API. Please refer to [this page](../../solution/adobe-campaign-standard/index.md#tracking-local-and-push-notification-message-interactions) for more information about tracking local and push notification message interactions. ## collectLaunchInfo @@ -128,7 +128,7 @@ iOS ## getPrivacyStatus -You can use the `getPrivacyStatus` API to retrieve the current privacy status. For more information about privacy in Mobile Core, please see [Privacy and GDPR](../resources/privacy-and-gdpr.md#getprivacystatus) +You can use the `getPrivacyStatus` API to retrieve the current privacy status. For more information about privacy in Mobile Core, please see [Privacy and GDPR](../../resources/privacy-and-gdpr.md#getprivacystatus) ## getSdkIdentities @@ -147,7 +147,7 @@ To retrieve data as a JSON string from the SDKs and send this data to your serve -You must call the API below and retrieve identities stored in the SDK, **before** the user opts out.

This API does **not** include the identities stored in the Edge Identity extension. To retrieve the identities from the Edge Identity extension, use [getIdentities](../identity-for-edge-network/api-reference.md#getidentities). +You must call the API below and retrieve identities stored in the SDK, **before** the user opts out.

This API does **not** include the identities stored in the Edge Identity extension. To retrieve the identities from the Edge Identity extension, use [getIdentities](../../edge/identity-for-edge-network/api-reference.md#getidentities). @@ -332,7 +332,7 @@ Flutter ## setPrivacyStatus -You can use the `setPrivacyStatus` API to set the privacy status. For more information about privacy in Mobile Core, please see [Privacy and GDPR](../resources/privacy-and-gdpr.md#setprivacystatus) API's. +You can use the `setPrivacyStatus` API to set the privacy status. For more information about privacy in Mobile Core, please see [Privacy and GDPR](../../resources/privacy-and-gdpr.md#setprivacystatus) API's. ## setPushIdentifier diff --git a/src/pages/documentation/mobile-core/configuration/api-reference.md b/src/pages/home/base/mobile-core/configuration/api-reference.md similarity index 96% rename from src/pages/documentation/mobile-core/configuration/api-reference.md rename to src/pages/home/base/mobile-core/configuration/api-reference.md index e266778dfc..54a75379a8 100644 --- a/src/pages/documentation/mobile-core/configuration/api-reference.md +++ b/src/pages/home/base/mobile-core/configuration/api-reference.md @@ -58,7 +58,7 @@ iOS This API is only available in Android. -You can bundle a JSON configuration file in the app's Assets folder to replace or complement the configuration that was downloaded by using the [Configure with App ID per environment](../#configure-with-app-id-per-environment) approach. +You can bundle a JSON configuration file in the app's Assets folder to replace or complement the configuration that was downloaded by using the [Configure with App ID per environment](./index.md#configure-with-app-id-per-environment) approach. @@ -68,7 +68,7 @@ Android ## configureWithFileInPath -You can include a bundled JSON configuration file in your app package to replace or complement the configuration that was downloaded by using the [Configure with App ID per environment](../#configure-with-app-id-per-environment) approach. +You can include a bundled JSON configuration file in your app package to replace or complement the configuration that was downloaded by using the [Configure with App ID per environment](./index.md#configure-with-app-id-per-environment) approach. To pass in a bundled path and file name: diff --git a/src/pages/documentation/mobile-core/configuration/index.md b/src/pages/home/base/mobile-core/configuration/index.md similarity index 97% rename from src/pages/documentation/mobile-core/configuration/index.md rename to src/pages/home/base/mobile-core/configuration/index.md index 9bca8ce43e..2a3562f2b1 100644 --- a/src/pages/documentation/mobile-core/configuration/index.md +++ b/src/pages/home/base/mobile-core/configuration/index.md @@ -46,7 +46,7 @@ Keys that are not found on the current configuration are added when this method -Do not use this API to update the build.environment or any key with an environment prefix, because it can lead to unexpected behavior. For more information, read [Environment-aware configuration properties](./index.md#environment-aware-configuration-properties). +Do not use this API to update the build.environment or any key with an environment prefix, because it can lead to unexpected behavior. For more information, read [Environment-aware configuration properties](#environment-aware-configuration-properties). @@ -74,7 +74,7 @@ For implementation details, please refer to [Configuration API reference](./api- ## Using a bundled file configuration -You can include a bundled JSON configuration file in your app package to replace or complement the configuration that was downloaded by using the [Configure with App ID per environment](./index.md#configure-with-app-id-per-environment) approach. +You can include a bundled JSON configuration file in your app package to replace or complement the configuration that was downloaded by using the [Configure with App ID per environment](#configure-with-app-id-per-environment) approach. To download the JSON configuration file, use the following URL: diff --git a/src/pages/documentation/mobile-core/configuration/tabs/api-reference.md b/src/pages/home/base/mobile-core/configuration/tabs/api-reference.md similarity index 100% rename from src/pages/documentation/mobile-core/configuration/tabs/api-reference.md rename to src/pages/home/base/mobile-core/configuration/tabs/api-reference.md diff --git a/src/pages/documentation/mobile-core/configuration/tabs/index.md b/src/pages/home/base/mobile-core/configuration/tabs/index.md similarity index 100% rename from src/pages/documentation/mobile-core/configuration/tabs/index.md rename to src/pages/home/base/mobile-core/configuration/tabs/index.md diff --git a/src/pages/documentation/mobile-core/identity/api-reference.md b/src/pages/home/base/mobile-core/identity/api-reference.md similarity index 95% rename from src/pages/documentation/mobile-core/identity/api-reference.md rename to src/pages/home/base/mobile-core/identity/api-reference.md index 016be8e940..4d0b276db3 100644 --- a/src/pages/documentation/mobile-core/identity/api-reference.md +++ b/src/pages/home/base/mobile-core/identity/api-reference.md @@ -21,9 +21,9 @@ If the provided URL is null or empty, it is returned as is. Otherwise, the follo * The `adobe_mc` attribute is a URL encoded list that contains: * `MCMID` - Experience Cloud ID (ECID) * `MCORGID` - Experience Cloud Org ID - * `MCAID` - Analytics Tracking ID (AID), if available from the [Analytics extension](../../adobe-analytics/api-reference.md#gettrackingidentifier) + * `MCAID` - Analytics Tracking ID (AID), if available from the [Analytics extension](../../../solution/adobe-analytics/api-reference.md#gettrackingidentifier) * `TS` - A timestamp taken when this request was made -* The optional `adobe_aa_vid` attribute is the URL-encoded Analytics Custom Visitor ID (VID), if previously set in the [Analytics extension](../../adobe-analytics/api-reference.md#setvisitoridentifier). +* The optional `adobe_aa_vid` attribute is the URL-encoded Analytics Custom Visitor ID (VID), if previously set in the [Analytics extension](../../../solution/adobe-analytics/api-reference.md#setvisitoridentifier). This API is designed to handle the following URL formats: @@ -154,9 +154,9 @@ If an error occurs while retrieving the URL string, the callback handler will be * The `adobe_mc` attribute is an URL encoded list that contains: * `MCMID` - Experience Cloud ID (ECID) * `MCORGID` - Experience Cloud Org ID - * `MCAID` - Analytics Tracking ID (AID), if available from the [Analytics extension](../../adobe-analytics/index.md) + * `MCAID` - Analytics Tracking ID (AID), if available from the [Analytics extension](../../../solution/adobe-analytics/index.md) * `TS` - A timestamp taken when this request was made -* The optional `adobe_aa_vid` attribute is the URL-encoded Analytics Custom Visitor ID (VID), if previously set in the [Analytics extension](../../adobe-analytics/index.md). +* The optional `adobe_aa_vid` attribute is the URL-encoded Analytics Custom Visitor ID (VID), if previously set in the [Analytics extension](../../../solution/adobe-analytics/index.md). @@ -180,7 +180,7 @@ Flutter -This API is only available in Android and is deprecated starting in version 2.0.0 of the Identity extension. Use [`MobileCore.registerExtensions()`](../../api-reference.md#registerextensions) instead. +This API is only available in Android and is deprecated starting in version 2.0.0 of the Identity extension. Use [`MobileCore.registerExtensions()`](../api-reference.md#registerextensions) instead. The `registerExtension()` API registers the Identity extension with the Mobile Core extension. This API allows the extension to send and receive events to and from the Mobile SDK. @@ -203,11 +203,11 @@ Some example use cases for this API are: This API is **not** recommended for: -* Resetting a user's privacy settings; see [Privacy and GDPR](../../resources/privacy-and-gdpr.md). +* Resetting a user's privacy settings; see [Privacy and GDPR](../../../resources/privacy-and-gdpr.md). * Removing existing custom identifiers; use the [`syncIdentifier`](#syncidentifier) API instead. * Removing a previously synced advertising identifier after the advertising tracking settings were changed by the user; use the [`setAdvertisingIdentifier`](#setadvertisingidentifier) API instead. -See [`MobileCore.resetIdentities`](../../api-reference.md#resetidentities) for more details. +See [`MobileCore.resetIdentities`](../api-reference.md#resetidentities) for more details. ## setAdvertisingIdentifier diff --git a/src/pages/documentation/mobile-core/identity/assets/push-sync/push-analytics-optin.png b/src/pages/home/base/mobile-core/identity/assets/push-sync/push-analytics-optin.png similarity index 100% rename from src/pages/documentation/mobile-core/identity/assets/push-sync/push-analytics-optin.png rename to src/pages/home/base/mobile-core/identity/assets/push-sync/push-analytics-optin.png diff --git a/src/pages/documentation/mobile-core/identity/assets/push-sync/push-identities.png b/src/pages/home/base/mobile-core/identity/assets/push-sync/push-identities.png similarity index 100% rename from src/pages/documentation/mobile-core/identity/assets/push-sync/push-identities.png rename to src/pages/home/base/mobile-core/identity/assets/push-sync/push-identities.png diff --git a/src/pages/documentation/mobile-core/identity/assets/push-sync/set-push-token-to-identity.png b/src/pages/home/base/mobile-core/identity/assets/push-sync/set-push-token-to-identity.png similarity index 100% rename from src/pages/documentation/mobile-core/identity/assets/push-sync/set-push-token-to-identity.png rename to src/pages/home/base/mobile-core/identity/assets/push-sync/set-push-token-to-identity.png diff --git a/src/pages/documentation/mobile-core/identity/index.md b/src/pages/home/base/mobile-core/identity/index.md similarity index 100% rename from src/pages/documentation/mobile-core/identity/index.md rename to src/pages/home/base/mobile-core/identity/index.md diff --git a/src/pages/documentation/mobile-core/identity/push-sync.md b/src/pages/home/base/mobile-core/identity/push-sync.md similarity index 95% rename from src/pages/documentation/mobile-core/identity/push-sync.md rename to src/pages/home/base/mobile-core/identity/push-sync.md index ea691da7b5..8892afb354 100644 --- a/src/pages/documentation/mobile-core/identity/push-sync.md +++ b/src/pages/home/base/mobile-core/identity/push-sync.md @@ -70,7 +70,7 @@ Launch your app with the device connected to an [Adobe Experience Platform Assur In the list of events, verify that you have an event with type `UPDATED_IDENTITY_RESPONSE`. In the details panel on the right, confirm that the following values are correct: * The value for `pushidentifier` should match the value that was sent in step 2 above. -* The value for mid should match the value for mid that is sent to Analytics. If you are using a [custom visitor identifier](../adobe-analytics/api-reference.md#setidentifier), this payload should also contain a vid variable with a value that matches the value that was used to identify this user. +* The value for mid should match the value for mid that is sent to Analytics. If you are using a [custom visitor identifier](../../../solution/adobe-analytics/api-reference.md#setidentifier), this payload should also contain a vid variable with a value that matches the value that was used to identify this user. ![Verify push identifier synced](./assets/push-sync/push-identities.png) diff --git a/src/pages/documentation/mobile-core/identity/tabs/api-reference.md b/src/pages/home/base/mobile-core/identity/tabs/api-reference.md similarity index 100% rename from src/pages/documentation/mobile-core/identity/tabs/api-reference.md rename to src/pages/home/base/mobile-core/identity/tabs/api-reference.md diff --git a/src/pages/documentation/mobile-core/identity/tabs/index.md b/src/pages/home/base/mobile-core/identity/tabs/index.md similarity index 100% rename from src/pages/documentation/mobile-core/identity/tabs/index.md rename to src/pages/home/base/mobile-core/identity/tabs/index.md diff --git a/src/pages/documentation/mobile-core/identity/tabs/push-sync.md b/src/pages/home/base/mobile-core/identity/tabs/push-sync.md similarity index 100% rename from src/pages/documentation/mobile-core/identity/tabs/push-sync.md rename to src/pages/home/base/mobile-core/identity/tabs/push-sync.md diff --git a/src/pages/documentation/mobile-core/index.md b/src/pages/home/base/mobile-core/index.md similarity index 100% rename from src/pages/documentation/mobile-core/index.md rename to src/pages/home/base/mobile-core/index.md diff --git a/src/pages/documentation/mobile-core/lifecycle/android.md b/src/pages/home/base/mobile-core/lifecycle/android.md similarity index 100% rename from src/pages/documentation/mobile-core/lifecycle/android.md rename to src/pages/home/base/mobile-core/lifecycle/android.md diff --git a/src/pages/documentation/mobile-core/lifecycle/api-reference.md b/src/pages/home/base/mobile-core/lifecycle/api-reference.md similarity index 97% rename from src/pages/documentation/mobile-core/lifecycle/api-reference.md rename to src/pages/home/base/mobile-core/lifecycle/api-reference.md index 632325515a..4a35f3c34f 100644 --- a/src/pages/documentation/mobile-core/lifecycle/api-reference.md +++ b/src/pages/home/base/mobile-core/lifecycle/api-reference.md @@ -84,7 +84,7 @@ iOS -Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../../api-reference.md#registerextensions) API instead. +Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../api-reference.md#registerextensions) API instead. Registers the Lifecycle extension with the Mobile Core. diff --git a/src/pages/documentation/mobile-core/lifecycle/assets/android/android-crash.png b/src/pages/home/base/mobile-core/lifecycle/assets/android/android-crash.png similarity index 100% rename from src/pages/documentation/mobile-core/lifecycle/assets/android/android-crash.png rename to src/pages/home/base/mobile-core/lifecycle/assets/android/android-crash.png diff --git a/src/pages/documentation/mobile-core/lifecycle/configuration-keys.md b/src/pages/home/base/mobile-core/lifecycle/configuration-keys.md similarity index 100% rename from src/pages/documentation/mobile-core/lifecycle/configuration-keys.md rename to src/pages/home/base/mobile-core/lifecycle/configuration-keys.md diff --git a/src/pages/documentation/mobile-core/lifecycle/event-reference.md b/src/pages/home/base/mobile-core/lifecycle/event-reference.md similarity index 91% rename from src/pages/documentation/mobile-core/lifecycle/event-reference.md rename to src/pages/home/base/mobile-core/lifecycle/event-reference.md index d894af987e..6a664eb76d 100644 --- a/src/pages/documentation/mobile-core/lifecycle/event-reference.md +++ b/src/pages/home/base/mobile-core/lifecycle/event-reference.md @@ -96,7 +96,7 @@ This event is a response from the Lifecycle extension to notify that the applica -To forward this event to the Adobe Experience Platform Edge Network, follow the steps outlined in [Configure a Rule to forward Lifecycle metrics to Platform](../../lifecycle-for-edge-network/index.md#configure-a-rule-to-forward-lifecycle-metrics-to-platform). +To forward this event to the Adobe Experience Platform Edge Network, follow the steps outlined in [Configure a Rule to forward Lifecycle metrics to Platform](../../../edge/lifecycle-for-edge-network/index.md#configure-a-rule-to-forward-lifecycle-metrics-to-platform). @@ -110,7 +110,7 @@ In Android, there is a 500 millisecond timeout between consecutive `lifecycleSta #### Data payload -The Lifecycle application foreground data payload is defined by the Platform Mobile Lifecycle Details XDM field group, and includes information about the application, device, and environment when the event occurred. Please refer to [Lifecycle Application Foreground metrics](../../lifecycle-for-edge-network/metrics.md#lifecycle-application-foreground-metrics) for a list of metrics included with this event. +The Lifecycle application foreground data payload is defined by the Platform Mobile Lifecycle Details XDM field group, and includes information about the application, device, and environment when the event occurred. Please refer to [Lifecycle Application Foreground metrics](../../../edge/lifecycle-for-edge-network/metrics.md#lifecycle-application-foreground-metrics) for a list of metrics included with this event. ### Lifecycle application background @@ -123,7 +123,7 @@ The event is generated by the Lifecycle extension when: -To forward this event to the Adobe Experience Platform Edge Network, follow the steps outlined in [Configure a Rule to forward Lifecycle metrics to Platform](../../lifecycle-for-edge-network/index.md#configure-a-rule-to-forward-lifecycle-metrics-to-platform). +To forward this event to the Adobe Experience Platform Edge Network, follow the steps outlined in [Configure a Rule to forward Lifecycle metrics to Platform](../../../edge/lifecycle-for-edge-network/index.md#configure-a-rule-to-forward-lifecycle-metrics-to-platform). @@ -137,4 +137,4 @@ In Android, there is a 500 millisecond timeout between consecutive `lifecycleSta #### Data payload -The Lifecycle Application Background data payload is defined by the Platform Mobile Lifecycle Details XDM field group, and includes information about the application close type and previous session length. Please refer to [Lifecycle Application Background metrics](../../lifecycle-for-edge-network/metrics.md#lifecycle-application-background-metrics) for a list of metrics included with this event. +The Lifecycle Application Background data payload is defined by the Platform Mobile Lifecycle Details XDM field group, and includes information about the application close type and previous session length. Please refer to [Lifecycle Application Background metrics](../../../edge/lifecycle-for-edge-network/metrics.md#lifecycle-application-background-metrics) for a list of metrics included with this event. diff --git a/src/pages/documentation/mobile-core/lifecycle/index.md b/src/pages/home/base/mobile-core/lifecycle/index.md similarity index 100% rename from src/pages/documentation/mobile-core/lifecycle/index.md rename to src/pages/home/base/mobile-core/lifecycle/index.md diff --git a/src/pages/documentation/mobile-core/lifecycle/ios.md b/src/pages/home/base/mobile-core/lifecycle/ios.md similarity index 95% rename from src/pages/documentation/mobile-core/lifecycle/ios.md rename to src/pages/home/base/mobile-core/lifecycle/ios.md index 50e112afce..2c27e28066 100644 --- a/src/pages/documentation/mobile-core/lifecycle/ios.md +++ b/src/pages/home/base/mobile-core/lifecycle/ios.md @@ -12,7 +12,7 @@ keywords: -In version 4 of the iOS SDK, this implementation was completed automatically.

When upgrading to the Experience Platform SDK, you must add code to continue collecting Lifecycle metrics. For more information, see [Manual Lifecycle Implementation](../../upgrade-platform-sdks/lifecycle.md). +In version 4 of the iOS SDK, this implementation was completed automatically.

When upgrading to the Experience Platform SDK, you must add code to continue collecting Lifecycle metrics. For more information, see [Manual Lifecycle Implementation](../../../resources/upgrade-platform-sdks/lifecycle.md). ## Implementing Lifecycle metrics in iOS @@ -45,7 +45,7 @@ The following scenarios are known to falsely cause a crash to be reported by the * If you are debugging using Xcode, re-launching the app while it is running in the foreground will cause a crash. * You can avoid a crash in this scenario by backgrounding the app prior to re-launching the app from Xcode. * If your app is launched in the background because of an enabled background capability (e.g. - background fetch, location update), then `lifecycleStart` is called and the app never comes to the foreground, the next launch (whether in the background or foreground) will result in a crash. -* If you programmatically delete Adobe’s pause flag from `NSUserDefaults`, while the app is in the background, the next launch or resume causes a crash. +* If you programmatically delete Adobe's pause flag from `NSUserDefaults`, while the app is in the background, the next launch or resume causes a crash. ### How can I prevent false crashes from being reported? diff --git a/src/pages/documentation/mobile-core/lifecycle/metrics.md b/src/pages/home/base/mobile-core/lifecycle/metrics.md similarity index 100% rename from src/pages/documentation/mobile-core/lifecycle/metrics.md rename to src/pages/home/base/mobile-core/lifecycle/metrics.md diff --git a/src/pages/documentation/mobile-core/lifecycle/tabs/api-reference.md b/src/pages/home/base/mobile-core/lifecycle/tabs/api-reference.md similarity index 100% rename from src/pages/documentation/mobile-core/lifecycle/tabs/api-reference.md rename to src/pages/home/base/mobile-core/lifecycle/tabs/api-reference.md diff --git a/src/pages/documentation/mobile-core/lifecycle/tabs/index.md b/src/pages/home/base/mobile-core/lifecycle/tabs/index.md similarity index 99% rename from src/pages/documentation/mobile-core/lifecycle/tabs/index.md rename to src/pages/home/base/mobile-core/lifecycle/tabs/index.md index b47898cb36..ac8e4a3315 100644 --- a/src/pages/documentation/mobile-core/lifecycle/tabs/index.md +++ b/src/pages/home/base/mobile-core/lifecycle/tabs/index.md @@ -10,7 +10,7 @@ Add the Lifecycle extension and its dependency, the [Mobile Core](../index.md) e -Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../resources/manage-gradle-dependencies.md) for more information. +Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../../../resources/manage-gradle-dependencies.md) for more information. diff --git a/src/pages/documentation/mobile-core/platform-services/index.md b/src/pages/home/base/mobile-core/platform-services/index.md similarity index 100% rename from src/pages/documentation/mobile-core/platform-services/index.md rename to src/pages/home/base/mobile-core/platform-services/index.md diff --git a/src/pages/documentation/mobile-core/platform-services/network-service.md b/src/pages/home/base/mobile-core/platform-services/network-service.md similarity index 100% rename from src/pages/documentation/mobile-core/platform-services/network-service.md rename to src/pages/home/base/mobile-core/platform-services/network-service.md diff --git a/src/pages/documentation/mobile-core/platform-services/tabs/index.md b/src/pages/home/base/mobile-core/platform-services/tabs/index.md similarity index 100% rename from src/pages/documentation/mobile-core/platform-services/tabs/index.md rename to src/pages/home/base/mobile-core/platform-services/tabs/index.md diff --git a/src/pages/documentation/mobile-core/platform-services/tabs/network-service.md b/src/pages/home/base/mobile-core/platform-services/tabs/network-service.md similarity index 100% rename from src/pages/documentation/mobile-core/platform-services/tabs/network-service.md rename to src/pages/home/base/mobile-core/platform-services/tabs/network-service.md diff --git a/src/pages/documentation/mobile-core/release-notes.md b/src/pages/home/base/mobile-core/release-notes.md similarity index 100% rename from src/pages/documentation/mobile-core/release-notes.md rename to src/pages/home/base/mobile-core/release-notes.md diff --git a/src/pages/documentation/mobile-core/rules-engine/assets/index/rule-example.png b/src/pages/home/base/mobile-core/rules-engine/assets/index/rule-example.png similarity index 100% rename from src/pages/documentation/mobile-core/rules-engine/assets/index/rule-example.png rename to src/pages/home/base/mobile-core/rules-engine/assets/index/rule-example.png diff --git a/src/pages/documentation/mobile-core/rules-engine/consequence-details.md b/src/pages/home/base/mobile-core/rules-engine/consequence-details.md similarity index 97% rename from src/pages/documentation/mobile-core/rules-engine/consequence-details.md rename to src/pages/home/base/mobile-core/rules-engine/consequence-details.md index cfcaf72817..f1f8f5f11c 100644 --- a/src/pages/documentation/mobile-core/rules-engine/consequence-details.md +++ b/src/pages/home/base/mobile-core/rules-engine/consequence-details.md @@ -17,7 +17,7 @@ The Adobe Experience Platform Mobile SDK supports multiple types of rule consequ ## Analytics consequence -This rule consequence is currently handled by the [Analytics](../../adobe-analytics/index.md) extension. +This rule consequence is currently handled by the [Analytics](../../../solution/adobe-analytics/index.md) extension. | Friendly name | Key | Type | Required | Description | | :--- | :--- | :--- | :--- | :--- | @@ -27,7 +27,7 @@ This rule consequence is currently handled by the [Analytics](../../adobe-analyt ## In-App message consequence -This rule consequence is currently handled by the [Campaign](../../adobe-campaign-standard/index.md) extension. +This rule consequence is currently handled by the [Campaign](../../../solution/adobe-campaign-standard/index.md) extension. | Friendly name | Key | Type | Required | Description | | :--- | :--- | :--- | :--- | :--- | @@ -92,4 +92,4 @@ This rule is currently handled by the [Mobile Core](../index.md) extension. | Friendly name | Key | Type | Required | Description | | :--- | :--- | :--- | :--- | :--- | -| Event data | `eventdata` | object | Yes | Dictionary of pairs to overlay on the triggering event's EventData. For more information, see the [attach data tutorial](../../user-guides/attach-data.md). | +| Event data | `eventdata` | object | Yes | Dictionary of pairs to overlay on the triggering event's EventData. For more information, see the [attach data tutorial](../../../resources/user-guides/attach-data.md). | diff --git a/src/pages/documentation/mobile-core/rules-engine/index.md b/src/pages/home/base/mobile-core/rules-engine/index.md similarity index 100% rename from src/pages/documentation/mobile-core/rules-engine/index.md rename to src/pages/home/base/mobile-core/rules-engine/index.md diff --git a/src/pages/documentation/mobile-core/rules-engine/technical-details.md b/src/pages/home/base/mobile-core/rules-engine/technical-details.md similarity index 100% rename from src/pages/documentation/mobile-core/rules-engine/technical-details.md rename to src/pages/home/base/mobile-core/rules-engine/technical-details.md diff --git a/src/pages/documentation/mobile-core/signal/api-reference.md b/src/pages/home/base/mobile-core/signal/api-reference.md similarity index 90% rename from src/pages/documentation/mobile-core/signal/api-reference.md rename to src/pages/home/base/mobile-core/signal/api-reference.md index 9159d72779..d5b788f264 100644 --- a/src/pages/documentation/mobile-core/signal/api-reference.md +++ b/src/pages/home/base/mobile-core/signal/api-reference.md @@ -40,7 +40,7 @@ Flutter -Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../../api-reference.md#registerextensions) API instead. +Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../api-reference.md#registerextensions) API instead. Registers the Signal extension with the Mobile Core. @@ -56,4 +56,4 @@ Android ## collectPii -The Signal extension can be used to handle `collectPii` rules. For more information, see the [collectPii](../../api-reference.md#collectpii) API. +The Signal extension can be used to handle `collectPii` rules. For more information, see the [collectPii](../api-reference.md#collectpii) API. diff --git a/src/pages/documentation/mobile-core/signal/assets/rules-engine-integration/data-element-example-collect-pii.png b/src/pages/home/base/mobile-core/signal/assets/rules-engine-integration/data-element-example-collect-pii.png similarity index 100% rename from src/pages/documentation/mobile-core/signal/assets/rules-engine-integration/data-element-example-collect-pii.png rename to src/pages/home/base/mobile-core/signal/assets/rules-engine-integration/data-element-example-collect-pii.png diff --git a/src/pages/documentation/mobile-core/signal/assets/rules-engine-integration/postback-pii-token-example.png b/src/pages/home/base/mobile-core/signal/assets/rules-engine-integration/postback-pii-token-example.png similarity index 100% rename from src/pages/documentation/mobile-core/signal/assets/rules-engine-integration/postback-pii-token-example.png rename to src/pages/home/base/mobile-core/signal/assets/rules-engine-integration/postback-pii-token-example.png diff --git a/src/pages/documentation/mobile-core/signal/assets/rules-engine-integration/send-postback-action.png b/src/pages/home/base/mobile-core/signal/assets/rules-engine-integration/send-postback-action.png similarity index 100% rename from src/pages/documentation/mobile-core/signal/assets/rules-engine-integration/send-postback-action.png rename to src/pages/home/base/mobile-core/signal/assets/rules-engine-integration/send-postback-action.png diff --git a/src/pages/documentation/mobile-core/signal/index.md b/src/pages/home/base/mobile-core/signal/index.md similarity index 96% rename from src/pages/documentation/mobile-core/signal/index.md rename to src/pages/home/base/mobile-core/signal/index.md index 1cfb416a78..b946366cfe 100644 --- a/src/pages/documentation/mobile-core/signal/index.md +++ b/src/pages/home/base/mobile-core/signal/index.md @@ -36,7 +36,7 @@ For more information about creating and configuring a rule in the Data Collectio -Using dynamic dependency versions is not recommended for production apps. Refer to this [page](../resources/manage-gradle-dependencies.md) for managing gradle dependencies. +Using dynamic dependency versions is not recommended for production apps. Refer to this [page](../../../resources/manage-gradle-dependencies.md) for managing gradle dependencies. diff --git a/src/pages/documentation/mobile-core/signal/rules-engine-integration.md b/src/pages/home/base/mobile-core/signal/rules-engine-integration.md similarity index 98% rename from src/pages/documentation/mobile-core/signal/rules-engine-integration.md rename to src/pages/home/base/mobile-core/signal/rules-engine-integration.md index 67bb2e0cf9..16c3b45e5f 100644 --- a/src/pages/documentation/mobile-core/signal/rules-engine-integration.md +++ b/src/pages/home/base/mobile-core/signal/rules-engine-integration.md @@ -98,7 +98,7 @@ The following example shows how to use the data that is passed to the MobileCore ![Send Postback action example](./assets/rules-engine-integration/send-postback-action.png) -For more information about `collectPii` and its usage, see `collectPii` in the [Mobile Core API reference](../../api-reference.md#collectpii). +For more information about `collectPii` and its usage, see `collectPii` in the [Mobile Core API reference](../api-reference.md#collectpii). ### Using tokens in Open URL rule actions diff --git a/src/pages/documentation/mobile-core/signal/tabs/api-reference.md b/src/pages/home/base/mobile-core/signal/tabs/api-reference.md similarity index 100% rename from src/pages/documentation/mobile-core/signal/tabs/api-reference.md rename to src/pages/home/base/mobile-core/signal/tabs/api-reference.md diff --git a/src/pages/documentation/mobile-core/signal/tabs/index.md b/src/pages/home/base/mobile-core/signal/tabs/index.md similarity index 97% rename from src/pages/documentation/mobile-core/signal/tabs/index.md rename to src/pages/home/base/mobile-core/signal/tabs/index.md index 4e199a11fb..dacc8fa9b4 100644 --- a/src/pages/documentation/mobile-core/signal/tabs/index.md +++ b/src/pages/home/base/mobile-core/signal/tabs/index.md @@ -10,7 +10,7 @@ Add the Signal extension and its dependency, the [Mobile Core](../index.md) exte -Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../resources/manage-gradle-dependencies.md) for more information. +Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../../../resources/manage-gradle-dependencies.md) for more information. diff --git a/src/pages/documentation/mobile-core/tabs/api-reference.md b/src/pages/home/base/mobile-core/tabs/api-reference.md similarity index 100% rename from src/pages/documentation/mobile-core/tabs/api-reference.md rename to src/pages/home/base/mobile-core/tabs/api-reference.md diff --git a/src/pages/documentation/profile/api-reference.md b/src/pages/home/base/profile/api-reference.md similarity index 97% rename from src/pages/documentation/profile/api-reference.md rename to src/pages/home/base/profile/api-reference.md index 8ccf532396..3ee8df411a 100644 --- a/src/pages/documentation/profile/api-reference.md +++ b/src/pages/home/base/profile/api-reference.md @@ -46,7 +46,7 @@ iOS -This API is only available in Android and is deprecated starting in version 2.0.0 of the UserProfile extension. Use [`MobileCore.registerExtensions()`](../api-reference.md#registerextensions) API instead. +This API is only available in Android and is deprecated starting in version 2.0.0 of the UserProfile extension. Use [`MobileCore.registerExtensions()`](../mobile-core/api-reference.md#registerextensions) API instead. Registers the Profile extension with the Mobile Core extension. diff --git a/src/pages/documentation/profile/assets/index/configuration.png b/src/pages/home/base/profile/assets/index/configuration.png similarity index 100% rename from src/pages/documentation/profile/assets/index/configuration.png rename to src/pages/home/base/profile/assets/index/configuration.png diff --git a/src/pages/documentation/profile/index.md b/src/pages/home/base/profile/index.md similarity index 100% rename from src/pages/documentation/profile/index.md rename to src/pages/home/base/profile/index.md diff --git a/src/pages/documentation/profile/release-notes.md b/src/pages/home/base/profile/release-notes.md similarity index 100% rename from src/pages/documentation/profile/release-notes.md rename to src/pages/home/base/profile/release-notes.md diff --git a/src/pages/documentation/profile/tabs/api-reference.md b/src/pages/home/base/profile/tabs/api-reference.md similarity index 100% rename from src/pages/documentation/profile/tabs/api-reference.md rename to src/pages/home/base/profile/tabs/api-reference.md diff --git a/src/pages/documentation/profile/tabs/index.md b/src/pages/home/base/profile/tabs/index.md similarity index 97% rename from src/pages/documentation/profile/tabs/index.md rename to src/pages/home/base/profile/tabs/index.md index 5a98ecd7af..ef03bbfca7 100644 --- a/src/pages/documentation/profile/tabs/index.md +++ b/src/pages/home/base/profile/tabs/index.md @@ -14,7 +14,7 @@ implementation 'com.adobe.marketing.mobile:userprofile' -Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../resources/manage-gradle-dependencies.md) for more information. +Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../../resources/manage-gradle-dependencies.md) for more information. diff --git a/src/pages/home/current-sdk-versions.md b/src/pages/home/current-sdk-versions.md new file mode 100644 index 0000000000..0848f24607 --- /dev/null +++ b/src/pages/home/current-sdk-versions.md @@ -0,0 +1,162 @@ +--- +title: Current SDK versions +description: An overview that shows the currently available mobile extensions, along with their versions, for each platform. +keywords: +- Guide +- Versions +--- + +# Current SDK versions + +## Android + + + +**Migrate to latest Mobile SDKs for Android**
If you are currently using the Mobile Core 1.x and the compatible libraries, please see the [Migrating to latest Mobile SDKs for Android](https://developer.adobe.com/client-sdks/previous-versions/documentation/migrate-to-android/) guide for next steps.
The latest Mobile SDKs for Android support Google Android API 19 (KitKat) or later. + + + +**Start using the BOM artifact for Android**
The Adobe SDK BOM artifact enables managing all compatible versions of Adobe Experience Platform Android extensions by specifying a single BOM version. This is now the recommended way to manage Android SDKs. For the installation instructions, see the steps to [add dependencies to your project](../home/getting-started/get-the-sdk.md#installation-instructions). The BOM project is open-sourced. For more information, please refer to the [README](https://github.com/adobe/aepsdk-commons/blob/main/android/aepsdk-bom/README.md) file located in the public repository. + +### Android BOM + +
+ +
+ +descriptive text + +
+ +The Android BOM (Bill of Materials) artifact has been released to Maven Central. The above Maven Badge displays the latest BOM version. To obtain information about which Android extension versions are mapped to the latest BOM, refer to the [release notes](https://developer.adobe.com/client-sdks/release-notes/). + +### Android extensions + +
+ +| Extension | Maven | Github | +|---|---|---| +| [Mobile Core](./base/mobile-core/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/core.svg?logo=android&logoColor=white&label=core&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/core) | [Link](https://github.com/adobe/aepsdk-core-android) | +| [Rules Engine](./base/mobile-core/rules-engine/index.md) | Bundled in Mobile Core | — | +| [Signal](./base/mobile-core/signal/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/signal.svg?logo=android&logoColor=white&label=signal&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/signal) | [Link](https://github.com/adobe/aepsdk-core-android) | +| [Lifecycle](./base/mobile-core/lifecycle/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/lifecycle.svg?logo=android&logoColor=white&label=lifecycle&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/lifecycle) | [Link](https://github.com/adobe/aepsdk-core-android) | +| [Identity](./base/mobile-core/identity/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/identity.svg?logo=android&logoColor=white&label=identity&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/identity) | [Link](https://github.com/adobe/aepsdk-core-android) | +| [Profile](./base/profile/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/userprofile.svg?logo=android&logoColor=white&label=userprofile&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/userprofile) | [Link](https://github.com/adobe/aepsdk-userprofile-android) | +| [Adobe Experience Platform Assurance](./base/assurance/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/assurance.svg?logo=android&logoColor=white&label=assurance&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/assurance) | [Link](https://github.com/adobe/aepsdk-assurance-android) | +| [Adobe Experience Platform Edge Network](../edge/edge-network/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/edge.svg?logo=android&logoColor=white&label=edge&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/edge) | [Link](https://github.com/adobe/aepsdk-edge-android) | +| [Identity for Edge Network](../edge/identity-for-edge-network/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/edgeidentity.svg?logo=android&logoColor=white&label=edgeidentity&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/edgeidentity) | [Link](https://github.com/adobe/aepsdk-edgeidentity-android) | +| [Consent for Edge Network](../edge/consent-for-edge-network/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/edgeconsent.svg?logo=android&logoColor=white&label=edgeconsent&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/edgeconsent) | [Link](https://github.com/adobe/aepsdk-edgeconsent-android) | +| [Media for Edge Network](../edge/media-for-edge-network/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/edgemedia.svg?logo=android&logoColor=white&label=edgemedia&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/edgemedia) | [Link](https://github.com/adobe/aepsdk-edgemedia-android) | +| [Edge Bridge](../solution/adobe-analytics/migrate-to-edge-network.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/edgebridge.svg?logo=android&logoColor=white&label=edgebridge&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/edgebridge) | [Link](https://github.com/adobe/aepsdk-edgebridge-android) | +| [Adobe Journey Optimizer](../edge/adobe-journey-optimizer/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/messaging.svg?logo=android&logoColor=white&label=messaging&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/messaging) | [Link](https://github.com/adobe/aepsdk-messaging-android) | +| [Adobe Journey Optimizer - Decisioning](../edge/adobe-journey-optimizer-decisioning/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/optimize.svg?logo=android&logoColor=white&label=optimize&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/optimize) | [Link](https://github.com/adobe/aepsdk-optimize-android) | +| [Places Service](https://experienceleague.adobe.com/docs/places/using/home.html) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/places.svg?logo=android&logoColor=white&label=places&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/places) | [Link](https://github.com/adobe/aepsdk-places-android) | +| [Adobe Analytics](../solution/adobe-analytics/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/analytics.svg?logo=android&logoColor=white&label=analytics&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/analytics) | [Link](https://github.com/adobe/aepsdk-analytics-android) | +| [Adobe Analytics - Media Analytics for Audio & Video](../solution/adobe-media-analytics/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/media.svg?logo=android&logoColor=white&label=media&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/media) | [Link](https://github.com/adobe/aepsdk-media-android) | +| [Adobe Target](../solution/adobe-target/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/target.svg?logo=android&logoColor=white&label=target&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/target) | [Link](https://github.com/adobe/aepsdk-target-android) | +| [Adobe Campaign Standard](../solution/adobe-campaign-standard/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/campaign.svg?logo=android&logoColor=white&label=campaign&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/campaign) | [Link](https://github.com/adobe/aepsdk-campaign-android) | +| [Adobe Campaign Classic](../solution/adobe-campaign-classic/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/campaignclassic.svg?logo=android&logoColor=white&label=campaignclassic&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/campaignclassic) | [Link](https://github.com/adobe/aepsdk-campaignclassic-android) | +| [Adobe Audience Manager](../solution/adobe-audience-manager/index.md) | [![Maven Central](https://img.shields.io/maven-central/v/com.adobe.marketing.mobile/audience.svg?logo=android&logoColor=white&label=audience&style=flat-square)](https://mvnrepository.com/artifact/com.adobe.marketing.mobile/audience) | [Link](https://github.com/adobe/aepsdk-audience-android) | +| Adobe Analytics - Mobile Services | Deprecated | | +| Places Monitor | Deprecated | | + +## iOS + + + +**Migrate to latest Mobile SDKs for iOS**
If you are currently using the Objective-C (ACP-prefix) libraries, please see the [Migrating to latest Mobile SDKs for iOS](https://developer.adobe.com/client-sdks/previous-versions/documentation/migrate-to-swift/) guide for next steps.
The latest Mobile SDK for iOS supports iOS 11 or later; requires Swift 5.1 or newer and Xcode 14.1 or newer. In addition to **CocoaPods**, **Swift Package Manager (SPM)** installation option is supported with the latest iOS Swift SDKs! Find more details at the GitHub links below. + +| Extension | tvOS | App Extension | CocoaPods | GitHub | +|---|---|---|---|---| +| [Mobile Core](./base/mobile-core/index.md) | ✔️ | ✔️ | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-core-ios.svg?label=AEPCore&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPCore) | [Link](https://github.com/adobe/aepsdk-core-ios) | +| [Rules Engine](./base/mobile-core/rules-engine/index.md) | ✔️ | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-rulesengine-ios.svg?label=AEPRulesEngine&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPRulesEngine) | [Link](https://github.com/adobe/aepsdk-rulesengine-ios) | +| [Signal](./base/mobile-core/signal/index.md) | ✔️ | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-core-ios.svg?label=AEPSignal&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPSignal) | [Link](https://github.com/adobe/aepsdk-core-ios) | +| [Identity](./base/mobile-core/identity/index.md) | ✔️ | ✔️ | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-core-ios.svg?label=AEPIdentity&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPIdentity) | [Link](https://github.com/adobe/aepsdk-core-ios) | +| [Lifecycle](./base/mobile-core/lifecycle/index.md) | ✔️ | ✔️ | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-core-ios.svg?label=AEPLifecycle&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPLifecycle) | [Link](https://github.com/adobe/aepsdk-core-ios) | +| [Profile](./base/profile/index.md) | | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-userprofile-ios.svg?label=AEPUserProfile&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPUserProfile) | [Link](https://github.com/adobe/aepsdk-userprofile-ios) | +| [Adobe Experience Platform Assurance](./base/assurance/index.md) | | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-assurance-ios.svg?label=AEPAssurance&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPAssurance) | [Link](https://github.com/adobe/aepsdk-assurance-ios) | +| [Adobe Experience Platform Edge Network](../edge/edge-network/index.md) | ✔️ | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-edge-ios.svg?label=AEPEdge&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPEdge) | [Link](https://github.com/adobe/aepsdk-edge-ios) | +| [Identity for Edge Network](../edge/identity-for-edge-network/index.md) | ✔️ | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-edgeidentity-ios.svg?label=AEPEdgeIdentity&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPEdgeIdentity) | [Link](https://github.com/adobe/aepsdk-edgeidentity-ios) | +| [Consent for Edge Network](../edge/consent-for-edge-network/index.md) | ✔️ | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-edgeconsent-ios.svg?label=AEPEdgeConsent&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPEdgeConsent) | [Link](https://github.com/adobe/aepsdk-edgeconsent-ios) | +| [Media for Edge Network](../edge/media-for-edge-network/index.md) | ✔️ | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-edgemedia-ios.svg?label=AEPEdgeMedia&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPEdgeMedia) | [Link](https://github.com/adobe/aepsdk-edgemedia-ios) | +| [Edge Bridge](../adobe-analytics/migrate-to-edge-network.md) | | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-edgebridge-ios.svg?label=AEPEdgeBridge&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPEdgeBridge) | [Link](https://github.com/adobe/aepsdk-edgebridge-ios) | +| [Adobe Journey Optimizer](../edge/adobe-journey-optimizer/index.md) | | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-messaging-ios.svg?label=AEPMessaging&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPMessaging) | [Link](https://github.com/adobe/aepsdk-messaging-ios) | +| [Adobe Journey Optimizer - Decisioning](../edge/adobe-journey-optimizer-decisioning/index.md) | | ✔️ | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-optimize-ios.svg?label=AEPOptimize&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPOptimize) | [Link](https://github.com/adobe/aepsdk-optimize-ios) | +| [Places Service](https://experienceleague.adobe.com/docs/places/using/home.html) | | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-places-ios.svg?label=AEPPlaces&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPPlaces) | [Link](https://github.com/adobe/aepsdk-places-ios) | +| [Adobe Analytics](../solution/adobe-analytics/index.md) | ✔️ | ✔️ | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-analytics-ios.svg?label=AEPAnalytics&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPAnalytics) | [Link](https://github.com/adobe/aepsdk-analytics-ios) | +| [Adobe Analytics - Media Analytics for Audio & Video](../solution/adobe-media-analytics/index.md) | ✔️ | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-media-ios.svg?label=AEPMedia&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPMedia) | [Link](https://github.com/adobe/aepsdk-media-ios) | +| [Adobe Target](../solution/adobe-target/index.md) | | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-target-ios.svg?label=AEPTarget&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPTarget) | [Link](https://github.com/adobe/aepsdk-target-ios) | +| [Adobe Campaign Standard](../solution/adobe-campaign-standard/index.md) | | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-campaign-ios.svg?label=AEPCampaign&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPCampaign) | [Link](https://github.com/adobe/aepsdk-campaign-ios) | +| [Adobe Campaign Classic](../solution/adobe-campaign-classic/index.md) | | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-campaignclassic-ios.svg?label=AEPCampaignClassic&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPCampaignClassic) | [Link](https://github.com/adobe/aepsdk-campaignclassic-ios) | +| [Adobe Audience Manager](../solution/adobe-audience-manager/index.md) | | | [![CocoaPods](https://img.shields.io/github/v/release/adobe/aepsdk-audience-ios.svg?label=AEPAudience&logo=apple&logoColor=white&color=orange&sort=semver)](https://cocoapods.org/pods/AEPAudience) | [Link](https://github.com/adobe/aepsdk-audience-ios) | +| Adobe Analytics - Mobile Services | | Deprecated | | | +| Places Monitor | | Deprecated | | | + +## React Native + +Adobe Experience Platform Mobile SDK plugin for React Native supports React Native **version 0.60.0 or later**. For the latest installation instructions, see the README file in the [`aepsdk-react-native`](https://github.com/adobe/aepsdk-react-native#installation) repository. + + + +Adobe Experience Platform Mobile SDK plugins for React Native are compatible with the [Android](#android) and [iOS](#ios) native libraries. + + + +If you are currently using the ACP-prefixed React Native libraries, please see [the guide to migrate to latest available version](https://github.com/adobe/aepsdk-react-native/blob/main/docs/migration.md) for React Native. + +| Extension | npmjs | +|---|---| +| [Mobile Core](./base/mobile-core/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepcore.svg?color=green&label=%40adobe%2Freact-native-aepcore&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepcore) | +| [Profile](./base/profile/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepuserprofile.svg?color=green&label=%40adobe%2Freact-native-aepuserprofile&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepuserprofile) | +| [Assurance](./base/assurance/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepassurance.svg?color=green&label=%40adobe%2Freact-native-aepassurance&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepassurance) | +| [Edge](../edge/edge-network/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepedge.svg?color=green&label=%40adobe%2Freact-native-aepedge&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepedge) | +| [EdgeIdentity](../edge/identity-for-edge-network/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepedgeidentity.svg?color=green&label=%40adobe%2Freact-native-aepedgeidentity&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepedgeidentity) | +| [EdgeConsent](../edge/consent-for-edge-network/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepedgeconsent.svg?color=green&label=%40adobe%2Freact-native-aepedgeconsent&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepedgeconsent) | +| [Edge Bridge](../solution/adobe-analytics/migrate-to-edge-network.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepedgebridge.svg?color=green&label=%40adobe%2Freact-native-aepedgebridge&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepedgebridge) | +| [Messaging](../edge/adobe-journey-optimizer-decisioning/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepmessaging.svg?color=green&label=%40adobe%2Freact-native-aepmessaging&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepmessaging) | +| [Optimize](../edge/adobe-journey-optimizer/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepoptimize.svg?color=green&label=%40adobe%2Freact-native-aepoptimize&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepoptimize) | +| [Places](../solution/places/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepplaces.svg?color=green&label=%40adobe%2Freact-native-aepplaces&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepplaces) | +| [Target](../solution/adobe-target/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aeptarget.svg?color=green&label=%40adobe%2Freact-native-aeptarget&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aeptarget) | +| [Campaign Classic](../solution/adobe-campaign-classic/index.md) | [![npm version](https://img.shields.io/npm/v/@adobe/react-native-aepcampaignclassic.svg?color=green&label=%40adobe%2Freact-native-aepcampaignclassic&logo=npm&style=flat-square)](https://badge.fury.io/js/%40adobe%2Freact-native-aepcampaignclassic) | +| Adobe Analytics| Not Supported - Analytics workflows supported through Edge or Edge Bridge extensions, see [guide to migrate to Edge Network](../solution/adobe-analytics/migrate-to-edge-network.md). | +| Adobe Media Analytics| Not Supported | +| Adobe Audience| Not Supported | +| Adobe Campaign Standard| Not Supported | +| Place Monitor| Deprecated | + +## Flutter + +Adobe Experience Platform Mobile SDK plugin for Flutter supports Flutter **versions 2.0.0 or later**. For the latest installation instructions, see the `README` file in the [`aepsdk-flutter`](https://github.com/adobe/aepsdk_flutter#installation) repository. + + + +Adobe Experience Platform Mobile SDK plugins for Flutter are compatible with the [Android](#android) and [iOS](#ios) native libraries. + + + +If you are currently using the ACP-prefixed Flutter libraries, please see [the guide to migrate to latest available version](https://github.com/adobe/aepsdk_flutter/blob/main/docs/migration.md) for Flutter. + +| Extension | pub.dev | +|---|---| +| [Mobile Core](./base/mobile-core/index.md) | [![pub package](https://img.shields.io/pub/v/flutter_aepcore.svg)](https://pub.dartlang.org/packages/flutter_aepcore) | +| [Assurance](./base/assurance/index.md) | [![pub package](https://img.shields.io/pub/v/flutter_aepassurance.svg)](https://pub.dartlang.org/packages/flutter_aepassurance) | +| [Edge](../edge/edge-network/index.md) | [![pub package](https://img.shields.io/pub/v/flutter_aepedge.svg)](https://pub.dartlang.org/packages/flutter_aepedge) | +| [EdgeIdentity](../edge/identity-for-edge-network/index.md) | [![pub package](https://img.shields.io/pub/v/flutter_aepedgeidentity.svg)](https://pub.dartlang.org/packages/flutter_aepedgeidentity) | +| [EdgeConsent](../edge/consent-for-edge-network/index.md) | [![pub package](https://img.shields.io/pub/v/flutter_aepedgeconsent.svg)](https://pub.dartlang.org/packages/flutter_aepedgeconsent) | +| [Edge Bridge](../solution/adobe-analytics/migrate-to-edge-network.md) | [![pub package](https://img.shields.io/pub/v/flutter_aepedgebridge.svg)](https://pub.dartlang.org/packages/flutter_aepedgebridge) | +| [UserProfile](./base/profile/index.md) | [![pub package](https://img.shields.io/pub/v/flutter_aepuserprofile.svg)](https://pub.dartlang.org/packages/flutter_aepuserprofile) | +| Adobe Analytics| Not Supported - Analytics workflows supported through Edge or Edge Bridge extensions, see [guide to migrate to Edge Network](../solution/adobe-analytics/migrate-to-edge-network.md). | +| Place Service | Not Supported | +| Place Monitor| Deprecated | + +## Roku + +
+ +
+ + + +
+ +The Adobe Experience Platform SDK for Roku supports Roku OS 11.0 or later. The project is open sourced in GitHub. For more information, refer to the [aepsdk-roku](https://github.com/adobe/aepsdk-roku) repository. diff --git a/src/pages/documentation/getting-started/assets/configure-datastreams/configure-datastream.png b/src/pages/home/getting-started/assets/configure-datastreams/configure-datastream.png similarity index 100% rename from src/pages/documentation/getting-started/assets/configure-datastreams/configure-datastream.png rename to src/pages/home/getting-started/assets/configure-datastreams/configure-datastream.png diff --git a/src/pages/documentation/getting-started/assets/configure-datastreams/create-datastream.png b/src/pages/home/getting-started/assets/configure-datastreams/create-datastream.png similarity index 100% rename from src/pages/documentation/getting-started/assets/configure-datastreams/create-datastream.png rename to src/pages/home/getting-started/assets/configure-datastreams/create-datastream.png diff --git a/src/pages/documentation/getting-started/assets/create-a-mobile-property/configure-extension.png b/src/pages/home/getting-started/assets/create-a-mobile-property/configure-extension.png similarity index 100% rename from src/pages/documentation/getting-started/assets/create-a-mobile-property/configure-extension.png rename to src/pages/home/getting-started/assets/create-a-mobile-property/configure-extension.png diff --git a/src/pages/documentation/getting-started/assets/create-a-mobile-property/create-mobile-property.png b/src/pages/home/getting-started/assets/create-a-mobile-property/create-mobile-property.png similarity index 100% rename from src/pages/documentation/getting-started/assets/create-a-mobile-property/create-mobile-property.png rename to src/pages/home/getting-started/assets/create-a-mobile-property/create-mobile-property.png diff --git a/src/pages/documentation/getting-started/assets/index/edge-network-integration.png b/src/pages/home/getting-started/assets/index/edge-network-integration.png similarity index 100% rename from src/pages/documentation/getting-started/assets/index/edge-network-integration.png rename to src/pages/home/getting-started/assets/index/edge-network-integration.png diff --git a/src/pages/documentation/getting-started/assets/index/solution-specific-integration.png b/src/pages/home/getting-started/assets/index/solution-specific-integration.png similarity index 100% rename from src/pages/documentation/getting-started/assets/index/solution-specific-integration.png rename to src/pages/home/getting-started/assets/index/solution-specific-integration.png diff --git a/src/pages/documentation/getting-started/assets/set-up-schemas-and-datasets/create-dataset.png b/src/pages/home/getting-started/assets/set-up-schemas-and-datasets/create-dataset.png similarity index 100% rename from src/pages/documentation/getting-started/assets/set-up-schemas-and-datasets/create-dataset.png rename to src/pages/home/getting-started/assets/set-up-schemas-and-datasets/create-dataset.png diff --git a/src/pages/documentation/getting-started/assets/set-up-schemas-and-datasets/create-schema.png b/src/pages/home/getting-started/assets/set-up-schemas-and-datasets/create-schema.png similarity index 100% rename from src/pages/documentation/getting-started/assets/set-up-schemas-and-datasets/create-schema.png rename to src/pages/home/getting-started/assets/set-up-schemas-and-datasets/create-schema.png diff --git a/src/pages/documentation/getting-started/assets/validate/assurance-analytics.png b/src/pages/home/getting-started/assets/validate/assurance-analytics.png similarity index 100% rename from src/pages/documentation/getting-started/assets/validate/assurance-analytics.png rename to src/pages/home/getting-started/assets/validate/assurance-analytics.png diff --git a/src/pages/documentation/getting-started/assets/validate/assurance-places.png b/src/pages/home/getting-started/assets/validate/assurance-places.png similarity index 100% rename from src/pages/documentation/getting-started/assets/validate/assurance-places.png rename to src/pages/home/getting-started/assets/validate/assurance-places.png diff --git a/src/pages/documentation/getting-started/assets/validate/configuration-response.png b/src/pages/home/getting-started/assets/validate/configuration-response.png similarity index 100% rename from src/pages/documentation/getting-started/assets/validate/configuration-response.png rename to src/pages/home/getting-started/assets/validate/configuration-response.png diff --git a/src/pages/documentation/getting-started/configure-datastreams.md b/src/pages/home/getting-started/configure-datastreams.md similarity index 100% rename from src/pages/documentation/getting-started/configure-datastreams.md rename to src/pages/home/getting-started/configure-datastreams.md diff --git a/src/pages/documentation/getting-started/create-a-mobile-property.md b/src/pages/home/getting-started/create-a-mobile-property.md similarity index 97% rename from src/pages/documentation/getting-started/create-a-mobile-property.md rename to src/pages/home/getting-started/create-a-mobile-property.md index 22f2b8ae93..bbfe485cf9 100644 --- a/src/pages/documentation/getting-started/create-a-mobile-property.md +++ b/src/pages/home/getting-started/create-a-mobile-property.md @@ -32,14 +32,14 @@ After Data Collection UI rights have been added to your Adobe ID, log in to the 3. Select **New Property**. 4. Type a name for the property and select **Mobile** as the platform. - If necessary, you can change the [**Privacy**](../resources/privacy-and-gdpr.md#set-and-get-privacy-status) setting later. + If necessary, you can change the [**Privacy**](../../resources/privacy-and-gdpr.md#set-and-get-privacy-status) setting later. 5. Select **Save** to create the mobile property. 6. Search for the property you just created and select it to open it. -The default privacy status is set to _opted in_ and might impact data collection. For more information, see [Privacy and GDPR](../resources/privacy-and-gdpr.md). +The default privacy status is set to _opted in_ and might impact data collection. For more information, see [Privacy and GDPR](../../resources/privacy-and-gdpr.md). ![Setting default privacy status](./assets/create-a-mobile-property/create-mobile-property.png) diff --git a/src/pages/documentation/getting-started/enable-debug-logging.md b/src/pages/home/getting-started/enable-debug-logging.md similarity index 92% rename from src/pages/documentation/getting-started/enable-debug-logging.md rename to src/pages/home/getting-started/enable-debug-logging.md index d02fc97a10..0cc115a50d 100644 --- a/src/pages/documentation/getting-started/enable-debug-logging.md +++ b/src/pages/home/getting-started/enable-debug-logging.md @@ -59,17 +59,17 @@ Unity ## Lifecycle metrics -Lifecycle metrics are an optional, but valuable feature provided by the Adobe Experience Platform SDK. It provides out-of-the-box, application lifecycle information about your app user. A complete list of available metrics is provided in the [lifecycle documentation](../mobile-core/lifecycle/index.md). +Lifecycle metrics are an optional, but valuable feature provided by the Adobe Experience Platform SDK. It provides out-of-the-box, application lifecycle information about your app user. A complete list of available metrics is provided in the [lifecycle documentation](../base/mobile-core/lifecycle/index.md). These metrics contain information on the app user's engagement lifecycle such as device information, install or upgrade information, and session start and pause times. You may also set additional lifecycle metrics. -This section shows you how to collect lifecycle metrics. To view, and report on this data in those respective solutions, you need to set up [Adobe Analytics](../adobe-analytics/index.md) or other Experience Cloud solution extensions. +This section shows you how to collect lifecycle metrics. To view, and report on this data in those respective solutions, you need to set up [Adobe Analytics](../../solution/adobe-analytics/index.md) or other Experience Cloud solution extensions. -Lifecycle metrics are now available for Edge Network implementations. For more details about the XDM-based lifecycle metrics, see [Lifecycle for Edge Network](../lifecycle-for-edge-network/index.md). +Lifecycle metrics are now available for Edge Network implementations. For more details about the XDM-based lifecycle metrics, see [Lifecycle for Edge Network](../../edge/lifecycle-for-edge-network/index.md). @@ -101,4 +101,4 @@ Xamarin --> -For more information, see the documentation on [Lifecycle metrics](../mobile-core/lifecycle/index.md). +For more information, see the documentation on [Lifecycle metrics](../base/mobile-core/lifecycle/index.md). diff --git a/src/pages/documentation/getting-started/get-the-sdk.md b/src/pages/home/getting-started/get-the-sdk.md similarity index 100% rename from src/pages/documentation/getting-started/get-the-sdk.md rename to src/pages/home/getting-started/get-the-sdk.md diff --git a/src/pages/documentation/getting-started/index.md b/src/pages/home/getting-started/index.md similarity index 100% rename from src/pages/documentation/getting-started/index.md rename to src/pages/home/getting-started/index.md diff --git a/src/pages/documentation/getting-started/set-up-schemas-and-datasets.md b/src/pages/home/getting-started/set-up-schemas-and-datasets.md similarity index 100% rename from src/pages/documentation/getting-started/set-up-schemas-and-datasets.md rename to src/pages/home/getting-started/set-up-schemas-and-datasets.md diff --git a/src/pages/documentation/getting-started/tabs/enable-debug-logging.md b/src/pages/home/getting-started/tabs/enable-debug-logging.md similarity index 100% rename from src/pages/documentation/getting-started/tabs/enable-debug-logging.md rename to src/pages/home/getting-started/tabs/enable-debug-logging.md diff --git a/src/pages/documentation/getting-started/tabs/get-the-sdk.md b/src/pages/home/getting-started/tabs/get-the-sdk.md similarity index 99% rename from src/pages/documentation/getting-started/tabs/get-the-sdk.md rename to src/pages/home/getting-started/tabs/get-the-sdk.md index fbc088aba2..94e71ce40f 100644 --- a/src/pages/documentation/getting-started/tabs/get-the-sdk.md +++ b/src/pages/home/getting-started/tabs/get-the-sdk.md @@ -51,7 +51,7 @@ implementation 'com.adobe.marketing.mobile:lifecycle' -Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../resources/manage-gradle-dependencies.md) for more information. +Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../../resources/manage-gradle-dependencies.md) for more information. diff --git a/src/pages/documentation/getting-started/tabs/track-events.md b/src/pages/home/getting-started/tabs/track-events.md similarity index 100% rename from src/pages/documentation/getting-started/tabs/track-events.md rename to src/pages/home/getting-started/tabs/track-events.md diff --git a/src/pages/documentation/getting-started/track-events.md b/src/pages/home/getting-started/track-events.md similarity index 95% rename from src/pages/documentation/getting-started/track-events.md rename to src/pages/home/getting-started/track-events.md index 211b35719e..0e245ccc6d 100644 --- a/src/pages/documentation/getting-started/track-events.md +++ b/src/pages/home/getting-started/track-events.md @@ -62,7 +62,7 @@ iOS ## Track user actions (for Adobe Analytics) -This section shows you how to start track user actions in your mobile app. To view and report on this data in those respective solutions, set up [Adobe Analytics](../adobe-analytics/index.md) or another Experience Cloud solution extensions. +This section shows you how to start track user actions in your mobile app. To view and report on this data in those respective solutions, set up [Adobe Analytics](../../solution/adobe-analytics/index.md) or another Experience Cloud solution extensions. Actions are events that occur in your app. Use this API to track and measure an action, where each action has one or more corresponding metrics that increment each time the event occurs. For example, you might call this API for every new subscription, every time an article is viewed, or every time a level is completed. @@ -134,7 +134,7 @@ Xamarin --> -For more information, see the [Mobile Core API Reference](../mobile-core/api-reference.md). +For more information, see the [Mobile Core API Reference](../base/mobile-core/api-reference.md). ## Get help diff --git a/src/pages/documentation/getting-started/validate.md b/src/pages/home/getting-started/validate.md similarity index 100% rename from src/pages/documentation/getting-started/validate.md rename to src/pages/home/getting-started/validate.md diff --git a/src/pages/documentation/index.md b/src/pages/home/index.md similarity index 93% rename from src/pages/documentation/index.md rename to src/pages/home/index.md index d0c1596918..ae2d1816b5 100644 --- a/src/pages/documentation/index.md +++ b/src/pages/home/index.md @@ -21,11 +21,11 @@ At WWDC23, Apple announced several new privacy features impacting applications a -Effective August 31, 2023: ACP iOS SDKs, Flutter for ACP, React Native for ACP, Cordova, and Xamarin SDKs will no longer be supported. Refer to [ACP SDKs end-of-support](./resources/acp-end-of-support.md) for more information. +Effective August 31, 2023: ACP iOS SDKs, Flutter for ACP, React Native for ACP, Cordova, and Xamarin SDKs will no longer be supported. Refer to [ACP SDKs end-of-support](../resources/acp-end-of-support.md) for more information. -Check out our page discussing how we will [align major SDK versions](./resources/major-version-alignment.md) for future releases of the Adobe Experience Platform Mobile SDKs and wrappers. +Check out our page discussing how we will [align major SDK versions](../resources/major-version-alignment.md) for future releases of the Adobe Experience Platform Mobile SDKs and wrappers. @@ -56,7 +56,7 @@ The Adobe Experience Platform Mobile SDK supports the following platforms: * [Getting started](./getting-started/index.md) * [Getting the Experience Platform SDKs](./getting-started/get-the-sdk.md) -* [Frequently asked questions](./resources/faq.md) +* [Frequently asked questions](../resources/faq.md) * [Why use the Adobe Experience Platform Mobile SDKs](https://medium.com/adobetech/accelerate-your-mobile-application-development-with-adobe-experience-platform-mobile-sdk-and-launch-ed023536d611) ## Get Help diff --git a/src/pages/documentation/release-notes/2021.md b/src/pages/home/release-notes/2021.md similarity index 94% rename from src/pages/documentation/release-notes/2021.md rename to src/pages/home/release-notes/2021.md index d4134caa7c..cf10f1f8ac 100644 --- a/src/pages/documentation/release-notes/2021.md +++ b/src/pages/home/release-notes/2021.md @@ -241,7 +241,7 @@ This SDK is compatible with Android Core 1.8.2 and above. ### iOS Campaign Standard 3.0.0 -* Initial release to support [Adobe Campaign Standard workflows](../adobe-campaign-standard/index.md) for Adobe Experience Platform Mobile SDKs for iOS in Swift. This extension library is [available as an open source project on Github](https://github.com/adobe/aepsdk-campaign-ios/). +* Initial release to support [Adobe Campaign Standard workflows](../../solution/adobe-campaign-standard/index.md) for Adobe Experience Platform Mobile SDKs for iOS in Swift. This extension library is [available as an open source project on Github](https://github.com/adobe/aepsdk-campaign-ios/). ## June 7, 2021 @@ -287,7 +287,7 @@ This SDK is compatible with Android Core 1.8.2 and above. ### iOS AEPMedia 3.0.0 -* Initial release to support [Adobe Analytics - Media Analytics workflows](../adobe-media-analytics/index.md) for Adobe Experience Platform Mobile SDKs for iOS in Swift. This extension library is [available as an open source project on Github](https://github.com/adobe/aepsdk-media-ios/). +* Initial release to support [Adobe Analytics - Media Analytics workflows](../../solution/adobe-media-analytics/index.md) for Adobe Experience Platform Mobile SDKs for iOS in Swift. This extension library is [available as an open source project on Github](https://github.com/adobe/aepsdk-media-ios/). ## April 29, 2021 @@ -316,7 +316,7 @@ You can now find the Consent for Edge Network extension in the tag extensions ca ### iOS Target 3.0.0 -* Initial release to support [Adobe Target](../adobe-target/index.md) for Adobe Experience Platform Mobile SDKs on iOS in Swift. This library is available as an [open source project on GitHub](https://github.com/adobe/aepsdk-target-ios). +* Initial release to support [Adobe Target](../../solution/adobe-target/index.md) for Adobe Experience Platform Mobile SDKs on iOS in Swift. This library is available as an [open source project on GitHub](https://github.com/adobe/aepsdk-target-ios). ## April 8, 2021 @@ -382,7 +382,7 @@ The Adobe Experience Platform Consent (AEPEdgeConsent) mobile extension is now a ### iOS AEPAnalytics 3.0.0 -* Initial release to support [Adobe Analytics](../adobe-analytics/index.md) for Adobe Experience Platform Mobile SDKs for iOS in Swift. This library is available as an [open sourced project on Github](https://github.com/adobe/aepsdk-analytics-ios/). +* Initial release to support [Adobe Analytics](../../solution/adobe-analytics/index.md) for Adobe Experience Platform Mobile SDKs for iOS in Swift. This library is available as an [open sourced project on Github](https://github.com/adobe/aepsdk-analytics-ios/). ## January 29, 2021 diff --git a/src/pages/documentation/release-notes/2022.md b/src/pages/home/release-notes/2022.md similarity index 98% rename from src/pages/documentation/release-notes/2022.md rename to src/pages/home/release-notes/2022.md index 399ed45e4f..cdcba9397e 100644 --- a/src/pages/documentation/release-notes/2022.md +++ b/src/pages/home/release-notes/2022.md @@ -71,7 +71,7 @@ For an end-to-end guide on how to use the extension, see the [Edge Bridge tutori ### iOS Campaign Classic 3.0.0 -* Initial release to support [Adobe Campaign Classic workflows](./index.md) for Adobe Experience Platform Mobile SDKs on iOS in Swift. This extension library is available as an [open source project on GitHub](https://github.com/adobe/aepsdk-campaignclassic-ios/). +* Initial release to support [Adobe Campaign Classic workflows](../../solution/adobe-campaign-classic/index.md) for Adobe Experience Platform Mobile SDKs on iOS in Swift. This extension library is available as an [open source project on GitHub](https://github.com/adobe/aepsdk-campaignclassic-ios/). ## June 30, 2022 diff --git a/src/pages/documentation/release-notes/index.md b/src/pages/home/release-notes/index.md similarity index 90% rename from src/pages/documentation/release-notes/index.md rename to src/pages/home/release-notes/index.md index 42107de791..01d6d4743a 100644 --- a/src/pages/documentation/release-notes/index.md +++ b/src/pages/home/release-notes/index.md @@ -305,7 +305,7 @@ Keywords: ### iOS Places 4.1.0 and Android Places 2.1.0 -* Added support for forwarding location entry and exit events to Adobe Experience Platform. For more information, refer to the [Places Service event forwarding to Adobe Experience Platform](/places/places-to-platform.md) guide. +* Added support for forwarding location entry and exit events to Adobe Experience Platform. For more information, refer to the [Places Service event forwarding to Adobe Experience Platform](../../solution/places/places-to-platform.md) guide. ### Android Core 2.3.1 @@ -497,7 +497,7 @@ The following React Native libraries have been upgraded to use the version 4 of ### Android BOM 2.0.0 -* Align the major version to match the current major version of the MobileCore extension for Android. Please refer to the [major version alignment document](../resources/major-version-alignment.md). +* Align the major version to match the current major version of the MobileCore extension for Android. Please refer to the [major version alignment document](../../resources/major-version-alignment.md). * This BOM ([Bill of Materials](https://central.sonatype.com/artifact/com.adobe.marketing.mobile/sdk-bom/2.0.0)) release includes changes to the following Android extensions. @@ -626,21 +626,21 @@ Note that all these extensions must be updated together. ### iOS Target 4.0.0 -Major version update for [Adobe Target](../adobe-target/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: +Major version update for [Adobe Target](../../solution/adobe-target/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: * Updated the minimum supported version to iOS 11.0. * Include XCFrameworks built with Xcode 14.1 with the GitHub release. ### iOS Audience 4.0.0 - Major version update for [Adobe Audience Manager](../adobe-audience-manager/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: + Major version update for [Adobe Audience Manager](../../solution/adobe-audience-manager/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: * Updated the minimum supported version to iOS 11.0. * Include XCFrameworks built with Xcode 14.1 with the GitHub release. ### iOS Media 4.0.0 -Major version update for [Adobe Analytics - Media Analytics workflows](../adobe-media-analytics/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: +Major version update for [Adobe Analytics - Media Analytics workflows](../../solution/adobe-media-analytics/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: * Updated the minimum supported version to iOS 11.0 and tvOS 11.0. * Include XCFrameworks built with Xcode 14.1 with the GitHub release. @@ -650,22 +650,22 @@ Major version update for [Adobe Analytics - Media Analytics workflows](../adobe- ### Android Edge Media 2.0.0 -Initial release of the [Adobe Streaming Media for Edge Network](../media-for-edge-network/index.md) extension for Android which sends data about audio and video consumption on your streaming applications to the Adobe Experience Platform Edge Network. This enables capabilities for measurement, analysis, and activation with media data across the Adobe Experience Cloud solutions. +Initial release of the [Adobe Streaming Media for Edge Network](../../edge/media-for-edge-network/index.md) extension for Android which sends data about audio and video consumption on your streaming applications to the Adobe Experience Platform Edge Network. This enables capabilities for measurement, analysis, and activation with media data across the Adobe Experience Cloud solutions. ### iOS Edge Media 4.0.0 -Initial release of the [Adobe Streaming Media for Edge Network](../media-for-edge-network/index.md) extension for iOS which sends data about audio and video consumption on your streaming applications to the Adobe Experience Platform Edge Network. This enables capabilities for measurement, analysis, and activation with media data across the Adobe Experience Cloud solutions. +Initial release of the [Adobe Streaming Media for Edge Network](../../edge/media-for-edge-network/index.md) extension for iOS which sends data about audio and video consumption on your streaming applications to the Adobe Experience Platform Edge Network. This enables capabilities for measurement, analysis, and activation with media data across the Adobe Experience Cloud solutions. ### iOS Places 4.0.0 -Major version update for [Adobe Experience Platform Location Service](../places/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: +Major version update for [Adobe Experience Platform Location Service](../../solution/places/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: * Updated the minimum supported version to iOS 11.0. * Include XCFrameworks built with Xcode 14.1 with the GitHub release. ### iOS Analytics 4.0.0 -Major version update for [Adobe Analytics](../adobe-analytics/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: +Major version update for [Adobe Analytics](../../solution/adobe-analytics/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: * Updated the minimum supported version to iOS 11.0 and tvOS 11.0. * Include XCFrameworks built with Xcode 14.1 with the GitHub release. @@ -676,7 +676,7 @@ Major version update for [Adobe Analytics](../adobe-analytics/index.md) for Adob ### iOS Campaign Classic 4.0.0 -Major version update for [Adobe Campaign Classic workflows](../adobe-campaign-classic/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: +Major version update for [Adobe Campaign Classic workflows](../../solution/adobe-campaign-classic/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: * Updated the minimum supported version to iOS 11.0. * Include XCFrameworks built with Xcode 14.1 with the GitHub release. @@ -684,14 +684,14 @@ Major version update for [Adobe Campaign Classic workflows](../adobe-campaign-cl ### iOS Campaign Standard 4.0.0 -Major version update for [Adobe Campaign Standard workflows](../adobe-campaign-standard/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: +Major version update for [Adobe Campaign Standard workflows](../../solution/adobe-campaign-standard/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: * Updated the minimum supported version to iOS 11.0. * Include XCFrameworks built with Xcode 14.1 with the GitHub release. ### iOS UserProfile 4.0.0 -Major version update for [User Profile](../profile/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: +Major version update for [User Profile](../base/profile/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: * Updated the minimum supported version to iOS 11.0. * Include XCFrameworks built with Xcode 14.1 with the GitHub release. @@ -707,14 +707,14 @@ Major version update for Edge Bridge for Adobe Experience Platform Mobile SDKs o ### iOS Messaging 4.0.0 -Major version update for [Adobe Journey Optimizer](../adobe-journey-optimizer/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: +Major version update for [Adobe Journey Optimizer](../../edge/adobe-journey-optimizer/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: * Updated the minimum supported version to iOS 11.0. * Include XCFrameworks built with Xcode 14.1 with the GitHub release. ### iOS Optimize 4.0.0 -Major version update for [Adobe Journey Optimizer - Decisioning](../adobe-journey-optimizer-decisioning/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: +Major version update for [Adobe Journey Optimizer - Decisioning](../../edge/adobe-journey-optimizer-decisioning/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: * Updated the minimum supported version to iOS 11.0. * Include XCFrameworks built with Xcode 14.1 with the GitHub release. @@ -724,21 +724,21 @@ Major version update for [Adobe Journey Optimizer - Decisioning](../adobe-journe ### iOS Consent 4.0.0 -Major version update for [Consent for Edge Network](../consent-for-edge-network/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: +Major version update for [Consent for Edge Network](../../edge/consent-for-edge-network/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: * Updated the minimum supported version to iOS 11.0 and tvOS 11.0. * Include XCFrameworks built with Xcode 14.1 with the GitHub release. ### iOS EdgeIdentity 4.0.0 -Major version update for [Identity for Edge Network](../identity-for-edge-network/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: +Major version update for [Identity for Edge Network](../../edge/identity-for-edge-network/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: * Updated the minimum supported version to iOS 11.0 and tvOS 11.0. * Include XCFrameworks built with Xcode 14.1 with the GitHub release. ### iOS Edge 4.0.0 -Major version update for [Edge Network](../edge-network/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: +Major version update for [Edge Network](../../edge/edge-network/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: * Updated the minimum supported version to iOS 11.0 and tvOS 11.0. * Include XCFrameworks built with Xcode 14.1 with the GitHub release. @@ -747,7 +747,7 @@ Major version update for [Edge Network](../edge-network/index.md) for Adobe Expe ### iOS Assurance 4.0.0 -Major version update for [Adobe Experience Platform Assurance](../platform-assurance-sdk/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: +Major version update for [Adobe Experience Platform Assurance](../base/assurance/index.md) for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes: * Updated the minimum supported version to iOS 11.0. * Include XCFrameworks built with Xcode 14.1 with the GitHub release. @@ -1188,7 +1188,7 @@ For help on moving to these versions, and information on deprecated APIs please ### Android Target 2.0.0 -* Major version update for [Adobe Target](../adobe-target/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-target-android). +* Major version update for [Adobe Target](../../solution/adobe-target/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-target-android). Please note that the following improvements have been made in the current release: @@ -1217,23 +1217,23 @@ import com.adobe.marketing.mobile.target.TargetParameters; ### Android Analytics 2.0.0 -* Major version update for [Adobe Analytics](../adobe-analytics/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-analytics-android/). +* Major version update for [Adobe Analytics](../../solution/adobe-analytics/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-analytics-android/). ### Android Audience 2.0.0 -* Major version update for [Adobe Audience Manager](../adobe-audience-manager/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-audience-android). +* Major version update for [Adobe Audience Manager](../../solution/adobe-audience-manager/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-audience-android). ### Android Media 3.0.0 -* Major version update for [Adobe Analytics - Media Analytics workflows](../adobe-media-analytics/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-media-android). +* Major version update for [Adobe Analytics - Media Analytics workflows](../../solution/adobe-media-analytics/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-media-android). ### Android Messaging 2.0.0 -* Major version update for [Adobe Journey Optimizer](../adobe-journey-optimizer/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-messaging-android). +* Major version update for [Adobe Journey Optimizer](../../edge/adobe-journey-optimizer/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-messaging-android). ### Android Places 2.0.0 -* Major version update for [Adobe Experience Platform Location Service](../places/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-places-android). +* Major version update for [Adobe Experience Platform Location Service](../../solution/places/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-places-android). Please note that the following improvements have been made in the current release: @@ -1258,11 +1258,11 @@ import com.adobe.marketing.mobile.places.PlacesRequestError; ### Android Optimize 2.0.0 -* Major version update for [Adobe Journey Optimizer - Decisioning](../adobe-journey-optimizer-decisioning/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This extension library is already available as an [open source project on GitHub](https://github.com/adobe/aepsdk-optimize-android/). +* Major version update for [Adobe Journey Optimizer - Decisioning](../../edge/adobe-journey-optimizer-decisioning/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This extension library is already available as an [open source project on GitHub](https://github.com/adobe/aepsdk-optimize-android/). ### Android Campaign Standard 2.0.0 -* Major version update for [Adobe Campaign Standard workflows](../adobe-campaign-standard/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-campaign-android). +* Major version update for [Adobe Campaign Standard workflows](../../solution/adobe-campaign-standard/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-campaign-android). ## February 1, 2023 @@ -1274,33 +1274,33 @@ import com.adobe.marketing.mobile.places.PlacesRequestError; ### Android Assurance 2.0.0 -* Major version update for [Adobe Experience Platform Assurance](../platform-assurance-sdk/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-assurance-android). +* Major version update for [Adobe Experience Platform Assurance](../base/assurance/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-assurance-android). ### Android Campaign Classic 2.0.0 -* Major version update for [Adobe Campaign Classic workflows](../adobe-campaign-classic/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-campaignclassic-android). +* Major version update for [Adobe Campaign Classic workflows](../../solution/adobe-campaign-classic/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-campaignclassic-android). Please note that the `registerDevice` API, similar to iOS, no longer provides a callback method for registration status since a `false` value cannot be accurately used as a signal to retry requests. ### Android Consent 2.0.0 -* Major version update for [Consent for Edge Network](../consent-for-edge-network/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is already available as an [open source project on GitHub](https://github.com/adobe/aepsdk-edgeconsent-android). +* Major version update for [Consent for Edge Network](../../edge/consent-for-edge-network/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is already available as an [open source project on GitHub](https://github.com/adobe/aepsdk-edgeconsent-android). ### Android Edge 2.0.0 -* Major version update for [Edge Network](../edge-network/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-edge-android). +* Major version update for [Edge Network](../../edge/edge-network/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-edge-android). ### Android EdgeIdentity 2.0.0 -* Major version update for [Identity for Edge Network](../identity-for-edge-network/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is already available as an [open source project on GitHub](https://github.com/adobe/aepsdk-edgeidentity-android). +* Major version update for [Identity for Edge Network](../../edge/identity-for-edge-network/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is already available as an [open source project on GitHub](https://github.com/adobe/aepsdk-edgeidentity-android). ### Android UserProfile 2.0.0 -* Major version update for [User Profile](../profile/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-userprofile-android). +* Major version update for [User Profile](../base/profile/index.md) for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an [open source project on GitHub](https://github.com/adobe/aepsdk-userprofile-android). * The following APIs have been deprecated and will be removed in a future release: - | Deprecated API | Recommended Alternative | - | ----------------------------------- | ------------------------------------ | + | Deprecated API | Recommended Alternative | + | -------------- | ----------------------- | | `UserProfile.updateUserAttribute()` | `UserProfile.updateUserAttributes()` | | `UserProfile.removeUserAttribute()` | `UserProfile.removeUserAttributes()` | diff --git a/src/pages/documentation/resources/acp-end-of-support.md b/src/pages/resources/acp-end-of-support.md similarity index 87% rename from src/pages/documentation/resources/acp-end-of-support.md rename to src/pages/resources/acp-end-of-support.md index 3cc5aa4cd9..80bbe2d8c3 100644 --- a/src/pages/documentation/resources/acp-end-of-support.md +++ b/src/pages/resources/acp-end-of-support.md @@ -2,7 +2,7 @@ ## End of support for ACP iOS SDKs and Wrappers -Since April 25, 2023, [Apple has required](https://developer.apple.com/news/?id=jd9wcyov) apps submitted to the App Store to be built with Xcode 14.1 or later. The Experience Platform Mobile SDKs and extensions outlined below were built with prior versions of Xcode and are no longer compatible with iOS and iPadOS given Apple’s current App Store requirements. Consequently, on **August 31, 2023**, Adobe will be deprecating support for the following Experience Platform Mobile SDKs and wrapper extensions: +Since April 25, 2023, [Apple has required](https://developer.apple.com/news/?id=jd9wcyov) apps submitted to the App Store to be built with Xcode 14.1 or later. The Experience Platform Mobile SDKs and extensions outlined below were built with prior versions of Xcode and are no longer compatible with iOS and iPadOS given Apple's current App Store requirements. Consequently, on **August 31, 2023**, Adobe will be deprecating support for the following Experience Platform Mobile SDKs and wrapper extensions: * [ACP iOS SDK](https://developer.adobe.com/client-sdks/previous-versions/documentation/sdk-versions/#ios) * [Cordova](https://developer.adobe.com/client-sdks/previous-versions/documentation/sdk-versions/#cordova) @@ -12,7 +12,7 @@ Since April 25, 2023, [Apple has required](https://developer.apple.com/news/?id= After **August 31, 2023**, applications already submitted to the App Store that contain these SDKs and wrapper extensions will continue to operate, however, Adobe will not be providing security updates or bug fixes, and these SDKs and wrapper extensions will be provided as-is exclusive of any warranty, due to the App Store policy outlined above. We encourage all customers to migrate to the latest Adobe Experience Platform versions of the Mobile SDK to ensure continued compatibility and support. -Documentation for the latest versions of the Adobe Experience Platform Mobile SDKs can be found [here](https://developer.adobe.com/client-sdks/documentation/current-sdk-versions/). +Documentation for the latest versions of the Adobe Experience Platform Mobile SDKs can be found [here](../home/current-sdk-versions.md). Please refer to the following guides to migrate to the latest SDKs: diff --git a/src/pages/documentation/resources/alerts.md b/src/pages/resources/alerts.md similarity index 100% rename from src/pages/documentation/resources/alerts.md rename to src/pages/resources/alerts.md diff --git a/src/pages/documentation/resources/assets/manage-gradle-dependencies/dynamic-dependencies.png b/src/pages/resources/assets/manage-gradle-dependencies/dynamic-dependencies.png similarity index 100% rename from src/pages/documentation/resources/assets/manage-gradle-dependencies/dynamic-dependencies.png rename to src/pages/resources/assets/manage-gradle-dependencies/dynamic-dependencies.png diff --git a/src/pages/documentation/resources/assets/manage-gradle-dependencies/outdated-dependencies.png b/src/pages/resources/assets/manage-gradle-dependencies/outdated-dependencies.png similarity index 100% rename from src/pages/documentation/resources/assets/manage-gradle-dependencies/outdated-dependencies.png rename to src/pages/resources/assets/manage-gradle-dependencies/outdated-dependencies.png diff --git a/src/pages/documentation/resources/assets/manage-spm-dependencies/add-package-collection-load.png b/src/pages/resources/assets/manage-spm-dependencies/add-package-collection-load.png similarity index 100% rename from src/pages/documentation/resources/assets/manage-spm-dependencies/add-package-collection-load.png rename to src/pages/resources/assets/manage-spm-dependencies/add-package-collection-load.png diff --git a/src/pages/documentation/resources/assets/manage-spm-dependencies/add-package-collection.png b/src/pages/resources/assets/manage-spm-dependencies/add-package-collection.png similarity index 100% rename from src/pages/documentation/resources/assets/manage-spm-dependencies/add-package-collection.png rename to src/pages/resources/assets/manage-spm-dependencies/add-package-collection.png diff --git a/src/pages/documentation/resources/assets/manage-spm-dependencies/package-collection.png b/src/pages/resources/assets/manage-spm-dependencies/package-collection.png similarity index 100% rename from src/pages/documentation/resources/assets/manage-spm-dependencies/package-collection.png rename to src/pages/resources/assets/manage-spm-dependencies/package-collection.png diff --git a/src/pages/documentation/resources/faq.md b/src/pages/resources/faq.md similarity index 95% rename from src/pages/documentation/resources/faq.md rename to src/pages/resources/faq.md index b3b791224f..7e0806a735 100644 --- a/src/pages/documentation/resources/faq.md +++ b/src/pages/resources/faq.md @@ -66,7 +66,7 @@ The Experience Platform SDK migrates the locally stored user contexts from the 4 ### What platforms are supported? -For a complete list of supported platforms, please read the [latest SDK versions document](../current-sdk-versions.md). +For a complete list of supported platforms, please read the [latest SDK versions document](../home/current-sdk-versions.md). ### What OS and platform versions are supported? @@ -138,7 +138,7 @@ Add the following rule to your custom ProGuard rules file, typically labeled `pr Implementing push notification tracking and measurement with the SDK depends on the Experience Cloud solution being used. * For the Adobe Campaign Standard extension, please read the [Adobe Campaign standard push tracking tutorial](https://experienceleague.adobe.com/docs/campaign-standard/using/administrating/configuring-mobile/push-tracking.html). -* For the Adobe Campaign Classic extension, please read the [Adobe Campaign Classic push notifications tracking tutorial](../adobe-campaign-classic/api-reference.md#tracknotification-api). +* For the Adobe Campaign Classic extension, please read the [Adobe Campaign Classic push notifications tracking tutorial](../solution/adobe-campaign-classic/api-reference.md#tracknotification-api). ## Migrating to Android Mobile Core 2.x and compatible extensions @@ -182,7 +182,7 @@ To get the latest Mobile SDK dependencies for your Android application: * Open the **mobile property** configured in the **Data Collection UI** for your application. * Navigate to the **Extensions** tab and update all the extensions to the latest version. -* The [install instructions](../getting-started/get-the-sdk.md#1-add-dependencies-to-your-project) will now show the dependencies for the latest Mobile SDK. +* The [install instructions](../home/getting-started/get-the-sdk.md#1-add-dependencies-to-your-project) will now show the dependencies for the latest Mobile SDK. ### Why do I see 'java.lang.NoSuchMethodError' after upgrading to the latest version of Mobile SDK for Android? @@ -196,7 +196,7 @@ If you attempt to use the latest Mobile Core SDK and solution SDKs that were bui java.lang.NoSuchMethodError: No static method getCore()Lcom/adobe/marketing/mobile/Core; in class Lcom/adobe/marketing/mobile/MobileCore; or its super classes (declaration of 'com.adobe.marketing.mobile.MobileCore' appears in XXX ``` -To resolve this error, upgrade all your solution SDKs to the [most recent versions](../current-sdk-versions.md#android). +To resolve this error, upgrade all your solution SDKs to the [most recent versions](../home/current-sdk-versions.md#android). ### Why do I not see 'sdk-core' dependency for latest version of Mobile SDK for Android? @@ -227,7 +227,7 @@ To resolve the build warning, remove FullscreenMessageActivity from your applica ### Why do I see 'unresolved reference' error when upgrading Adobe Target SDK to the latest version? -The [latest version](../adobe-target/release-notes.md#android-target-200) of Adobe Target Mobile SDK has the following breaking API changes for alignment with the iOS SDK: +The [latest version](../solution/adobe-target/release-notes.md#android-target-200) of Adobe Target Mobile SDK has the following breaking API changes for alignment with the iOS SDK: * **locationsDisplayed** is now **displayedLocations** * **locationClicked** is now **clickedLocation** @@ -277,11 +277,11 @@ import com.adobe.marketing.mobile.places.PlacesRequestError; ### What are Lifecycle metrics? -Lifecycle metrics are out-of-the-box metrics that are automatically collected when the SDK is first implemented in your app. For more information, please read the [documentation on Lifecycle metrics](../mobile-core/lifecycle/index.md). +Lifecycle metrics are out-of-the-box metrics that are automatically collected when the SDK is first implemented in your app. For more information, please read the [documentation on Lifecycle metrics](../home/mobile-core/lifecycle/index.md). ## Adobe Analytics -See the [frequently asked questions for Analytics](../adobe-analytics/faq.md). +See the [frequently asked questions for Analytics](../solution/adobe-analytics/faq.md). ## Adobe Experience Platform Edge Network diff --git a/src/pages/documentation/resources/index.md b/src/pages/resources/index.md similarity index 100% rename from src/pages/documentation/resources/index.md rename to src/pages/resources/index.md diff --git a/src/pages/documentation/resources/major-version-alignment.md b/src/pages/resources/major-version-alignment.md similarity index 97% rename from src/pages/documentation/resources/major-version-alignment.md rename to src/pages/resources/major-version-alignment.md index e998c74463..89d6620847 100644 --- a/src/pages/documentation/resources/major-version-alignment.md +++ b/src/pages/resources/major-version-alignment.md @@ -34,7 +34,7 @@ Unlike our previous major version updates, this is not a major rewrite nor does While we don't have plans for another major rewrite any time soon, if a need for one comes up, we will be sure to let you know with plenty of lead time. -Outside of major version updates, all of our extensions will continue to follow semantic versioning ([semver](https://semver.org/)) for minor and patch releases on an as-needed basis. We recommend using the [latest version](./../current-sdk-versions.md) of each extension, which will contain the most current optimizations and bug fixes. +Outside of major version updates, all of our extensions will continue to follow semantic versioning ([semver](https://semver.org/)) for minor and patch releases on an as-needed basis. We recommend using the [latest version](../home/current-sdk-versions.md) of each extension, which will contain the most current optimizations and bug fixes. ## How does this impact the SDK going forward? diff --git a/src/pages/documentation/resources/manage-gradle-dependencies.md b/src/pages/resources/manage-gradle-dependencies.md similarity index 81% rename from src/pages/documentation/resources/manage-gradle-dependencies.md rename to src/pages/resources/manage-gradle-dependencies.md index 9261e827f4..38372855b1 100644 --- a/src/pages/documentation/resources/manage-gradle-dependencies.md +++ b/src/pages/resources/manage-gradle-dependencies.md @@ -12,7 +12,7 @@ keywords: Installation via [Maven](https://maven.apache.org/) and [Gradle](https://gradle.org/) is recommended, as it's the easiest way to get the Adobe Experience Platform Mobile SDK into your Android app. -The Android installation instructions generated for mobile properties in the Data Collection UI, as indicated in the [getting started guide](../getting-started/get-the-sdk.md), use dynamic versioning for Gradle dependencies. This is done to simplify getting started with the latest versions of our SDKs. Use of dynamic dependency versions is **not** recommended, as it makes builds non-deterministic, which can cause builds to break without any obvious change, and worse, can be caused by a transitive dependency that the build author has no control over. +The Android installation instructions generated for mobile properties in the Data Collection UI, as indicated in the [getting started guide](../home/getting-started/get-the-sdk.md), use dynamic versioning for Gradle dependencies. This is done to simplify getting started with the latest versions of our SDKs. Use of dynamic dependency versions is **not** recommended, as it makes builds non-deterministic, which can cause builds to break without any obvious change, and worse, can be caused by a transitive dependency that the build author has no control over. To have predictable builds, follow one of the following approaches when managing gradle dependencies. diff --git a/src/pages/documentation/resources/manage-spm-dependencies.md b/src/pages/resources/manage-spm-dependencies.md similarity index 100% rename from src/pages/documentation/resources/manage-spm-dependencies.md rename to src/pages/resources/manage-spm-dependencies.md diff --git a/src/pages/documentation/resources/privacy-and-gdpr.md b/src/pages/resources/privacy-and-gdpr.md similarity index 86% rename from src/pages/documentation/resources/privacy-and-gdpr.md rename to src/pages/resources/privacy-and-gdpr.md index 87c03bf8c6..b63790d6be 100644 --- a/src/pages/documentation/resources/privacy-and-gdpr.md +++ b/src/pages/resources/privacy-and-gdpr.md @@ -28,7 +28,7 @@ The two options are documented in detail below. -If you are using a mix of Edge Network and Adobe Experience Cloud mobile extensions, please follow the steps for configuring both consent and privacy status settings. See also the [frequently asked questions](../identity-for-edge-network/faq.md) about consent and privacy settings or identities. +If you are using a mix of Edge Network and Adobe Experience Cloud mobile extensions, please follow the steps for configuring both consent and privacy status settings. See also the [frequently asked questions](../edge/identity-for-edge-network/faq.md) about consent and privacy settings or identities. ## Using Experience Platform SDKs for Edge Network @@ -36,15 +36,15 @@ If you are using a mix of Edge Network and Adobe Experience Cloud mobile extensi You can set the collect consent status to ensure collection of data suits your user's preferences. -| Extension | Collect (y) | Collect (n) | Collect (pending) | -| :--------------- | :------------ | :---------------- | :---------------- | +| Extension | Collect (y) | Collect (n) | Collect (pending) | +| :-------- | :---------- | :---------- | :---------------- | | **Edge Network** | Hits are sent | Hits are not sent | Hits are queued | > **Note:** When no default collect consent value is defined in configuration, the SDK defaults to Yes (y) for collect consent. -Updating the collect consent status to No (n) does not reset or clear the identities of the current user. If you need to reset all current identities, use the [MobileCore.resetIdentities()](../mobile-core/api-reference.md#resetidentities) API. +Updating the collect consent status to No (n) does not reset or clear the identities of the current user. If you need to reset all current identities, use the [MobileCore.resetIdentities()](../home/base/mobile-core/api-reference.md#resetidentities) API. ### Collect consent settings @@ -88,11 +88,11 @@ iOS ### getIdentities -When using the Edge Network extensions, use the [Identity.getIdentities](../identity-for-edge-network/api-reference.md#getidentities) API to retrieve all the identifier data stored locally by the SDK and send this data to your servers. +When using the Edge Network extensions, use the [Identity.getIdentities](../edge/identity-for-edge-network/api-reference.md#getidentities) API to retrieve all the identifier data stored locally by the SDK and send this data to your servers. ## Configuration keys -To programmatically update the SDK configuration, use the following information to change your default consent values. For more information, see the [configuration API reference](../mobile-core/configuration/api-reference.md). +To programmatically update the SDK configuration, use the following information to change your default consent values. For more information, see the [configuration API reference](../home/base/mobile-core/configuration/api-reference.md). | Key | Description | | :--- | :--------- | @@ -144,15 +144,15 @@ iOS ### getSdkIdentities -To retrieve all the identifier data stored locally by the SDK as a JSON string, use the [getSdkIdentities](../mobile-core/api-reference.md#getsdkidentities) API from the Mobile Core extension. +To retrieve all the identifier data stored locally by the SDK as a JSON string, use the [getSdkIdentities](../home/base/mobile-core/api-reference.md#getsdkidentities) API from the Mobile Core extension. -When using both Edge Network and Adobe Solutions extensions, use both [Identity.getIdentities](../identity-for-edge-network/api-reference.md#getidentities) API and [MobileCore.getSdkIdentities](../mobile-core/api-reference.md#getsdkidentities) APIs to retrieve all the identifier data stored locally by the SDK. +When using both Edge Network and Adobe Solutions extensions, use both [Identity.getIdentities](../edge/identity-for-edge-network/api-reference.md#getidentities) API and [MobileCore.getSdkIdentities](../home/base/mobile-core/api-reference.md#getsdkidentities) APIs to retrieve all the identifier data stored locally by the SDK. ## Configuration keys -To update the SDK configuration, programmatically, use the following information to change your privacy configuration values. For more information, [Configuration API reference](../mobile-core/configuration/api-reference.md). +To update the SDK configuration, programmatically, use the following information to change your privacy configuration values. For more information, [Configuration API reference](../home/base/mobile-core/configuration/api-reference.md). | Key | Description | | :--- | :--- | diff --git a/src/pages/documentation/resources/privacy-announcement.md b/src/pages/resources/privacy-announcement.md similarity index 100% rename from src/pages/documentation/resources/privacy-announcement.md rename to src/pages/resources/privacy-announcement.md diff --git a/src/pages/documentation/resources/tabs/faq.md b/src/pages/resources/tabs/faq.md similarity index 100% rename from src/pages/documentation/resources/tabs/faq.md rename to src/pages/resources/tabs/faq.md diff --git a/src/pages/documentation/resources/tabs/privacy-and-gdpr.md b/src/pages/resources/tabs/privacy-and-gdpr.md similarity index 100% rename from src/pages/documentation/resources/tabs/privacy-and-gdpr.md rename to src/pages/resources/tabs/privacy-and-gdpr.md diff --git a/src/pages/documentation/resources/upgrade-platform-sdks/analytics.md b/src/pages/resources/upgrade-platform-sdks/analytics.md similarity index 75% rename from src/pages/documentation/resources/upgrade-platform-sdks/analytics.md rename to src/pages/resources/upgrade-platform-sdks/analytics.md index 23a12b161d..982a4d4455 100644 --- a/src/pages/documentation/resources/upgrade-platform-sdks/analytics.md +++ b/src/pages/resources/upgrade-platform-sdks/analytics.md @@ -6,8 +6,8 @@ import Tabs from './tabs/analytics.md' The Adobe Experience Platform Analytics extension uses [tags](https://experience.adobe.com/#/data-collection/) to configure the Experience Platform SDKs. This replaces the ADBMobileConfig.json which the Mobile Services SDK used for configuration. To get started with the AEP SDKs: -1. Create a mobile property on tags.
See [Set up a mobile property](../../getting-started/create-a-mobile-property.md) for more information. -2. Configure your mobile app with the create mobile property.
The AEP Mobile Core extension provides general functionality required by all the Adobe AEP extensions. The Configuration extension is built into the Mobile Core and contains the configureWithAppId API. This API is used to link the tag mobile property with your mobile app. The documentation for this API can be seen at the [Configuration API Reference](../../mobile-core/configuration/api-reference.md#configurewithappid) page. A code sample showing the usage of this API is provided below. +1. Create a mobile property on tags.
See [Set up a mobile property](../../home/getting-started/create-a-mobile-property.md) for more information. +2. Configure your mobile app with the create mobile property.
The AEP Mobile Core extension provides general functionality required by all the Adobe AEP extensions. The Configuration extension is built into the Mobile Core and contains the configureWithAppId API. This API is used to link the tag mobile property with your mobile app. The documentation for this API can be seen at the [Configuration API Reference](../../home/base/mobile-core/configuration/api-reference.md#configurewithappid) page. A code sample showing the usage of this API is provided below. 3. Once all the Platform extensions are imported and configured correctly, remove the v4 Mobile SDK dependency.
This step is mandatory and a mix of v4 and AEP API calls is not supported. @@ -29,14 +29,14 @@ For an overview of the API mapping between the Mobile Services SDK and Adobe Exp | API | Notes | |---|---| | trackActionFromBackground | Deprecated | -| trackLocation:data: | This functionality is available in the [Places extension](../../places/index.md). | -| trackBeacon:Data: | Support modified. [See guide](../../adobe-analytics/track-beacon.md). | -| trackingClearCurrentBeacon | Support modified. [See guide](../../adobe-analytics/track-beacon.md). | -| trackLifetimeValueIncrease:data: | This functionality can be recreated using the [Analytics](../../adobe-analytics/index.md) and [User Profile](../../profile/index.md) extensions. -| trackTimedActionStart: | This functionality can be recreated using the [Analytics](../../adobe-analytics/index.md) and [User Profile](../../profile/index.md) extensions. -| trackTimedActionUpdate: | This functionality can be recreated using the [Analytics](../../adobe-analytics/index.md) and [User Profile](../../profile/index.md) extensions. -| trackTimedActionEnd: | This functionality can be recreated using the [Analytics](../../adobe-analytics/index.md) and [User Profile](../../profile/index.md) extensions. -| trackTimedActionExists: | This functionality can be recreated using the [Analytics](../../adobe-analytics/index.md) and [User Profile](../../profile/index.md) extensions. +| trackLocation:data: | This functionality is available in the [Places extension](../../solution/places/index.md). | +| trackBeacon:Data: | Support modified. [See guide](../../solution/adobe-analytics/track-beacon.md). | +| trackingClearCurrentBeacon | Support modified. [See guide](../../solution/adobe-analytics/track-beacon.md). | +| trackLifetimeValueIncrease:data: | This functionality can be recreated using the [Analytics](../../solution/adobe-analytics/index.md) and [User Profile](../../home/base/profile/index.md) extensions. | +| trackTimedActionStart: | This functionality can be recreated using the [Analytics](../../solution/adobe-analytics/index.md) and [User Profile](../../home/base/profile/index.md) extensions. | +| trackTimedActionUpdate: | This functionality can be recreated using the [Analytics](../../solution/adobe-analytics/index.md) and [User Profile](../../home/base/profile/index.md) extensions. | +| trackTimedActionEnd: | This functionality can be recreated using the [Analytics](../../solution/adobe-analytics/index.md) and [User Profile](../../home/base/profile/index.md) extensions. | +| trackTimedActionExists: | This functionality can be recreated using the [Analytics](../../solution/adobe-analytics/index.md) and [User Profile](../../home/base/profile/index.md) extensions. | ## Experience Platform extensions installation and setup @@ -54,7 +54,7 @@ iOS -For more details, see [Add Analytics to your application](../../adobe-analytics/index.md#add-analytics-to-your-application). +For more details, see [Add Analytics to your application](../../solution/adobe-analytics/index.md#add-analytics-to-your-application). ## API changes diff --git a/src/pages/resources/upgrade-platform-sdks/api-changelog.md b/src/pages/resources/upgrade-platform-sdks/api-changelog.md new file mode 100644 index 0000000000..3bf4b6fdc7 --- /dev/null +++ b/src/pages/resources/upgrade-platform-sdks/api-changelog.md @@ -0,0 +1,146 @@ +# API Changelog + +This page details SDK API changes between the Experience Platform SDKs and 4x SDKs. + +## Mobile Core APIs + +For more information, see the [Mobile Core API reference](../../home/base/mobile-core/api-reference.md). + +### Supported APIs + +| Experience Platform SDK | 4x SDK | +|---|---| +| extensionVersion: | version/getVersion | +| [getPrivacyStatus:](../privacy-and-gdpr.md#getprivacystatus) | privacyStatus | +| [setPrivacyStatus:](../privacy-and-gdpr.md#setprivacystatus) | setPrivacyStatus: | +| [setLogLevel:](../../home/base/mobile-core/api-reference.md#setloglevel) | setDebugLogging: | +| [configureWithFileInPath:](../../home/base/mobile-core/configuration/api-reference.md/#configurewithfileinpath) | overrideConfigPath: | +| [setAppGroup:](../../home/base/mobile-core/api-reference.md#setappgroup) | setAppGroup: | +| [trackState:data:](../../home/base/mobile-core/api-reference.md#trackstate) | trackState:data: | +| [trackAction:data:](../../home/base/mobile-core/api-reference.md#trackaction) | trackAction:data: | +| [collectPII:](../../home/base/mobile-core/api-reference.md#collectpii) | collectPII: | +| [getSdkIdentities:](../../home/base/mobile-core/identity/api-reference.md#getsdkidentities) | getAllIdentifiersAsync: | + +### Deprecated APIs and functionality + +| 4x SDK | Notes | +|---|---| +| trackActionFromBackground | Deprecated | +| trackLocation:data: | Deprecated | +| trackBeacon:Data: | Support modified. See [guide](../../solution/adobe-analytics/track-beacon.md) | +| trackingClearCurrentBeacon | Deprecated | +| registerAdobeDataCallback: | Deprecated | +| lifetimeValue | Deprecated | +| trackLifetimeValueIncrease:data: | Deprecated | +| trackTimedActionStart: | Deprecated | +| trackTimedActionUpdate: | Deprecated | +| trackTimedActionEnd: | Deprecated | +| trackTimedActionExists: | Deprecated | +| trackPushMessageClickThrough:userInfo | Support modified. See [guide](../faq.md#how-can-i-track-user-engagement-of-push-notifications-using-the-experience-platform-mobile-sdk) | +| Tracking App Crash | Deprecated | + +## Lifecycle extension APIs + +### Supported APIs + + + +In the v4 iOS SDK, Lifecycle start and stop calls are made automatically by the SDK. In the Adobe Experience Platform Mobile SDK, the calls to start and stop lifecycle need to be made by the application developer. For more information, see the [Lifecycle extension](../../home/base/mobile-core/lifecycle/index.md). + +For more information, see the [Lifecycle API reference](../../home/base/mobile-core/lifecycle/api-reference.md). + +| Experience Platform SDK | 4x SDK | +|---|---| +| [lifecycleStart:](../../home/base/mobile-core/lifecycle/api-reference.md#lifecyclestart) | collectLifecycleData | +| [lifecycleStart:](../../home/base/mobile-core/lifecycle/api-reference.md#lifecyclestart) | collectLifecycleWithAdditionalData | +| [lifecyclePause](../../home/base/mobile-core/lifecycle/api-reference.md#lifecyclepause) | pauseCollectingLifecycleData (Android only) | + +### Deprecated APIs + +| 4x SDK | Notes | +|---|---| +| keepLifecycleSessionAlive | Deprecated | + +## Identity extension APIs + +For more information, see the [Identity API reference](../../base-extensions-mobile-core/identity/api-reference.md). + +### Supported APIs + +| Experience Platform SDK | 4x SDK | +|---|---| +| [setPushIdentifier:](../../home/base/mobile-core/identity/api-reference.md#setpushidentifier) | setPushIdentifier | +| [setAdvertisingIdentifier:](../../home/base/mobile-core/identity/api-reference.md#setadvertisingidentifier) | setAdvertisingIdentifier | +| [getExperienceCloudId:](../../home/base/mobile-core/identity/api-reference.md#getexperiencecloudid) | visitorMarketingCloudID | +| [syncIdentifiers:](../../home/base/mobile-core/identity/api-reference.md#syncidentifiers) | visitorSyncIdentifiers | +| [syncIdentifiers:authentication:](../../home/base/mobile-core/identity/api-reference.md#syncidentifiers-overloaded) | visitorSyncIdentifiers:authenticationState: | +| [syncIdentifier:identifier:authentication:](../../home/base/mobile-core/identity/api-reference.md#syncidentifier) |visitorSyncIdentifiersWithType:identifier:authenticationState: | +| [getIdentifiers](../../home/base/mobile-core/identity/api-reference.md#getidentifiers) | visitorGetIDs | +| [appendToURL:withCallback:](../../home/base/mobile-core/identity/api-reference.md#appendtourl--appendvisitorinfoforurl) | visitorAppendToURL: | +| [getUrlVariables](../../home/base/mobile-core/identity/api-reference.md#geturlvariables) | visitorGetUrlVariablesAsync: | + +## Adobe Analytics extension APIs + +For more information, see the [Analytics API reference](../../solution/adobe-analytics/api-reference.md). + +### Supported APIs + +| Experience Platform SDK | 4x SDK | +|---|---| +| [getVisitorIdentifier:](../../solution/adobe-analytics/api-reference.md#getvisitoridentifier) | getUserIdentifier | +| [setVisitorIdentifier:](../../solution/adobe-analytics/api-reference.md#setvisitoridentifier) | setUserIdentifier | +| [getTrackingIdentifier:](../../solution/adobe-analytics/api-reference.md#gettrackingidentifier) | trackingIdentifier | +| [sendQueuedHits:](../../solution/adobe-analytics/api-reference.md#sendqueuedhits) | trackingSendQueuedHits | +| [clearQueue](../../solution/adobe-analytics/api-reference.md#clearqueue) | trackingClearQueue | +| [getQueueSize](../../solution/adobe-analytics/api-reference.md#getqueuesize) | trackingGetQueueSize | + +## Adobe Audience Manager extension APIs + +For more information, see the [Audience Manager Extension API reference](../../solution/adobe-audience-manager/api-reference.md). + +### Supported APIs + +| Experience Platform SDK | 4x SDK | +|---|---| +| [​getVisitorProfile:​](../../solution/adobe-audience-manager/api-reference.md#getvisitorprofile) | audienceVisitorProfile | +| [​signalWithData:callback:​](../../solution/adobe-audience-manager/api-reference.md#signalwithdata) | audienceSignalWithData:callback | +| [​reset​](../../solution/adobe-audience-manager/api-reference.md#reset-identifiers-and-profiles) | audienceReset | + +### Deprecated APIs + +| 4x SDK | Notes | +| ------ | ----- | +| audienceSetDpid:dpuuid: | Replaced - See [Link](​https://experienceleague.adobe.com/docs/audience-manager/user-guide/reference/cid.html) | +| audienceDpid: | Replaced - See [Link](https://experienceleague.adobe.com/docs/audience-manager/user-guide/reference/cid.html) | +| audienceDpuuid: | Replaced - See [Link](https://experienceleague.adobe.com/docs/audience-manager/user-guide/reference/cid.html) | + +​## Adobe Target extension APIs + +For more information see [Target API reference](../../solution/adobe-target/api-reference.md). + +### Supported APIs + +| Experience Platform SDK | 4x SDK (iOS \| Android) | +| --- | --- | +| getThirdPartyId: | targetThirdPartyID | +| setThirdPartyId: | targetSetThirdPartyID | +| resetExperience: | targetClearCookies | +| initWithName:targetParameters (AEPTargetPrefetchObject) | targetPrefetchObjectWithName:mboxParameters: | +| prefetchContent:withParameters:callback: | targetPrefetchContent:withProfileParameters:callback: | +| prefetchClearCache: | targetPrefetchClearCache | +| initWithMboxName:defaultContent:targetParameters:contentCallback (AEPTargetRequestObject) | targetRequestObjectWithName:defaultContent:mboxParameters:callback: | +| retrieveLocationContent:withParameters: | targetLoadRequests:withProfileParameters: | +| clickedLocation:withTargetParameters: | locationClickedWithName:mboxParameters:productParameters:orderParameters: | +| setPreviewRestartDeeplink: | targetPreviewRestartDeepLink: | + +### Deprecated APIs + +| 4x SDK | Notes | +|---|---| +| targetPcID | Deprecated | +| targetSessionID | Deprecated | +| targetLoadRequest:callback: | Deprecated | +| targetLoadRequestWithName:defaultContent:profileParameters:orderParameters:mboxParameters:callback: | Deprecated | +| targetLoadRequestWithName:defaultContent:profileParameters:orderParameters:mboxParameters:requestLocationParameters:callback: | Deprecated | +| targetCreateRequestWithName:defaultContent:parameters: | Deprecated | +| targetCreateOrderConfirmRequestWithName:orderId:orderTotal:productPurchasedId:parameters: | Deprecated | diff --git a/src/pages/documentation/resources/upgrade-platform-sdks/comparison.md b/src/pages/resources/upgrade-platform-sdks/comparison.md similarity index 92% rename from src/pages/documentation/resources/upgrade-platform-sdks/comparison.md rename to src/pages/resources/upgrade-platform-sdks/comparison.md index 7b1613165f..c0377fe0e8 100644 --- a/src/pages/documentation/resources/upgrade-platform-sdks/comparison.md +++ b/src/pages/resources/upgrade-platform-sdks/comparison.md @@ -43,14 +43,14 @@ The following tables provide information about the differences between the new E | Functionality | 4x SDK | Experience Platform SDK | |---|---|---| -| Postbacks - Get/POST URL requests | Yes | Yes - [Signals](../../mobile-core/signal/index.md) extension | -| Postbacks - PII Get/POST URL requests | Yes | Yes - [Signals](../../mobile-core/signal/index.md) extension | -| Postbacks - Open app deeplink | Yes | Yes - [Signals](../../mobile-core/signal/index.md) extension | +| Postbacks - Get/POST URL requests | Yes | Yes - [Signals](../../home/base/mobile-core/signal/index.md) extension | +| Postbacks - PII Get/POST URL requests | Yes | Yes - [Signals](../../home/base/mobile-core/signal/index.md) extension | +| Postbacks - Open app deeplink | Yes | Yes - [Signals](../../home/base/mobile-core/signal/index.md) extension | | Push Messaging | Yes | Yes - [Mobile Services](https://developer.adobe.com/client-sdks/previous-versions/documentation/adobe-analytics-mobile-services/) extension (deprecated) | | In-app Messaging | Yes | Yes - [Mobile Services](https://developer.adobe.com/client-sdks/previous-versions/documentation/adobe-analytics-mobile-services/) extension (deprecated) | | Marketing/Acquisition Links | Yes | Yes - [Mobile Services](https://developer.adobe.com/client-sdks/previous-versions/documentation/adobe-analytics-mobile-services/) extension (deprecated)| -| Geo location and beacon tracking | Yes | Yes - [Places extension](../../places/index.md) | -| Geo points-of-interest management | Yes | Yes - [Places extension](../../places/index.md) | +| Geo location and beacon tracking | Yes | Yes - [Places extension](../../solution/places/index.md) | +| Geo points-of-interest management | Yes | Yes - [Places extension](../../solution/places/index.md) | ### Adobe Audience Manager diff --git a/src/pages/documentation/resources/upgrade-platform-sdks/index.md b/src/pages/resources/upgrade-platform-sdks/index.md similarity index 93% rename from src/pages/documentation/resources/upgrade-platform-sdks/index.md rename to src/pages/resources/upgrade-platform-sdks/index.md index bfdd9c933c..4009170b9a 100644 --- a/src/pages/documentation/resources/upgrade-platform-sdks/index.md +++ b/src/pages/resources/upgrade-platform-sdks/index.md @@ -34,14 +34,14 @@ The Experience Platform SDKs contain breaking changes from the version 4 SDKs.Mobile Core contains core SDK functionality that is required for all implementations that require Adobe and/or third-party extensions. +* The Experience Platform SDKs introduce the [Mobile Core](../../home/base/mobile-core/index.md) and constituent extensions.
Mobile Core contains core SDK functionality that is required for all implementations that require Adobe and/or third-party extensions. * The Mobile Core and other extensions are configured in the Data Collection UI in a mobile property.
When published, the Data Collection UI hosts this property configuration and makes it for your SDK implementation. * You decide which SDK extensions to add, configure, and ultimately include in your app project.
This provides the flexibility to customize your implementations.
**Important:** Some extensions depend on others for proper functioning, and these are documented where applicable. * We recommend that you ease your build process by use supported dependency managers, such as Gradle for Android and Cocoapods for iOS. The Data Collection UI provides inline instructions and specs to help you with this process. ### Get started with the upgrade -1. Begin with the [Getting Started](../getting-started/create-a-mobile-property.md) section and ensure that you are appropriately provisioned for tags. +1. Begin with the [Getting Started](../../home/getting-started/create-a-mobile-property.md) section and ensure that you are appropriately provisioned for tags. 2. Ensure all of the required SDK APIs that you currently use are available in the new SDK.
For more information, see [Experience Platform SDKs vs. the 4x SDKs](comparison.md).
**Tip:** The Experience Platform SDK supports iOS versions 10+, Android 4.4+ (API 19+). 3. If you are implementing Analytics, see [Processing rules overview](https://experienceleague.adobe.com/docs/analytics/admin/admin-tools/processing-rules/processing-rules.html) to map the variables and rules. 4. In the Experience Platform SDK, you need to manually implement your Lifecycle calls. For more information, see [Manual Lifecycle Implementation](lifecycle.md). diff --git a/src/pages/documentation/resources/upgrade-platform-sdks/lifecycle.md b/src/pages/resources/upgrade-platform-sdks/lifecycle.md similarity index 100% rename from src/pages/documentation/resources/upgrade-platform-sdks/lifecycle.md rename to src/pages/resources/upgrade-platform-sdks/lifecycle.md diff --git a/src/pages/documentation/resources/upgrade-platform-sdks/tabs/analytics.md b/src/pages/resources/upgrade-platform-sdks/tabs/analytics.md similarity index 100% rename from src/pages/documentation/resources/upgrade-platform-sdks/tabs/analytics.md rename to src/pages/resources/upgrade-platform-sdks/tabs/analytics.md diff --git a/src/pages/documentation/resources/upgrade-platform-sdks/tabs/lifecycle.md b/src/pages/resources/upgrade-platform-sdks/tabs/lifecycle.md similarity index 100% rename from src/pages/documentation/resources/upgrade-platform-sdks/tabs/lifecycle.md rename to src/pages/resources/upgrade-platform-sdks/tabs/lifecycle.md diff --git a/src/pages/documentation/resources/upgrade-platform-sdks/v4-faq.md b/src/pages/resources/upgrade-platform-sdks/v4-faq.md similarity index 83% rename from src/pages/documentation/resources/upgrade-platform-sdks/v4-faq.md rename to src/pages/resources/upgrade-platform-sdks/v4-faq.md index 3d90b1cf9b..08c800288d 100644 --- a/src/pages/documentation/resources/upgrade-platform-sdks/v4-faq.md +++ b/src/pages/resources/upgrade-platform-sdks/v4-faq.md @@ -4,7 +4,7 @@ The version 4 SDKs were first released in September 2013 to support mobile app implementations for Adobe Analytics (including Mobile Services), Adobe Audience Manager, Adobe Target, and Adobe Campaign. These performant, well-tested SDKs provided rich functionality and are used in well over 18,000 apps across app stores. -Spurred by customer feedback for more control, performance, and functionality over the years; and to support future product enhancements, we released the re-architected [Adobe Experience Platform Mobile SDKs](../../../index.md) in September 2018. The new Experience Platform Mobile SDKs replaces the version 4 SDKs and provide support for new features such as flexible configuration through the Data Collection UI, modular Adobe and partner extensions. +Spurred by customer feedback for more control, performance, and functionality over the years; and to support future product enhancements, we released the re-architected Adobe Experience Platform Mobile SDKs in September 2018. The new Experience Platform Mobile SDKs replaces the version 4 SDKs and provide support for new features such as flexible configuration through the Data Collection UI, modular Adobe and partner extensions. Solutions such as [Places Service](https://experienceleague.adobe.com/docs/places/using/home.html) and [Adobe Experience Platform Assurance](https://experienceleague.adobe.com/docs/experience-platform/assurance/home.html) are exclusively available on Experience Platform Mobile SDKs. @@ -18,7 +18,7 @@ Yes! This end-of-support statement does not affect your use of Mobile Services i ## Can I still download and use the version 4 SDKs? -You can continue to use the version 4 SDKs after the end-of-support dates. However, as mentioned in the [end-of-support considerations section](../index.md#end-of-support-considerations), no support will be provided. +You can continue to use the version 4 SDKs after the end-of-support dates. However, as mentioned in the [end-of-support considerations section](./index.md#end-of-support-considerations), no support will be provided. diff --git a/src/pages/documentation/user-guides/app-extension.md b/src/pages/resources/user-guides/app-extension.md similarity index 95% rename from src/pages/documentation/user-guides/app-extension.md rename to src/pages/resources/user-guides/app-extension.md index a05d740bd4..651b845004 100644 --- a/src/pages/documentation/user-guides/app-extension.md +++ b/src/pages/resources/user-guides/app-extension.md @@ -9,11 +9,11 @@ keywords: # iOS App Extension implementation -You can use supported Adobe Experience Platform mobile extensions in your App Extensions to collect usage data. The supported Platform mobile extensions are listed [here](../current-sdk-versions.md#ios). +You can use supported Adobe Experience Platform mobile extensions in your App Extensions to collect usage data. The supported Platform mobile extensions are listed [here](../../home/current-sdk-versions.md#ios). ## Prerequisites -* This tutorial assumes a basic understanding of how to use the iOS AEP Mobile SDK in applications. For more details see [Getting Started](../getting-started/index.md). +* This tutorial assumes a basic understanding of how to use the iOS AEP Mobile SDK in applications. For more details see [Getting Started](../../home/getting-started/index.md). * You should have CocoaPods installed. ## Adding the AEP mobile extensions diff --git a/src/pages/documentation/user-guides/assets/attach-data/rule-complete.png b/src/pages/resources/user-guides/assets/attach-data/rule-complete.png similarity index 100% rename from src/pages/documentation/user-guides/assets/attach-data/rule-complete.png rename to src/pages/resources/user-guides/assets/attach-data/rule-complete.png diff --git a/src/pages/documentation/user-guides/assets/attach-data/set-action.png b/src/pages/resources/user-guides/assets/attach-data/set-action.png similarity index 100% rename from src/pages/documentation/user-guides/assets/attach-data/set-action.png rename to src/pages/resources/user-guides/assets/attach-data/set-action.png diff --git a/src/pages/documentation/user-guides/assets/attach-data/set-event.png b/src/pages/resources/user-guides/assets/attach-data/set-event.png similarity index 100% rename from src/pages/documentation/user-guides/assets/attach-data/set-event.png rename to src/pages/resources/user-guides/assets/attach-data/set-event.png diff --git a/src/pages/documentation/user-guides/assets/attach-data/target-attach-data-data-element-setup.png b/src/pages/resources/user-guides/assets/attach-data/target-attach-data-data-element-setup.png similarity index 100% rename from src/pages/documentation/user-guides/assets/attach-data/target-attach-data-data-element-setup.png rename to src/pages/resources/user-guides/assets/attach-data/target-attach-data-data-element-setup.png diff --git a/src/pages/documentation/user-guides/assets/attach-data/target-attach-data-event-setup-location-clicked.png b/src/pages/resources/user-guides/assets/attach-data/target-attach-data-event-setup-location-clicked.png similarity index 100% rename from src/pages/documentation/user-guides/assets/attach-data/target-attach-data-event-setup-location-clicked.png rename to src/pages/resources/user-guides/assets/attach-data/target-attach-data-event-setup-location-clicked.png diff --git a/src/pages/documentation/user-guides/assets/attach-data/target-attach-data-event-setup-location-displayed.png b/src/pages/resources/user-guides/assets/attach-data/target-attach-data-event-setup-location-displayed.png similarity index 100% rename from src/pages/documentation/user-guides/assets/attach-data/target-attach-data-event-setup-location-displayed.png rename to src/pages/resources/user-guides/assets/attach-data/target-attach-data-event-setup-location-displayed.png diff --git a/src/pages/documentation/user-guides/assets/attach-data/target-attach-data-event-setup-prefetch.png b/src/pages/resources/user-guides/assets/attach-data/target-attach-data-event-setup-prefetch.png similarity index 100% rename from src/pages/documentation/user-guides/assets/attach-data/target-attach-data-event-setup-prefetch.png rename to src/pages/resources/user-guides/assets/attach-data/target-attach-data-event-setup-prefetch.png diff --git a/src/pages/documentation/user-guides/assets/attach-data/target-attach-data-event-setup.png b/src/pages/resources/user-guides/assets/attach-data/target-attach-data-event-setup.png similarity index 100% rename from src/pages/documentation/user-guides/assets/attach-data/target-attach-data-event-setup.png rename to src/pages/resources/user-guides/assets/attach-data/target-attach-data-event-setup.png diff --git a/src/pages/documentation/user-guides/assets/attach-data/target-attach-data-json-example-location-clicked.png b/src/pages/resources/user-guides/assets/attach-data/target-attach-data-json-example-location-clicked.png similarity index 100% rename from src/pages/documentation/user-guides/assets/attach-data/target-attach-data-json-example-location-clicked.png rename to src/pages/resources/user-guides/assets/attach-data/target-attach-data-json-example-location-clicked.png diff --git a/src/pages/documentation/user-guides/assets/attach-data/target-attach-data-rule-setup-location-clicked.png b/src/pages/resources/user-guides/assets/attach-data/target-attach-data-rule-setup-location-clicked.png similarity index 100% rename from src/pages/documentation/user-guides/assets/attach-data/target-attach-data-rule-setup-location-clicked.png rename to src/pages/resources/user-guides/assets/attach-data/target-attach-data-rule-setup-location-clicked.png diff --git a/src/pages/documentation/user-guides/assets/attach-data/target-attach-data-rule-setup-location-displayed.png b/src/pages/resources/user-guides/assets/attach-data/target-attach-data-rule-setup-location-displayed.png similarity index 100% rename from src/pages/documentation/user-guides/assets/attach-data/target-attach-data-rule-setup-location-displayed.png rename to src/pages/resources/user-guides/assets/attach-data/target-attach-data-rule-setup-location-displayed.png diff --git a/src/pages/documentation/user-guides/assets/attach-data/target-attach-data-rule-setup-prefetch.png b/src/pages/resources/user-guides/assets/attach-data/target-attach-data-rule-setup-prefetch.png similarity index 100% rename from src/pages/documentation/user-guides/assets/attach-data/target-attach-data-rule-setup-prefetch.png rename to src/pages/resources/user-guides/assets/attach-data/target-attach-data-rule-setup-prefetch.png diff --git a/src/pages/documentation/user-guides/assets/attach-data/target-attach-data-rule-setup.png b/src/pages/resources/user-guides/assets/attach-data/target-attach-data-rule-setup.png similarity index 100% rename from src/pages/documentation/user-guides/assets/attach-data/target-attach-data-rule-setup.png rename to src/pages/resources/user-guides/assets/attach-data/target-attach-data-rule-setup.png diff --git a/src/pages/documentation/user-guides/assets/modify-data/rule-complete-modify-data.png b/src/pages/resources/user-guides/assets/modify-data/rule-complete-modify-data.png similarity index 100% rename from src/pages/documentation/user-guides/assets/modify-data/rule-complete-modify-data.png rename to src/pages/resources/user-guides/assets/modify-data/rule-complete-modify-data.png diff --git a/src/pages/documentation/user-guides/assets/modify-data/set-action-analytics.png b/src/pages/resources/user-guides/assets/modify-data/set-action-analytics.png similarity index 100% rename from src/pages/documentation/user-guides/assets/modify-data/set-action-analytics.png rename to src/pages/resources/user-guides/assets/modify-data/set-action-analytics.png diff --git a/src/pages/documentation/user-guides/assets/modify-data/set-action-json.png b/src/pages/resources/user-guides/assets/modify-data/set-action-json.png similarity index 100% rename from src/pages/documentation/user-guides/assets/modify-data/set-action-json.png rename to src/pages/resources/user-guides/assets/modify-data/set-action-json.png diff --git a/src/pages/documentation/user-guides/assets/modify-data/set-event.png b/src/pages/resources/user-guides/assets/modify-data/set-event.png similarity index 100% rename from src/pages/documentation/user-guides/assets/modify-data/set-event.png rename to src/pages/resources/user-guides/assets/modify-data/set-event.png diff --git a/src/pages/documentation/user-guides/assets/tags-data-elements/data-elements-create-data-element-ecid.png b/src/pages/resources/user-guides/assets/tags-data-elements/data-elements-create-data-element-ecid.png similarity index 100% rename from src/pages/documentation/user-guides/assets/tags-data-elements/data-elements-create-data-element-ecid.png rename to src/pages/resources/user-guides/assets/tags-data-elements/data-elements-create-data-element-ecid.png diff --git a/src/pages/documentation/user-guides/assets/tags-data-elements/data-elements-create-rule.png b/src/pages/resources/user-guides/assets/tags-data-elements/data-elements-create-rule.png similarity index 100% rename from src/pages/documentation/user-guides/assets/tags-data-elements/data-elements-create-rule.png rename to src/pages/resources/user-guides/assets/tags-data-elements/data-elements-create-rule.png diff --git a/src/pages/documentation/user-guides/attach-data.md b/src/pages/resources/user-guides/attach-data.md similarity index 85% rename from src/pages/documentation/user-guides/attach-data.md rename to src/pages/resources/user-guides/attach-data.md index d33f1f8364..8504761284 100644 --- a/src/pages/documentation/user-guides/attach-data.md +++ b/src/pages/resources/user-guides/attach-data.md @@ -14,9 +14,9 @@ import AttachingDataTarget from './tabs/attach-data/attaching-data/target.md' # Attach data to SDK events -The attach data_rule action is supported in [Mobile Core](../mobile-core/index.md) starting from version 2.1.8 (Launch), 2.3.5 (iOS), and 1.4.5 (Android). This action is powerful, complex, and enables advanced use cases. +The attach data_rule action is supported in [Mobile Core](../../home/base/mobile-core/index.md) starting from version 2.1.8 (Launch), 2.3.5 (iOS), and 1.4.5 (Android). This action is powerful, complex, and enables advanced use cases. -To use this action, you need to learn how events flow in the Adobe Experience Platform Mobile SDK and how they interact with the [rules engine](../mobile-core/rules-engine/index.md). +To use this action, you need to learn how events flow in the Adobe Experience Platform Mobile SDK and how they interact with the [rules engine](../../home/base/mobile-core/rules-engine/index.md). ## Context @@ -30,7 +30,7 @@ In the Experience Platform Mobile SDK, events hold all the data that is required | Source | Indicates the cause or the directionality of the event. For example, a request or a response. | | Event data | The data required to define the event. For example, context data on an Analytics event. | -Extensions that register with [Mobile Core](../mobile-core/index.md) will also register event listeners. A listener is defined by a combination of event type and source. When the SDK event hub processes an event, it notifies all listeners that match the provided combination. +Extensions that register with [Mobile Core](../../home/base/mobile-core/index.md) will also register event listeners. A listener is defined by a combination of event type and source. When the SDK event hub processes an event, it notifies all listeners that match the provided combination. ### How are events created in the SDK? diff --git a/src/pages/documentation/user-guides/building-mobile-extensions.md b/src/pages/resources/user-guides/building-mobile-extensions.md similarity index 100% rename from src/pages/documentation/user-guides/building-mobile-extensions.md rename to src/pages/resources/user-guides/building-mobile-extensions.md diff --git a/src/pages/documentation/user-guides/getting-started-with-platform/assets/overview/commerce-assurance-connection.png b/src/pages/resources/user-guides/getting-started-with-platform/assets/overview/commerce-assurance-connection.png similarity index 100% rename from src/pages/documentation/user-guides/getting-started-with-platform/assets/overview/commerce-assurance-connection.png rename to src/pages/resources/user-guides/getting-started-with-platform/assets/overview/commerce-assurance-connection.png diff --git a/src/pages/documentation/user-guides/getting-started-with-platform/assets/overview/commerce-assurance-login.png b/src/pages/resources/user-guides/getting-started-with-platform/assets/overview/commerce-assurance-login.png similarity index 100% rename from src/pages/documentation/user-guides/getting-started-with-platform/assets/overview/commerce-assurance-login.png rename to src/pages/resources/user-guides/getting-started-with-platform/assets/overview/commerce-assurance-login.png diff --git a/src/pages/documentation/user-guides/getting-started-with-platform/assets/overview/commerces-session-details.png b/src/pages/resources/user-guides/getting-started-with-platform/assets/overview/commerces-session-details.png similarity index 100% rename from src/pages/documentation/user-guides/getting-started-with-platform/assets/overview/commerces-session-details.png rename to src/pages/resources/user-guides/getting-started-with-platform/assets/overview/commerces-session-details.png diff --git a/src/pages/documentation/user-guides/getting-started-with-platform/assets/overview/create-datastream.png b/src/pages/resources/user-guides/getting-started-with-platform/assets/overview/create-datastream.png similarity index 100% rename from src/pages/documentation/user-guides/getting-started-with-platform/assets/overview/create-datastream.png rename to src/pages/resources/user-guides/getting-started-with-platform/assets/overview/create-datastream.png diff --git a/src/pages/documentation/user-guides/getting-started-with-platform/assets/overview/development-icon.png b/src/pages/resources/user-guides/getting-started-with-platform/assets/overview/development-icon.png similarity index 100% rename from src/pages/documentation/user-guides/getting-started-with-platform/assets/overview/development-icon.png rename to src/pages/resources/user-guides/getting-started-with-platform/assets/overview/development-icon.png diff --git a/src/pages/documentation/user-guides/getting-started-with-platform/assets/overview/enable-datastreams.png b/src/pages/resources/user-guides/getting-started-with-platform/assets/overview/enable-datastreams.png similarity index 100% rename from src/pages/documentation/user-guides/getting-started-with-platform/assets/overview/enable-datastreams.png rename to src/pages/resources/user-guides/getting-started-with-platform/assets/overview/enable-datastreams.png diff --git a/src/pages/documentation/user-guides/getting-started-with-platform/assets/overview/xdm-schema-example.png b/src/pages/resources/user-guides/getting-started-with-platform/assets/overview/xdm-schema-example.png similarity index 100% rename from src/pages/documentation/user-guides/getting-started-with-platform/assets/overview/xdm-schema-example.png rename to src/pages/resources/user-guides/getting-started-with-platform/assets/overview/xdm-schema-example.png diff --git a/src/pages/documentation/user-guides/getting-started-with-platform/assets/rules-and-xdm-events/rule-xdm-event-type.png b/src/pages/resources/user-guides/getting-started-with-platform/assets/rules-and-xdm-events/rule-xdm-event-type.png similarity index 100% rename from src/pages/documentation/user-guides/getting-started-with-platform/assets/rules-and-xdm-events/rule-xdm-event-type.png rename to src/pages/resources/user-guides/getting-started-with-platform/assets/rules-and-xdm-events/rule-xdm-event-type.png diff --git a/src/pages/documentation/user-guides/getting-started-with-platform/assets/sample-xdm-implementation/development-icon.png b/src/pages/resources/user-guides/getting-started-with-platform/assets/sample-xdm-implementation/development-icon.png similarity index 100% rename from src/pages/documentation/user-guides/getting-started-with-platform/assets/sample-xdm-implementation/development-icon.png rename to src/pages/resources/user-guides/getting-started-with-platform/assets/sample-xdm-implementation/development-icon.png diff --git a/src/pages/documentation/user-guides/getting-started-with-platform/assets/sample-xdm-implementation/xdm-product-review.png b/src/pages/resources/user-guides/getting-started-with-platform/assets/sample-xdm-implementation/xdm-product-review.png similarity index 100% rename from src/pages/documentation/user-guides/getting-started-with-platform/assets/sample-xdm-implementation/xdm-product-review.png rename to src/pages/resources/user-guides/getting-started-with-platform/assets/sample-xdm-implementation/xdm-product-review.png diff --git a/src/pages/documentation/user-guides/getting-started-with-platform/overview.md b/src/pages/resources/user-guides/getting-started-with-platform/overview.md similarity index 96% rename from src/pages/documentation/user-guides/getting-started-with-platform/overview.md rename to src/pages/resources/user-guides/getting-started-with-platform/overview.md index e4466f4f67..fbc4a1e598 100644 --- a/src/pages/documentation/user-guides/getting-started-with-platform/overview.md +++ b/src/pages/resources/user-guides/getting-started-with-platform/overview.md @@ -63,7 +63,7 @@ To create a configuration identifier use the following steps: * Select `Add service` and from the drop-down select `Adobe Experience Platform`. - * For the `Event Dataset`, select the XDM dataset you created in [Initialize Adobe Experience Platform for data collection](../../edge-network/index.md). + * For the `Event Dataset`, select the XDM dataset you created in [Initialize Adobe Experience Platform for data collection](../../../edge/edge-network/index.md). * Click `Save`. ![](./assets/overview/enable-datastreams.png) @@ -72,9 +72,9 @@ To create a configuration identifier use the following steps: As a prerequisite, the Adobe Experience Platform Edge extension requires the successful implementation of the Adobe Experience Platform Mobile SDK - [Mobile Core](../../mobile-core/index.md). -Experience Edge extension relies on the [Mobile Core](../../mobile-core/index.md) for the transmission of events, managing identity (ECID), and triggering client-side rules based on XDM. +Experience Edge extension relies on the [Mobile Core](../../../home/base/mobile-core/index.md) for the transmission of events, managing identity (ECID), and triggering client-side rules based on XDM. -1. First, follow the steps in the [set up a mobile property tutorial](../../getting-started/create-a-mobile-property.md) in the Data Collection UI. +1. First, follow the steps in the [set up a mobile property tutorial](../../../home/getting-started/create-a-mobile-property.md) in the Data Collection UI. 2. Install the `Adobe Experience Platform Edge` extension from the Catalog. 3. In the configuration view, from `Edge Configuration` section select the `Datastream` configuration you created in the `Generate a Datastream identifier` step and click `Save`. 4. Install the `AEP Assurance` extension from the Catalog. @@ -184,7 +184,7 @@ AEP Assurance (formerly known as Project Griffon) is a product from Adobe that l ![](./assets/overview/commerce-assurance-connection.png) 7. Once connected to Assurance, you will see a Platform icon in red color on the top right corner of the app view. The color of the Platform icon becomes gray if the connectivity to Assurance server is lost for any reason. In this case, you want to reconnect to continue to see the session in the UI. -8. In the Assurance session, you should now start seeing events populating the Events List. When clicking the `Purchase` button from the `Edge` tab, you should see the Experience events sent to Experience Edge. For more details, refer to [Event types handled by the AEP Mobile extension](../../edge-network/validation.md). +8. In the Assurance session, you should now start seeing events populating the Events List. When clicking the `Purchase` button from the `Edge` tab, you should see the Experience events sent to Experience Edge. For more details, refer to [Event types handled by the AEP Mobile extension](../../../edge/edge-network/validation.md). To check the XDM Experience event was successfully validated, check that the `validation for the given event was successful` message is present in the `service com.adobe.streaming.validation` event. @@ -225,7 +225,7 @@ Use the `sendPurchaseXDMEvent` as an example and Assurance to validate that the ## Next steps -If you would like to explore other XDM schemas for your mobile use-case, find more details in the [Adobe Experience Platform - Experience Edge](../../edge-network/index.md) page. +If you would like to explore other XDM schemas for your mobile use-case, find more details in the [Adobe Experience Platform - Experience Edge](../../../edge/edge-network/index.md) page. To learn more about Experience Data Model (XDM), schemas, datasets, and field groups, read [XDM System overview](https://experienceleague.adobe.com/docs/experience-platform/xdm/home.html). diff --git a/src/pages/documentation/user-guides/getting-started-with-platform/rules-and-xdm-events.md b/src/pages/resources/user-guides/getting-started-with-platform/rules-and-xdm-events.md similarity index 97% rename from src/pages/documentation/user-guides/getting-started-with-platform/rules-and-xdm-events.md rename to src/pages/resources/user-guides/getting-started-with-platform/rules-and-xdm-events.md index 508f89296f..7f5075fd6e 100644 --- a/src/pages/documentation/user-guides/getting-started-with-platform/rules-and-xdm-events.md +++ b/src/pages/resources/user-guides/getting-started-with-platform/rules-and-xdm-events.md @@ -109,7 +109,7 @@ Add a new rule in the Data Collection UI or update the one created in the previo ### Next steps -Find more details about the Adobe Experience Platform Mobile SDK Rules Engine and the supported rule types, please read the [Rules Engine documentation](../../mobile-core/rules-engine/index.md) and the [Rules Engine GitHub](https://github.com/adobe/aepsdk-rulesengine-ios). +Find more details about the Adobe Experience Platform Mobile SDK Rules Engine and the supported rule types, please read the [Rules Engine documentation](../../../home/base/mobile-core/rules-engine/index.md) and the [Rules Engine GitHub](https://github.com/adobe/aepsdk-rulesengine-ios). For more rules examples in the Data Collection UI, see the following links: diff --git a/src/pages/documentation/user-guides/getting-started-with-platform/sample-xdm-implementation.md b/src/pages/resources/user-guides/getting-started-with-platform/sample-xdm-implementation.md similarity index 94% rename from src/pages/documentation/user-guides/getting-started-with-platform/sample-xdm-implementation.md rename to src/pages/resources/user-guides/getting-started-with-platform/sample-xdm-implementation.md index 30172f924d..9c4a8f55a2 100644 --- a/src/pages/documentation/user-guides/getting-started-with-platform/sample-xdm-implementation.md +++ b/src/pages/resources/user-guides/getting-started-with-platform/sample-xdm-implementation.md @@ -166,15 +166,15 @@ The customer profile can be viewed in [Adobe Experience Platform](https://experi To learn more about the Adobe Customer Profile, see the [Identity Service overview](https://experienceleague.adobe.com/docs/experience-platform/identity/home.html) and the [Identity namespace overview](https://experienceleague.adobe.com/docs/experience-platform/identity/namespaces.html). -## Extra credit: Create segment based on Identity Authentication State +## Extra credit: Create audience based on Identity Authentication State -Create a segment in [Adobe Experience Platform](https://experience.adobe.com/platform) for the customer profiles where the `Authenticated State = Ambiguous`. +Create an audience in [Adobe Experience Platform](https://experience.adobe.com/platform) for the customer profiles where the `Authenticated State = Ambiguous`. -1. Select **Segments** from the left panel, followed by **Create segment**. +1. Select **Audiences** from the left panel, followed by **Create audience** and **Build rule**. 2. Select **Events**, followed by **XDM Experience Event** and **Identity Map** and add the **Authenticated State** element in the **Start building segment** section. 3. Select **Include Identity Map** within email where `Authenticated State` equals `Ambiguous`. -4. Set the name for this segment, for example "Users with email and authenticated state ambiguous". +4. Set the name for this audience, for example "Users with email and authenticated state ambiguous". 5. Select **Save**. -6. Once the segment is computed, you can see how many users qualify for this segment. +6. Once the audience is computed, you can see how many users qualify for this audience. For more details about segmentation in Adobe Experience Platform, see the [Segment Builder user guide](https://experienceleague.adobe.com/docs/experience-platform/segmentation/ui/segment-builder.html). diff --git a/src/pages/documentation/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/build-xdm-objects/android.md b/src/pages/resources/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/build-xdm-objects/android.md similarity index 100% rename from src/pages/documentation/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/build-xdm-objects/android.md rename to src/pages/resources/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/build-xdm-objects/android.md diff --git a/src/pages/documentation/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/build-xdm-objects/ios.md b/src/pages/resources/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/build-xdm-objects/ios.md similarity index 100% rename from src/pages/documentation/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/build-xdm-objects/ios.md rename to src/pages/resources/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/build-xdm-objects/ios.md diff --git a/src/pages/documentation/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/download-sample-application/android.md b/src/pages/resources/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/download-sample-application/android.md similarity index 100% rename from src/pages/documentation/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/download-sample-application/android.md rename to src/pages/resources/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/download-sample-application/android.md diff --git a/src/pages/documentation/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/download-sample-application/ios.md b/src/pages/resources/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/download-sample-application/ios.md similarity index 100% rename from src/pages/documentation/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/download-sample-application/ios.md rename to src/pages/resources/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/download-sample-application/ios.md diff --git a/src/pages/documentation/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/override-default-dataset/android.md b/src/pages/resources/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/override-default-dataset/android.md similarity index 100% rename from src/pages/documentation/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/override-default-dataset/android.md rename to src/pages/resources/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/override-default-dataset/android.md diff --git a/src/pages/documentation/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/override-default-dataset/ios.md b/src/pages/resources/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/override-default-dataset/ios.md similarity index 100% rename from src/pages/documentation/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/override-default-dataset/ios.md rename to src/pages/resources/user-guides/getting-started-with-platform/tabs/sample-xdm-implementation/override-default-dataset/ios.md diff --git a/src/pages/documentation/user-guides/index.md b/src/pages/resources/user-guides/index.md similarity index 93% rename from src/pages/documentation/user-guides/index.md rename to src/pages/resources/user-guides/index.md index 1c8addda52..7c88837ed1 100644 --- a/src/pages/documentation/user-guides/index.md +++ b/src/pages/resources/user-guides/index.md @@ -17,4 +17,4 @@ This sections provides a starting point for mobile application developers who wa ## Building mobile extensions -To learn how to extend Mobile SDK to support customer-specific features, and allow for the greatest flexibility, please read the guide on [building mobile extensions](building-mobile-extensions.md). +To learn how to extend Mobile SDK to support customer-specific features, and allow for the greatest flexibility, please read the guide on [building mobile extensions](./building-mobile-extensions.md). diff --git a/src/pages/documentation/user-guides/modify-data.md b/src/pages/resources/user-guides/modify-data.md similarity index 91% rename from src/pages/documentation/user-guides/modify-data.md rename to src/pages/resources/user-guides/modify-data.md index 1516b7e86c..e539be1e94 100644 --- a/src/pages/documentation/user-guides/modify-data.md +++ b/src/pages/resources/user-guides/modify-data.md @@ -10,9 +10,9 @@ keywords: # Modify data in SDK events -The modify data rule action is supported in [Mobile Core](../mobile-core/index.md) starting from version 2.1.14 (Launch), version 2.7.0 (iOS), and 1.5.5 (Android). This action is powerful, complex, and enables advanced use cases. +The modify data rule action is supported in [Mobile Core](../../home/base/mobile-core/index.md) starting from version 2.1.14 (Launch), version 2.7.0 (iOS), and 1.5.5 (Android). This action is powerful, complex, and enables advanced use cases. -To use this action, you need to learn how events flow in the Adobe Experience Platform Mobile SDK and how they interact with the [rules engine](../mobile-core/rules-engine/index.md). +To use this action, you need to learn how events flow in the Adobe Experience Platform Mobile SDK and how they interact with the [rules engine](../../home/base/mobile-core/rules-engine/index.md). ## Context @@ -26,7 +26,7 @@ In the Experience Platform Mobile SDK, events hold all the data that is required | Source | Indicates the cause of or directionality of the event. For example, a request or a response. | | Event data | Additional data is required to define the event. For example, context data on an Analytics event. | -Extensions that register with [Mobile Core](../mobile-core/index.md) will also register event listeners. A listener is defined by a combination of event type and source. When the SDK event hub processes an event, it notifies all listeners that match the provided combination. +Extensions that register with [Mobile Core](../../home/base/mobile-core/index.md) will also register event listeners. A listener is defined by a combination of event type and source. When the SDK event hub processes an event, it notifies all listeners that match the provided combination. ### How are events created in the SDK? diff --git a/src/pages/documentation/user-guides/tabs/attach-data/attaching-data/analytics.md b/src/pages/resources/user-guides/tabs/attach-data/attaching-data/analytics.md similarity index 100% rename from src/pages/documentation/user-guides/tabs/attach-data/attaching-data/analytics.md rename to src/pages/resources/user-guides/tabs/attach-data/attaching-data/analytics.md diff --git a/src/pages/documentation/user-guides/tabs/attach-data/attaching-data/target.md b/src/pages/resources/user-guides/tabs/attach-data/attaching-data/target.md similarity index 100% rename from src/pages/documentation/user-guides/tabs/attach-data/attaching-data/target.md rename to src/pages/resources/user-guides/tabs/attach-data/attaching-data/target.md diff --git a/src/pages/documentation/user-guides/tags-data-elements.md b/src/pages/resources/user-guides/tags-data-elements.md similarity index 89% rename from src/pages/documentation/user-guides/tags-data-elements.md rename to src/pages/resources/user-guides/tags-data-elements.md index ed9a752929..49ba275a13 100644 --- a/src/pages/documentation/user-guides/tags-data-elements.md +++ b/src/pages/resources/user-guides/tags-data-elements.md @@ -22,7 +22,7 @@ You can use data elements during rule creation to consolidate the definition of As a best practice, you should reuse data elements. -Data elements are building blocks for rules and allow you create a data dictionary of commonly used data in the Experience Platform Mobile SDK, regardless of where they originate (shared state, event data) or which extension creates them. Data elements are populated with data when they are processed in the [Rules Engine](../mobile-core/rules-engine/index.md). +Data elements are building blocks for rules and allow you create a data dictionary of commonly used data in the Experience Platform Mobile SDK, regardless of where they originate (shared state, event data) or which extension creates them. Data elements are populated with data when they are processed in the [Rules Engine](../../home/base/mobile-core/rules-engine/index.md). To use data elements at a high level, complete the following steps: @@ -75,16 +75,16 @@ In the following example, a rule is created to send a postback that contains the ## Publish the configuration -After the property is published, this new rule is made available for download by the applications that are configured for this property. For more information, please read the [publish the configuration tutorial](../getting-started/create-a-mobile-property.md#publish-configuration) and the [configure the SDK with an Environment ID tutorial](../getting-started/track-events.md#configure-the-sdk-with-an-environment-id). When the application launches, this rule is triggered, and if the ECID exists in the SDK, a postback is sent to the URL with the ECID value. +After the property is published, this new rule is made available for download by the applications that are configured for this property. For more information, please read the [publish the configuration tutorial](../../home/getting-started/create-a-mobile-property.md#publish-configuration) and the [configure the SDK with an Environment ID tutorial](../../home/getting-started/track-events.md#configure-the-sdk-with-an-environment-id). When the application launches, this rule is triggered, and if the ECID exists in the SDK, a postback is sent to the URL with the ECID value. ## Additional information Here is some additional information about the Rules Engine and the Signal extension: -* [Rules Engine](../mobile-core/rules-engine/index.md) +* [Rules Engine](../../home/base/mobile-core/rules-engine/index.md) An overview and technical details of the Experience Platform Mobile SDK Rules Engine. -* [Signal extension and Rules Engine integration](../mobile-core/signal/rules-engine-integration.md) +* [Signal extension and Rules Engine integration](../../home/base/mobile-core/signal/rules-engine-integration.md) This section provides an example of how to create rules to trigger actions in the Signals extension. diff --git a/src/pages/documentation/adobe-analytics/api-reference.md b/src/pages/solution/adobe-analytics/api-reference.md similarity index 94% rename from src/pages/documentation/adobe-analytics/api-reference.md rename to src/pages/solution/adobe-analytics/api-reference.md index dfd7c9465d..b82addd596 100644 --- a/src/pages/documentation/adobe-analytics/api-reference.md +++ b/src/pages/solution/adobe-analytics/api-reference.md @@ -96,7 +96,7 @@ Retrieves the Analytics tracking identifier that is generated for this app/devic -If you have an [Experience Cloud ID](../mobile-core/identity/api-reference.md#getexperiencecloudid) and have not yet configured a visitor ID grace period, the value returned by `getTrackingIdentifier` may be null. +If you have an [Experience Cloud ID](../../home/base/mobile-core/identity/api-reference.md#getexperiencecloudid) and have not yet configured a visitor ID grace period, the value returned by `getTrackingIdentifier` may be null. @@ -142,7 +142,7 @@ Registers the Analytics extension with the Mobile Core SDK. -Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../mobile-core/api-reference.md#registerextensions) API instead. +Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../../home/base/mobile-core/api-reference.md#registerextensions) API instead. @@ -156,7 +156,7 @@ Clears the identities stored in the Analytics extension - `tracking identifier ( -Support for this API was added in:
  • Android Analytics version 1.2.9
  • iOS AEPAnalytics version 3.0.3

See [MobileCore.resetIdentities](../mobile-core/api-reference.md#resetidentities) for more details. +Support for this API was added in:
  • Android Analytics version 1.2.9
  • iOS AEPAnalytics version 3.0.3

See [MobileCore.resetIdentities](../../home/base/mobile-core/api-reference.md#resetidentities) for more details. ## sendQueuedHits diff --git a/src/pages/documentation/adobe-analytics/assets/index/compareWorkflows.png b/src/pages/solution/adobe-analytics/assets/index/compareWorkflows.png similarity index 100% rename from src/pages/documentation/adobe-analytics/assets/index/compareWorkflows.png rename to src/pages/solution/adobe-analytics/assets/index/compareWorkflows.png diff --git a/src/pages/documentation/adobe-analytics/assets/index/mobile-analytics-company.png b/src/pages/solution/adobe-analytics/assets/index/mobile-analytics-company.png similarity index 100% rename from src/pages/documentation/adobe-analytics/assets/index/mobile-analytics-company.png rename to src/pages/solution/adobe-analytics/assets/index/mobile-analytics-company.png diff --git a/src/pages/documentation/adobe-analytics/assets/index/mobile-analytics-configuration.png b/src/pages/solution/adobe-analytics/assets/index/mobile-analytics-configuration.png similarity index 100% rename from src/pages/documentation/adobe-analytics/assets/index/mobile-analytics-configuration.png rename to src/pages/solution/adobe-analytics/assets/index/mobile-analytics-configuration.png diff --git a/src/pages/documentation/adobe-analytics/assets/index/workflow.png b/src/pages/solution/adobe-analytics/assets/index/workflow.png similarity index 100% rename from src/pages/documentation/adobe-analytics/assets/index/workflow.png rename to src/pages/solution/adobe-analytics/assets/index/workflow.png diff --git a/src/pages/documentation/adobe-analytics/assets/product-variable/map-products.png b/src/pages/solution/adobe-analytics/assets/product-variable/map-products.png similarity index 100% rename from src/pages/documentation/adobe-analytics/assets/product-variable/map-products.png rename to src/pages/solution/adobe-analytics/assets/product-variable/map-products.png diff --git a/src/pages/documentation/adobe-analytics/assets/track-beacon/beacon-condition.png b/src/pages/solution/adobe-analytics/assets/track-beacon/beacon-condition.png similarity index 100% rename from src/pages/documentation/adobe-analytics/assets/track-beacon/beacon-condition.png rename to src/pages/solution/adobe-analytics/assets/track-beacon/beacon-condition.png diff --git a/src/pages/documentation/adobe-analytics/assets/track-beacon/beacon-data-element.png b/src/pages/solution/adobe-analytics/assets/track-beacon/beacon-data-element.png similarity index 100% rename from src/pages/documentation/adobe-analytics/assets/track-beacon/beacon-data-element.png rename to src/pages/solution/adobe-analytics/assets/track-beacon/beacon-data-element.png diff --git a/src/pages/documentation/adobe-analytics/assets/track-beacon/beacon-rule.png b/src/pages/solution/adobe-analytics/assets/track-beacon/beacon-rule.png similarity index 100% rename from src/pages/documentation/adobe-analytics/assets/track-beacon/beacon-rule.png rename to src/pages/solution/adobe-analytics/assets/track-beacon/beacon-rule.png diff --git a/src/pages/documentation/adobe-analytics/assets/track-beacon/beacon-token-replacement.png b/src/pages/solution/adobe-analytics/assets/track-beacon/beacon-token-replacement.png similarity index 100% rename from src/pages/documentation/adobe-analytics/assets/track-beacon/beacon-token-replacement.png rename to src/pages/solution/adobe-analytics/assets/track-beacon/beacon-token-replacement.png diff --git a/src/pages/documentation/adobe-analytics/event-reference.md b/src/pages/solution/adobe-analytics/event-reference.md similarity index 98% rename from src/pages/documentation/adobe-analytics/event-reference.md rename to src/pages/solution/adobe-analytics/event-reference.md index 3234397e09..40a6eea801 100644 --- a/src/pages/documentation/adobe-analytics/event-reference.md +++ b/src/pages/solution/adobe-analytics/event-reference.md @@ -80,7 +80,7 @@ The following events are handled by the Adobe Analytics extension: ### Generic track content request -This event is a request to complete processing on the Analytics hits queue. The event will be created when either of the [`trackAction`](../mobile-core/api-reference.md#trackaction) or [`trackState`](../mobile-core/api-reference.md#trackstate) APIs is called. +This event is a request to complete processing on the Analytics hits queue. The event will be created when either of the [`trackAction`](../../home/base/mobile-core/api-reference.md#trackaction) or [`trackState`](../../home/base/mobile-core/api-reference.md#trackstate) APIs is called. The Analytics extension receives and processes the following keys in a generic track content request event: @@ -309,7 +309,7 @@ Note that the data may contain other custom key-value pairs that are **not** def ### Lifecycle request content -This event represents a request to the Lifecycle extension to start or stop collecting data and is generated when [lifecycleStart](../mobile-core/lifecycle/api-reference.md#lifecyclestart) and [lifecyclePause()](../mobile-core/lifecycle/api-reference.md#lifecyclepause) are used. +This event represents a request to the Lifecycle extension to start or stop collecting data and is generated when [lifecycleStart](../../home/base/mobile-core/lifecycle/api-reference.md#lifecyclestart) and [lifecyclePause()](../../home/base/mobile-core/lifecycle/api-reference.md#lifecyclepause) are used. The Analytics extension only listens for the Lifecycle start event, and the Analytics database queue should be paused for up to 1000 milliseconds, which is the default value for `DEFAULT_LIFECYCLE_RESPONSE_WAIT_TIMEOUT`. diff --git a/src/pages/documentation/adobe-analytics/faq.md b/src/pages/solution/adobe-analytics/faq.md similarity index 88% rename from src/pages/documentation/adobe-analytics/faq.md rename to src/pages/solution/adobe-analytics/faq.md index e69f44d7ae..b922f85fcb 100644 --- a/src/pages/documentation/adobe-analytics/faq.md +++ b/src/pages/solution/adobe-analytics/faq.md @@ -27,12 +27,12 @@ If you see SDK identifiers unexpectedly change, try the following fixes to addre The metric `Crashes` is computed based on the Lifecycle start and pause API calls implemented in your mobile application. How can you verify if the implementation is correct: * Ensure that the Lifecycle extension is registered. -* Verify that both MobileCore APIs `lifecycleStart` and `lifecyclePause` are implemented in the application based on the recommended settings for each platform. See the [guide for registering Lifecycle with MobileCore and adding appropriate start/pause calls](../mobile-core/lifecycle/index.md#register-lifecycle-with-mobile-core-and-add-appropriate-startpause-calls). -* For more details, see also [Tracking app crashes in iOS](../mobile-core/lifecycle/ios.md#tracking-app-crashes-in-ios) and [Android](../mobile-core/lifecycle/android.md#tracking-app-crashes-in-android). +* Verify that both MobileCore APIs `lifecycleStart` and `lifecyclePause` are implemented in the application based on the recommended settings for each platform. See the [guide for registering Lifecycle with MobileCore and adding appropriate start/pause calls](../../home/base/mobile-core/lifecycle/index.md#register-lifecycle-with-mobile-core-and-add-appropriate-startpause-calls). +* For more details, see also [Tracking app crashes in iOS](../../home/base/mobile-core/lifecycle/ios.md#tracking-app-crashes-in-ios) and [Android](../../home/base/mobile-core/lifecycle/android.md#tracking-app-crashes-in-android). ## How are mobile visits different from launches? -A launch is measured by the SDK when a user opens the app for the first time or returns to the app after having been out of the app for longer than the specified timeout value. The typical timeout is 5 minutes (300 seconds) in the [lifecycleTimeout](../mobile-core/lifecycle/index.md#device-information) configuration setting. +A launch is measured by the SDK when a user opens the app for the first time or returns to the app after having been out of the app for longer than the specified timeout value. The typical timeout is 5 minutes (300 seconds) in the [lifecycleTimeout](../../home/base/mobile-core/lifecycle/index.md#device-information) configuration setting. A visit is a server-side calculation by Adobe Analytics and is based on the first and last data hits that are sent by the SDK without exceeding a visit timeout. Typically, session timeouts are set at 30 minutes for a report suite. Although visits come from traditional web analytics, these hits still provide valuable insights into how users enter and exit from your app. @@ -46,7 +46,7 @@ If you have followed the documentation and are unable to see reporting data in y ### Verify that the Analytics extension is registered -The [Analytics extension](./index.md) and its dependent [Identity extension](../mobile-core/identity/index.md) should be registered and configured correctly for the SDK to start processing trackAction/trackState requests. +The [Analytics extension](./index.md) and its dependent [Identity extension](../../home/base/mobile-core/identity/index.md) should be registered and configured correctly for the SDK to start processing trackAction/trackState requests. ### Verify that network requests are sent to Adobe Analytics @@ -71,4 +71,4 @@ If you are unable to resolve your concerns through resources provided here, plea ## How do I send data to Adobe Analytics in React Native and Flutter? -In the latest SDK version (AEP-prefixed) for React Native and Flutter, you can send data to Analytics via the Edge Network using the Edge Network extension and `sendEvent` API. If you want a drop-in migration solution for an existing `trackAction` / `trackState` implementation, you can do this with the help of the Edge Bridge extension. You can learn more about these options in the [migration guide](../adobe-analytics/migrate-to-edge-network.md). +In the latest SDK version (AEP-prefixed) for React Native and Flutter, you can send data to Analytics via the Edge Network using the Edge Network extension and `sendEvent` API. If you want a drop-in migration solution for an existing `trackAction` / `trackState` implementation, you can do this with the help of the Edge Bridge extension. You can learn more about these options in the [migration guide](./migrate-to-edge-network.md). diff --git a/src/pages/documentation/adobe-analytics/index.md b/src/pages/solution/adobe-analytics/index.md similarity index 88% rename from src/pages/documentation/adobe-analytics/index.md rename to src/pages/solution/adobe-analytics/index.md index 3dd1ab0547..5d8dbad085 100644 --- a/src/pages/documentation/adobe-analytics/index.md +++ b/src/pages/solution/adobe-analytics/index.md @@ -14,7 +14,7 @@ import Tabs from './tabs/index.md' 1. In the Data Collection UI, select the **Extensions** tab. 2. On the **Catalog** tab, locate the **Adobe Analytics** extension, and select **Install**. -3. Type the extension settings. For more information, please read the [configure the Analytics Extension section](./#configure-the-analytics-extension). +3. Type the extension settings. For more information, please read the [configure the Analytics Extension section](#configure-the-analytics-extension). 4. Click **Save**. 5. Follow the publishing process to update SDK configuration. @@ -70,7 +70,7 @@ If you currently send Mobile SDK data to a report suite that also collects data -For more information about Analytics server-side forwarding to Audience Manager, see the documentation on [Analytics sever-side forwarding](./#server-side-forwarding-with-audience-manager). +For more information about Analytics server-side forwarding to Audience Manager, see the documentation on [Analytics sever-side forwarding](#server-side-forwarding-with-audience-manager). If you set up Analytics server-side forwarding to Audience Manager in your Analytics report suite, select the **Audience Manager Forwarding** checkbox. When this checkbox is selected, all SDK requests to Analytics servers are sent with an expected response code of **10**. This step ensures that client-side Analytics response traffic is forwarded to the Audience Manager SDK so that the User Profile is correctly updated. @@ -100,7 +100,7 @@ The default value for this setting is 0, which means that hit batching is disabl #### Launch hit delay -The number of seconds to wait before Analytics launch hits are sent from the SDK. Ensure that this setting is set at 5 seconds or greater when using acquisition functionality from the [Mobile Services](../adobe-analytics-mobile-services/) extension. +The number of seconds to wait before Analytics launch hits are sent from the SDK. Ensure that this setting is set at 5 seconds or greater when using acquisition functionality from the [Mobile Services](https://developer.adobe.com/client-sdks/previous-versions/documentation/adobe-analytics-mobile-services/) extension. ## Add Analytics to your application @@ -128,15 +128,15 @@ iOS ## Send Lifecycle metrics to Analytics -To automatically report on the application lifecycle details in Analytics, ensure that you properly configure the lifecycle data collection. For more information, see the documentation on [Lifecycle metrics](../mobile-core/lifecycle/metrics.md). +To automatically report on the application lifecycle details in Analytics, ensure that you properly configure the lifecycle data collection. For more information, see the documentation on [Lifecycle metrics](../../home/base/mobile-core/lifecycle/metrics.md). ## Send app states and actions to Analytics -To track mobile app states and actions in Adobe Analytics, implement the [trackAction](../mobile-core/api-reference.md#trackaction) and [trackState](../mobile-core/api-reference.md#trackstate) APIs from the Mobile Core extension. For more information, see the [track app actions](../mobile-core/api-reference.md#track-app-actions) and [track app states](../mobile-core/api-reference.md#track-app-states-and-views) tutorials. +To track mobile app states and actions in Adobe Analytics, implement the [trackAction](../../home/base/mobile-core/api-reference.md#trackaction) and [trackState](../../home/base/mobile-core/api-reference.md#trackstate) APIs from the Mobile Core extension. For more information, see the [track app actions](../../home/base/mobile-core/api-reference.md#track-app-actions) and [track app states](../../home/base/mobile-core/api-reference.md#track-app-states-and-views) tutorials. -[trackState](../mobile-core/api-reference.md#trackstate) reports the view state as the **Page Name**, and state views are reported as **Page View** in Analytics. The value is sent to Analytics by using the page name variable (`pagename=value`).

[trackAction](../mobile-core/api-reference.md#trackaction) reports the Action as an **event** and does not increment your page views in Analytics. The value is sent to Analytics by using the action variable (`action=value`). +[trackState](../../home/base/mobile-core/api-reference.md#trackstate) reports the view state as the **Page Name**, and state views are reported as **Page View** in Analytics. The value is sent to Analytics by using the page name variable (`pagename=value`).

[trackAction](../../home/base/mobile-core/api-reference.md#trackaction) reports the Action as an **event** and does not increment your page views in Analytics. The value is sent to Analytics by using the action variable (`action=value`). ## Integrations with Adobe Experience Platform solutions and services @@ -193,4 +193,4 @@ iOS -For more information, see the [configuration API reference](../mobile-core/configuration/api-reference.md). +For more information, see the [configuration API reference](../../home/base/mobile-core/configuration/api-reference.md). diff --git a/src/pages/documentation/adobe-analytics/migrate-to-edge-network.md b/src/pages/solution/adobe-analytics/migrate-to-edge-network.md similarity index 92% rename from src/pages/documentation/adobe-analytics/migrate-to-edge-network.md rename to src/pages/solution/adobe-analytics/migrate-to-edge-network.md index 2c4cd20917..983afc7a8c 100644 --- a/src/pages/documentation/adobe-analytics/migrate-to-edge-network.md +++ b/src/pages/solution/adobe-analytics/migrate-to-edge-network.md @@ -15,7 +15,7 @@ The **Edge Bridge extension** offers a drop in solution for migrating existing A -Edge Bridge only supports the Analytics drop-in migration case. If you are looking to migrate your Adobe Target implementation, please refer to the [Adobe Journey Optimizer Decisioning documentation](../adobe-journey-optimizer-decisioning/index.md) for more details. +Edge Bridge only supports the Analytics drop-in migration case. If you are looking to migrate your Adobe Target implementation, please refer to the [Adobe Journey Optimizer Decisioning documentation](../../edge/adobe-journey-optimizer-decisioning/index.md) for more details. ## Extensions comparison @@ -27,7 +27,7 @@ Edge Bridge only supports the Analytics drop-in migration case. If you are looki -Other foundational extensions include the [Consent for Edge Network extension](../consent-for-edge-network/index.md) which enables consent preferences collection from your mobile app, and the [Assurance extension](../platform-assurance-sdk/index.md) for validating your app implementation. +Other foundational extensions include the [Consent for Edge Network extension](../../edge/consent-for-edge-network/index.md) which enables consent preferences collection from your mobile app, and the [Assurance extension](../../home/base/assurance/index.md) for validating your app implementation. ### Workflow comparison @@ -66,7 +66,7 @@ To learn about the end to end Edge Bridge extension implementation process, foll ### Not yet on latest Mobile SDK? -If you are not using the latest version of the Mobile SDK (IE: v4 Mobile SDK or the ACP-prefixed Mobile SDK), you should first migrate to the [latest version](https://developer.adobe.com/client-sdks/documentation/current-sdk-versions), and then continue with this guide. +If you are not using the latest version of the Mobile SDK (IE: v4 Mobile SDK or the ACP-prefixed Mobile SDK), you should first migrate to the [latest version](../../home/current-sdk-versions.md), and then continue with this guide. ### Consent for Edge Network extension @@ -74,7 +74,7 @@ The Consent for Edge Network mobile extension enables consent preference collect The privacy status setting (MobilePrivacyStatus.OPT_IN, OPT_OUT, UNKNOWN) set in the mobile tag property which is used by Adobe Experience Cloud mobile extensions (for example, Analytics and Target), are not read nor used by the Edge Network extensions. The Edge Network extensions rely on the Consent for Edge Network extension for this setting. -For more details, please refer to the [Consent for Edge Network extension documentation](https://developer.adobe.com/client-sdks/documentation/consent-for-edge-network). +For more details, please refer to the [Consent for Edge Network extension documentation](../../edge/consent-for-edge-network/index.md). ### Identity consideration for the migration @@ -86,4 +86,4 @@ If you need further assistance, please contact [Adobe Experience Cloud customer ## Next steps -To learn more about latest versions available for the Edge Network and Edge Bridge extensions, see the [Current SDK versions page](../current-sdk-versions.md). +To learn more about latest versions available for the Edge Network and Edge Bridge extensions, see the [Current SDK versions page](../../home/current-sdk-versions.md). diff --git a/src/pages/documentation/adobe-analytics/product-variable.md b/src/pages/solution/adobe-analytics/product-variable.md similarity index 100% rename from src/pages/documentation/adobe-analytics/product-variable.md rename to src/pages/solution/adobe-analytics/product-variable.md diff --git a/src/pages/documentation/adobe-analytics/release-notes.md b/src/pages/solution/adobe-analytics/release-notes.md similarity index 100% rename from src/pages/documentation/adobe-analytics/release-notes.md rename to src/pages/solution/adobe-analytics/release-notes.md diff --git a/src/pages/documentation/adobe-analytics/tabs/api-reference.md b/src/pages/solution/adobe-analytics/tabs/api-reference.md similarity index 100% rename from src/pages/documentation/adobe-analytics/tabs/api-reference.md rename to src/pages/solution/adobe-analytics/tabs/api-reference.md diff --git a/src/pages/documentation/adobe-analytics/tabs/index.md b/src/pages/solution/adobe-analytics/tabs/index.md similarity index 95% rename from src/pages/documentation/adobe-analytics/tabs/index.md rename to src/pages/solution/adobe-analytics/tabs/index.md index ba1fc84c09..875368f104 100644 --- a/src/pages/documentation/adobe-analytics/tabs/index.md +++ b/src/pages/solution/adobe-analytics/tabs/index.md @@ -4,11 +4,11 @@ noIndex: true -1. Add the [Mobile Core](../mobile-core/index.md) and Analytics extensions to your project using the app's Gradle file. +1. Add the [Mobile Core](../../home/base/mobile-core/index.md) and Analytics extensions to your project using the app's Gradle file. -Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../resources/manage-gradle-dependencies.md) for more information. +Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../../resources/manage-gradle-dependencies.md) for more information. @@ -39,7 +39,7 @@ import com.adobe.marketing.mobile.Analytics -1. Add the [Mobile Core](../mobile-core/index.md) and Analytics extensions to your project using Cocoapods. +1. Add the [Mobile Core](../../home/base/mobile-core/index.md) and Analytics extensions to your project using Cocoapods. 2. Add the following pods in your `Podfile`: ```ruby diff --git a/src/pages/documentation/adobe-analytics/tabs/product-variable.md b/src/pages/solution/adobe-analytics/tabs/product-variable.md similarity index 100% rename from src/pages/documentation/adobe-analytics/tabs/product-variable.md rename to src/pages/solution/adobe-analytics/tabs/product-variable.md diff --git a/src/pages/documentation/adobe-analytics/tabs/track-beacon/clear-beacon/android.md b/src/pages/solution/adobe-analytics/tabs/track-beacon/clear-beacon/android.md similarity index 100% rename from src/pages/documentation/adobe-analytics/tabs/track-beacon/clear-beacon/android.md rename to src/pages/solution/adobe-analytics/tabs/track-beacon/clear-beacon/android.md diff --git a/src/pages/documentation/adobe-analytics/tabs/track-beacon/clear-beacon/ios.md b/src/pages/solution/adobe-analytics/tabs/track-beacon/clear-beacon/ios.md similarity index 100% rename from src/pages/documentation/adobe-analytics/tabs/track-beacon/clear-beacon/ios.md rename to src/pages/solution/adobe-analytics/tabs/track-beacon/clear-beacon/ios.md diff --git a/src/pages/documentation/adobe-analytics/tabs/track-beacon/track-beacon/android.md b/src/pages/solution/adobe-analytics/tabs/track-beacon/track-beacon/android.md similarity index 100% rename from src/pages/documentation/adobe-analytics/tabs/track-beacon/track-beacon/android.md rename to src/pages/solution/adobe-analytics/tabs/track-beacon/track-beacon/android.md diff --git a/src/pages/documentation/adobe-analytics/tabs/track-beacon/track-beacon/ios.md b/src/pages/solution/adobe-analytics/tabs/track-beacon/track-beacon/ios.md similarity index 100% rename from src/pages/documentation/adobe-analytics/tabs/track-beacon/track-beacon/ios.md rename to src/pages/solution/adobe-analytics/tabs/track-beacon/track-beacon/ios.md diff --git a/src/pages/documentation/adobe-analytics/track-beacon.md b/src/pages/solution/adobe-analytics/track-beacon.md similarity index 92% rename from src/pages/documentation/adobe-analytics/track-beacon.md rename to src/pages/solution/adobe-analytics/track-beacon.md index 2a4258fb9d..521813b82d 100644 --- a/src/pages/documentation/adobe-analytics/track-beacon.md +++ b/src/pages/solution/adobe-analytics/track-beacon.md @@ -20,13 +20,13 @@ import ClearBeaconIos from './tabs/track-beacon/clear-beacon/ios.md' Sending beacon data to Adobe Analytics for reporting can be an effective way to understand how your audience can interact with physical landmarks. -The `trackBeacon` API from v4 SDKs is no longer available in the Experience Platform SDKs. Now, you need to manually send beacon tracking data to your Adobe Analytics server and create the rules based on a user's proximity to your beacons. This solution requires the [Profile extension](../profile/index.md) to create beacon-related rules. +The `trackBeacon` API from v4 SDKs is no longer available in the Experience Platform SDKs. Now, you need to manually send beacon tracking data to your Adobe Analytics server and create the rules based on a user's proximity to your beacons. This solution requires the [Profile extension](../../home/base/profile/index.md) to create beacon-related rules. This topic contains sample code to help you implement your own `trackBeacon` calls. ### Track a beacon -When your user comes within the range of a beacon, call this method to send beacon data to [Adobe Analytics](../adobe-analytics/index.md). This code also saves all beacon-related data in the client-side Profile for use with the Rules Engine. +When your user comes within the range of a beacon, call this method to send beacon data to [Adobe Analytics](./index.md). This code also saves all beacon-related data in the client-side Profile for use with the Rules Engine. diff --git a/src/pages/documentation/adobe-audience-manager/api-reference.md b/src/pages/solution/adobe-audience-manager/api-reference.md similarity index 97% rename from src/pages/documentation/adobe-audience-manager/api-reference.md rename to src/pages/solution/adobe-audience-manager/api-reference.md index ed8ec0386a..f0a117b85e 100644 --- a/src/pages/documentation/adobe-audience-manager/api-reference.md +++ b/src/pages/solution/adobe-audience-manager/api-reference.md @@ -46,7 +46,7 @@ This API registers an extension class that was derived from with a unique name. -Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../mobile-core/api-reference.md#registerextensions) API instead. +Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../../home/base/mobile-core/api-reference.md#registerextensions) API instead. diff --git a/src/pages/documentation/adobe-audience-manager/assets/index/configure.png b/src/pages/solution/adobe-audience-manager/assets/index/configure.png similarity index 100% rename from src/pages/documentation/adobe-audience-manager/assets/index/configure.png rename to src/pages/solution/adobe-audience-manager/assets/index/configure.png diff --git a/src/pages/documentation/adobe-audience-manager/event-reference.md b/src/pages/solution/adobe-audience-manager/event-reference.md similarity index 100% rename from src/pages/documentation/adobe-audience-manager/event-reference.md rename to src/pages/solution/adobe-audience-manager/event-reference.md diff --git a/src/pages/documentation/adobe-audience-manager/index.md b/src/pages/solution/adobe-audience-manager/index.md similarity index 97% rename from src/pages/documentation/adobe-audience-manager/index.md rename to src/pages/solution/adobe-audience-manager/index.md index f69a2b97de..e7e4dd01b6 100644 --- a/src/pages/documentation/adobe-audience-manager/index.md +++ b/src/pages/solution/adobe-audience-manager/index.md @@ -54,7 +54,7 @@ For more information about implementing Audience Manager APIs, please read the [ ## Configuration keys -To update SDK configuration programmatically, use the following information to change your Audience Manager configuration values. For more information, see the [Configuration API reference](../mobile-core/configuration/api-reference.md). +To update SDK configuration programmatically, use the following information to change your Audience Manager configuration values. For more information, see the [Configuration API reference](../../home/base/mobile-core/configuration/api-reference.md). | Key | Required | Description | Data Type | | :--- | :--- | :--- | :--- | diff --git a/src/pages/documentation/adobe-audience-manager/release-notes.md b/src/pages/solution/adobe-audience-manager/release-notes.md similarity index 100% rename from src/pages/documentation/adobe-audience-manager/release-notes.md rename to src/pages/solution/adobe-audience-manager/release-notes.md diff --git a/src/pages/documentation/adobe-audience-manager/tabs/api-reference.md b/src/pages/solution/adobe-audience-manager/tabs/api-reference.md similarity index 100% rename from src/pages/documentation/adobe-audience-manager/tabs/api-reference.md rename to src/pages/solution/adobe-audience-manager/tabs/api-reference.md diff --git a/src/pages/documentation/adobe-audience-manager/tabs/index.md b/src/pages/solution/adobe-audience-manager/tabs/index.md similarity index 94% rename from src/pages/documentation/adobe-audience-manager/tabs/index.md rename to src/pages/solution/adobe-audience-manager/tabs/index.md index 5d9224e5c2..9f2d0b4be1 100644 --- a/src/pages/documentation/adobe-audience-manager/tabs/index.md +++ b/src/pages/solution/adobe-audience-manager/tabs/index.md @@ -8,7 +8,7 @@ noIndex: true -Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../resources/manage-gradle-dependencies.md) for more information. +Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../../resources/manage-gradle-dependencies.md) for more information. @@ -39,7 +39,7 @@ import com.adobe.marketing.mobile.Audience -1. Add the [Mobile Core](../mobile-core/index.md) and Audience extensions to your project using Cocoapods. +1. Add the [Mobile Core](../../home/base/mobile-core/index.md) and Audience extensions to your project using Cocoapods. 2. Add the following pods in your `Podfile`: ```ruby diff --git a/src/pages/documentation/adobe-campaign-classic/api-reference.md b/src/pages/solution/adobe-campaign-classic/api-reference.md similarity index 96% rename from src/pages/documentation/adobe-campaign-classic/api-reference.md rename to src/pages/solution/adobe-campaign-classic/api-reference.md index 15d7666d08..97912f5938 100644 --- a/src/pages/documentation/adobe-campaign-classic/api-reference.md +++ b/src/pages/solution/adobe-campaign-classic/api-reference.md @@ -42,7 +42,7 @@ iOS -Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../mobile-core/api-reference.md#registerextensions) API instead. +Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../../home/base/mobile-core/api-reference.md#registerextensions) API instead. diff --git a/src/pages/documentation/adobe-campaign-classic/assets/index/configure.png b/src/pages/solution/adobe-campaign-classic/assets/index/configure.png similarity index 100% rename from src/pages/documentation/adobe-campaign-classic/assets/index/configure.png rename to src/pages/solution/adobe-campaign-classic/assets/index/configure.png diff --git a/src/pages/documentation/adobe-campaign-classic/event-reference.md b/src/pages/solution/adobe-campaign-classic/event-reference.md similarity index 100% rename from src/pages/documentation/adobe-campaign-classic/event-reference.md rename to src/pages/solution/adobe-campaign-classic/event-reference.md diff --git a/src/pages/documentation/adobe-campaign-classic/index.md b/src/pages/solution/adobe-campaign-classic/index.md similarity index 98% rename from src/pages/documentation/adobe-campaign-classic/index.md rename to src/pages/solution/adobe-campaign-classic/index.md index 560223d6f2..cfbdff348d 100644 --- a/src/pages/documentation/adobe-campaign-classic/index.md +++ b/src/pages/solution/adobe-campaign-classic/index.md @@ -82,7 +82,7 @@ iOS ## Configuration keys -To update SDK configuration programmatically, use the following information to change your Campaign Classic configuration values. For more information, see the [Configuration API reference](../mobile-core/configuration/api-reference.md). +To update SDK configuration programmatically, use the following information to change your Campaign Classic configuration values. For more information, see the [Configuration API reference](../../home/base/mobile-core/configuration/api-reference.md). | Key | Required | Description | Data Type | | :--- | :--- | :--- | :--- | diff --git a/src/pages/documentation/adobe-campaign-classic/release-notes.md b/src/pages/solution/adobe-campaign-classic/release-notes.md similarity index 100% rename from src/pages/documentation/adobe-campaign-classic/release-notes.md rename to src/pages/solution/adobe-campaign-classic/release-notes.md diff --git a/src/pages/documentation/adobe-campaign-classic/tabs/api-reference.md b/src/pages/solution/adobe-campaign-classic/tabs/api-reference.md similarity index 100% rename from src/pages/documentation/adobe-campaign-classic/tabs/api-reference.md rename to src/pages/solution/adobe-campaign-classic/tabs/api-reference.md diff --git a/src/pages/documentation/adobe-campaign-classic/tabs/index.md b/src/pages/solution/adobe-campaign-classic/tabs/index.md similarity index 94% rename from src/pages/documentation/adobe-campaign-classic/tabs/index.md rename to src/pages/solution/adobe-campaign-classic/tabs/index.md index c1f73ef4e1..717e937b0e 100644 --- a/src/pages/documentation/adobe-campaign-classic/tabs/index.md +++ b/src/pages/solution/adobe-campaign-classic/tabs/index.md @@ -17,13 +17,13 @@ implementation 'com.adobe.marketing.mobile:campaignclassic' -Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../resources/manage-gradle-dependencies.md) for more information. +Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../../resources/manage-gradle-dependencies.md) for more information. -Add the Campaign Classic and [Mobile Core](../mobile-core/index.md) libraries to your project. +Add the Campaign Classic and [Mobile Core](../../home/base/mobile-core/index.md) libraries to your project. You can add the following pods to your `Podfile`: diff --git a/src/pages/documentation/adobe-campaign-standard/api-reference.md b/src/pages/solution/adobe-campaign-standard/api-reference.md similarity index 95% rename from src/pages/documentation/adobe-campaign-standard/api-reference.md rename to src/pages/solution/adobe-campaign-standard/api-reference.md index fe967d8acb..4753660573 100644 --- a/src/pages/documentation/adobe-campaign-standard/api-reference.md +++ b/src/pages/solution/adobe-campaign-standard/api-reference.md @@ -30,7 +30,7 @@ Registers the Campaign Standard extension with the Mobile Core. -Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../mobile-core/api-reference.md#registerextensions) API instead. +Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../../home/base/mobile-core/api-reference.md#registerextensions) API instead. diff --git a/src/pages/documentation/adobe-campaign-standard/assets/index/aep-cocoapods.png b/src/pages/solution/adobe-campaign-standard/assets/index/aep-cocoapods.png similarity index 100% rename from src/pages/documentation/adobe-campaign-standard/assets/index/aep-cocoapods.png rename to src/pages/solution/adobe-campaign-standard/assets/index/aep-cocoapods.png diff --git a/src/pages/documentation/adobe-campaign-standard/assets/index/cocoapods.png b/src/pages/solution/adobe-campaign-standard/assets/index/cocoapods.png similarity index 100% rename from src/pages/documentation/adobe-campaign-standard/assets/index/cocoapods.png rename to src/pages/solution/adobe-campaign-standard/assets/index/cocoapods.png diff --git a/src/pages/documentation/adobe-campaign-standard/assets/index/configure.png b/src/pages/solution/adobe-campaign-standard/assets/index/configure.png similarity index 100% rename from src/pages/documentation/adobe-campaign-standard/assets/index/configure.png rename to src/pages/solution/adobe-campaign-standard/assets/index/configure.png diff --git a/src/pages/documentation/adobe-campaign-standard/assets/push-notifications/android-server-key.png b/src/pages/solution/adobe-campaign-standard/assets/push-notifications/android-server-key.png similarity index 100% rename from src/pages/documentation/adobe-campaign-standard/assets/push-notifications/android-server-key.png rename to src/pages/solution/adobe-campaign-standard/assets/push-notifications/android-server-key.png diff --git a/src/pages/documentation/adobe-campaign-standard/assets/push-notifications/campaign-ios-cert-configured.png b/src/pages/solution/adobe-campaign-standard/assets/push-notifications/campaign-ios-cert-configured.png similarity index 100% rename from src/pages/documentation/adobe-campaign-standard/assets/push-notifications/campaign-ios-cert-configured.png rename to src/pages/solution/adobe-campaign-standard/assets/push-notifications/campaign-ios-cert-configured.png diff --git a/src/pages/documentation/adobe-campaign-standard/assets/push-notifications/charles-demdex-call-ios.png b/src/pages/solution/adobe-campaign-standard/assets/push-notifications/charles-demdex-call-ios.png similarity index 100% rename from src/pages/documentation/adobe-campaign-standard/assets/push-notifications/charles-demdex-call-ios.png rename to src/pages/solution/adobe-campaign-standard/assets/push-notifications/charles-demdex-call-ios.png diff --git a/src/pages/documentation/adobe-campaign-standard/assets/push-notifications/push-identifier.png b/src/pages/solution/adobe-campaign-standard/assets/push-notifications/push-identifier.png similarity index 100% rename from src/pages/documentation/adobe-campaign-standard/assets/push-notifications/push-identifier.png rename to src/pages/solution/adobe-campaign-standard/assets/push-notifications/push-identifier.png diff --git a/src/pages/documentation/adobe-campaign-standard/assets/push-notifications/push-token-to-identity.png b/src/pages/solution/adobe-campaign-standard/assets/push-notifications/push-token-to-identity.png similarity index 100% rename from src/pages/documentation/adobe-campaign-standard/assets/push-notifications/push-token-to-identity.png rename to src/pages/solution/adobe-campaign-standard/assets/push-notifications/push-token-to-identity.png diff --git a/src/pages/documentation/adobe-campaign-standard/assets/push-notifications/push-tracking-click.png b/src/pages/solution/adobe-campaign-standard/assets/push-notifications/push-tracking-click.png similarity index 100% rename from src/pages/documentation/adobe-campaign-standard/assets/push-notifications/push-tracking-click.png rename to src/pages/solution/adobe-campaign-standard/assets/push-notifications/push-tracking-click.png diff --git a/src/pages/documentation/adobe-campaign-standard/assets/push-notifications/push-tracking-impression.png b/src/pages/solution/adobe-campaign-standard/assets/push-notifications/push-tracking-impression.png similarity index 100% rename from src/pages/documentation/adobe-campaign-standard/assets/push-notifications/push-tracking-impression.png rename to src/pages/solution/adobe-campaign-standard/assets/push-notifications/push-tracking-impression.png diff --git a/src/pages/documentation/adobe-campaign-standard/assets/push-notifications/push-tracking-open.png b/src/pages/solution/adobe-campaign-standard/assets/push-notifications/push-tracking-open.png similarity index 100% rename from src/pages/documentation/adobe-campaign-standard/assets/push-notifications/push-tracking-open.png rename to src/pages/solution/adobe-campaign-standard/assets/push-notifications/push-tracking-open.png diff --git a/src/pages/documentation/adobe-campaign-standard/assets/push-notifications/subscriber-list-android.png b/src/pages/solution/adobe-campaign-standard/assets/push-notifications/subscriber-list-android.png similarity index 100% rename from src/pages/documentation/adobe-campaign-standard/assets/push-notifications/subscriber-list-android.png rename to src/pages/solution/adobe-campaign-standard/assets/push-notifications/subscriber-list-android.png diff --git a/src/pages/documentation/adobe-campaign-standard/assets/push-notifications/subscriber-list-ios.png b/src/pages/solution/adobe-campaign-standard/assets/push-notifications/subscriber-list-ios.png similarity index 100% rename from src/pages/documentation/adobe-campaign-standard/assets/push-notifications/subscriber-list-ios.png rename to src/pages/solution/adobe-campaign-standard/assets/push-notifications/subscriber-list-ios.png diff --git a/src/pages/documentation/adobe-campaign-standard/assets/push-notifications/tracking-click.png b/src/pages/solution/adobe-campaign-standard/assets/push-notifications/tracking-click.png similarity index 100% rename from src/pages/documentation/adobe-campaign-standard/assets/push-notifications/tracking-click.png rename to src/pages/solution/adobe-campaign-standard/assets/push-notifications/tracking-click.png diff --git a/src/pages/documentation/adobe-campaign-standard/assets/push-notifications/tracking-impression.png b/src/pages/solution/adobe-campaign-standard/assets/push-notifications/tracking-impression.png similarity index 100% rename from src/pages/documentation/adobe-campaign-standard/assets/push-notifications/tracking-impression.png rename to src/pages/solution/adobe-campaign-standard/assets/push-notifications/tracking-impression.png diff --git a/src/pages/documentation/adobe-campaign-standard/assets/push-notifications/tracking-open.png b/src/pages/solution/adobe-campaign-standard/assets/push-notifications/tracking-open.png similarity index 100% rename from src/pages/documentation/adobe-campaign-standard/assets/push-notifications/tracking-open.png rename to src/pages/solution/adobe-campaign-standard/assets/push-notifications/tracking-open.png diff --git a/src/pages/documentation/adobe-campaign-standard/event-reference.md b/src/pages/solution/adobe-campaign-standard/event-reference.md similarity index 100% rename from src/pages/documentation/adobe-campaign-standard/event-reference.md rename to src/pages/solution/adobe-campaign-standard/event-reference.md diff --git a/src/pages/documentation/adobe-campaign-standard/index.md b/src/pages/solution/adobe-campaign-standard/index.md similarity index 91% rename from src/pages/documentation/adobe-campaign-standard/index.md rename to src/pages/solution/adobe-campaign-standard/index.md index 89d8d6cd83..2023a4ebea 100644 --- a/src/pages/documentation/adobe-campaign-standard/index.md +++ b/src/pages/solution/adobe-campaign-standard/index.md @@ -12,7 +12,7 @@ import Tabs from './tabs/index.md' -**Before** you install or configure the Campaign Standard extension, please read the [getting started guide](../getting-started/create-a-mobile-property.md) and the [configuring a mobile application using Adobe Experience Platform SDKs guide](https://experienceleague.adobe.com/docs/campaign-standard/using/administrating/configuring-channels/configuring-a-mobile-application.html). +**Before** you install or configure the Campaign Standard extension, please read the [getting started guide](../../home/getting-started/create-a-mobile-property.md) and the [configuring a mobile application using Adobe Experience Platform SDKs guide](https://experienceleague.adobe.com/docs/campaign-standard/using/administrating/configuring-channels/configuring-a-mobile-application.html). ## Configure the Campaign Standard extension in the Data Collection UI @@ -62,10 +62,10 @@ Remember the following information when you add the Campaign extension to your a | Extension | Information | | :--- | :--- | -| Campaign Standard | The Campaign Standard extension requires the [Mobile Core](../mobile-core/index.md), [Profile](../profile/index.md), [Lifecycle](../mobile-core/lifecycle/index.md), and [Signal](../mobile-core/signal/index.md) extensions. You should always ensure that you get the latest version of the extensions. | +| Campaign Standard | The Campaign Standard extension requires the [Mobile Core](../../home/base/mobile-core/index.md), [Profile](../profile/index.md), [Lifecycle](../../home/base/mobile-core/lifecycle/index.md), and [Signal](../../home/base/mobile-core/signal/index.md) extensions. You should always ensure that you get the latest version of the extensions. | | Profile | The Profile extension is required for in-app trigger frequencies to work accurately. For more information, see [Profile](../profile/index.md). | -| Signal | The Signal extension is required for all postback rules to work. For more information, see [Signal](../mobile-core/signal/index.md). | -| Lifecycle | The Lifecycle extension is required for a profile to be registered in Campaign. In order to do this, you will need to implement the Lifecycle APIs. For more information, please read either the [Lifecycle API (Android)](../mobile-core/lifecycle/android.md) or the [Lifecycle API (iOS)](../mobile-core/lifecycle/ios.md) documentation. | +| Signal | The Signal extension is required for all postback rules to work. For more information, see [Signal](../../home/base/mobile-core/signal/index.md). | +| Lifecycle | The Lifecycle extension is required for a profile to be registered in Campaign. In order to do this, you will need to implement the Lifecycle APIs. For more information, please read either the [Lifecycle API (Android)](../../home/base/mobile-core/lifecycle/android.md) or the [Lifecycle API (iOS)](../../home/base/mobile-core/lifecycle/ios.md) documentation. | @@ -95,7 +95,7 @@ iOS ### Initialize the SDK and set up tracking -To initialize the SDK and set up tracking, see the [initialize the SDK and set up tracking tutorial](../getting-started/track-events.md). +To initialize the SDK and set up tracking, see the [initialize the SDK and set up tracking tutorial](../../home/getting-started/track-events.md). @@ -109,7 +109,7 @@ iOS ### Set up push messaging -To enable push messaging with Adobe Campaign, call `setPushIdentifer` to send the push identifier that is received from the Apple Push Notification Service (APNS) or Firebase Cloud Messaging Platform (FCM) to the Adobe Identity service. For more information about the `setPushIdentifer` API, see the [setPushIdentifier section of the Adobe Identity API guide](../mobile-core/identity/api-reference.md#setpushidentifier). +To enable push messaging with Adobe Campaign, call `setPushIdentifer` to send the push identifier that is received from the Apple Push Notification Service (APNS) or Firebase Cloud Messaging Platform (FCM) to the Adobe Identity service. For more information about the `setPushIdentifer` API, see the [setPushIdentifier section of the Adobe Identity API guide](../../home/base/mobile-core/identity/api-reference.md#setpushidentifier). For more information about setting up your iOS app to connect to APNS and retrieve a device token that will be used as a push identifier, see the tutorial on [registering your app with APNs](https://developer.apple.com/documentation/usernotifications/registering_your_app_with_apns?language=objc). For more information about setting up your Android app to connect to FCM and retrieve a device registration token that will be used as a push identifier, see the tutorial on [setting up a Firebase Cloud Messaging client app on Android](https://firebase.google.com/docs/cloud-messaging/android/client). @@ -219,7 +219,7 @@ iOS ## Configuration keys -To update SDK configuration programmatically, use the following information to change your Campaign Standard configuration values. For more information, see the [Configuration API reference](../mobile-core/configuration/api-reference.md). +To update SDK configuration programmatically, use the following information to change your Campaign Standard configuration values. For more information, see the [Configuration API reference](../../home/base/mobile-core/configuration/api-reference.md). | Key | Required | Description | Data Type | | :--- | :--- | :--- | :--- | diff --git a/src/pages/documentation/adobe-campaign-standard/push-notifications.md b/src/pages/solution/adobe-campaign-standard/push-notifications.md similarity index 100% rename from src/pages/documentation/adobe-campaign-standard/push-notifications.md rename to src/pages/solution/adobe-campaign-standard/push-notifications.md diff --git a/src/pages/documentation/adobe-campaign-standard/release-notes.md b/src/pages/solution/adobe-campaign-standard/release-notes.md similarity index 100% rename from src/pages/documentation/adobe-campaign-standard/release-notes.md rename to src/pages/solution/adobe-campaign-standard/release-notes.md diff --git a/src/pages/documentation/adobe-campaign-standard/tabs/api-reference.md b/src/pages/solution/adobe-campaign-standard/tabs/api-reference.md similarity index 97% rename from src/pages/documentation/adobe-campaign-standard/tabs/api-reference.md rename to src/pages/solution/adobe-campaign-standard/tabs/api-reference.md index 4e419ae802..55b20a3038 100644 --- a/src/pages/documentation/adobe-campaign-standard/tabs/api-reference.md +++ b/src/pages/solution/adobe-campaign-standard/tabs/api-reference.md @@ -64,7 +64,7 @@ NSString *campaignVersion = [AEPMobileCampaign extensionVersion]; -This API has been deprecated as of version 2.0.0. Please use the [Mobile Core registerExtension API](../../mobile-core/api-reference.md) instead. +This API has been deprecated as of version 2.0.0. Please use the [Mobile Core registerExtension API](../../home/base/mobile-core/api-reference.md) instead. diff --git a/src/pages/documentation/adobe-campaign-standard/tabs/index.md b/src/pages/solution/adobe-campaign-standard/tabs/index.md similarity index 96% rename from src/pages/documentation/adobe-campaign-standard/tabs/index.md rename to src/pages/solution/adobe-campaign-standard/tabs/index.md index 180963cc47..8abb70e8cb 100644 --- a/src/pages/documentation/adobe-campaign-standard/tabs/index.md +++ b/src/pages/solution/adobe-campaign-standard/tabs/index.md @@ -18,11 +18,11 @@ implementation 'com.adobe.marketing.mobile:userprofile' -Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../resources/manage-gradle-dependencies.md) for more information. +Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../../resources/manage-gradle-dependencies.md) for more information. -2. Import the Campaign Standard, [Mobile Core](../mobile-core/index.md), [Profile](../profile/index.md), [Lifecycle](../mobile-core/lifecycle/index.md), and [Signal](../mobile-core/signals/index.md) extensions in your application's main activity. +2. Import the Campaign Standard, [Mobile Core](../../home/base/mobile-core/index.md), [Profile](../../home/base/profile/index.md), [Lifecycle](../../home/base/mobile-core/lifecycle/index.md), and [Signal](../../home/base/mobile-core/signals/index.md) extensions in your application's main activity. ```java import com.adobe.marketing.mobile.Campaign; @@ -35,7 +35,7 @@ import com.adobe.marketing.mobile.UserProfile; -1. Add the Campaign Standard, [Mobile Core](../mobile-core/index.md), and [Profile](../profile/index.md) extensions to your project using Cocoapods. +1. Add the Campaign Standard, [Mobile Core](../../home/base/mobile-core/index.md), and [Profile](../../home/base/profile/index.md) extensions to your project using Cocoapods. ![](../assets/index/aep-cocoapods.png) @@ -115,7 +115,7 @@ class MyApp : Application() { } ``` -For more information about starting Lifecycle, see the [Lifecycle extension in Android guide](../mobile-core/lifecycle/android.md). +For more information about starting Lifecycle, see the [Lifecycle extension in Android guide](../../home/base/mobile-core/lifecycle/android.md). @@ -183,7 +183,7 @@ To set up local notifications in Android, update the AndroidManifest.xml file: ``` -To configure the notification icons that the local notification will use, see the [configuring notification icons section](../mobile-core/api-reference.md#setsmalliconresourceid--setlargeiconresourceid) within the Mobile Core. +To configure the notification icons that the local notification will use, see the [configuring notification icons section](../../home/base/mobile-core/api-reference.md#setsmalliconresourceid--setlargeiconresourceid) within the Mobile Core. diff --git a/src/pages/documentation/adobe-campaign-standard/tabs/push-notifications.md b/src/pages/solution/adobe-campaign-standard/tabs/push-notifications.md similarity index 95% rename from src/pages/documentation/adobe-campaign-standard/tabs/push-notifications.md rename to src/pages/solution/adobe-campaign-standard/tabs/push-notifications.md index d7c9746b26..da39f25c80 100644 --- a/src/pages/documentation/adobe-campaign-standard/tabs/push-notifications.md +++ b/src/pages/solution/adobe-campaign-standard/tabs/push-notifications.md @@ -47,7 +47,7 @@ noIndex: true 2. Generate a push token for the app using FireBase Instance ID class. 3. In the `onComplete` function of `OnCompleteListener`, set the Push identifier by calling the API `MobileCore.setPushIdentifier`. - For more information, see [setPushIdentifier](https://aep-sdks.gitbook.io/docs/using-mobile-extensions/adobe-analytics-mobile-services#set-up-push-messaging). + For more information, see [setPushIdentifier](https://developer.adobe.com/client-sdks/previous-versions/documentation/adobe-analytics-mobile-services/#set-up-push-messaging). #### Verify that the push token has successfully synced with the Experience Cloud ID service @@ -77,7 +77,7 @@ If SDK privacy status is `optedout`, the push identifier will not be set. 2. In `application:didRegisterForRemoteNotificationsWithDeviceToken:`, call `setPushIdentifier` to set the Push identifier. - For more information, see [setPushIdentifier](../mobile-core/api-reference.md#setpushidentifier). + For more information, see [setPushIdentifier](../../home/base/mobile-core/api-reference.md#setpushidentifier). #### Verify that the push token has successfully synced with the Experience Cloud ID service diff --git a/src/pages/documentation/adobe-media-analytics/api-reference.md b/src/pages/solution/adobe-media-analytics/api-reference.md similarity index 99% rename from src/pages/documentation/adobe-media-analytics/api-reference.md rename to src/pages/solution/adobe-media-analytics/api-reference.md index 350f7fe373..0a20499d5b 100644 --- a/src/pages/documentation/adobe-media-analytics/api-reference.md +++ b/src/pages/solution/adobe-media-analytics/api-reference.md @@ -34,7 +34,7 @@ Registers the Media extension with the Mobile Core SDK. -Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../mobile-core/api-reference.md#registerextensions) API instead. +Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../../home/base/mobile-core/api-reference.md#registerextensions) API instead. diff --git a/src/pages/documentation/adobe-media-analytics/assets/index/configuration.png b/src/pages/solution/adobe-media-analytics/assets/index/configuration.png similarity index 100% rename from src/pages/documentation/adobe-media-analytics/assets/index/configuration.png rename to src/pages/solution/adobe-media-analytics/assets/index/configuration.png diff --git a/src/pages/documentation/adobe-media-analytics/index.md b/src/pages/solution/adobe-media-analytics/index.md similarity index 92% rename from src/pages/documentation/adobe-media-analytics/index.md rename to src/pages/solution/adobe-media-analytics/index.md index 5de29badd7..c8e344832e 100644 --- a/src/pages/documentation/adobe-media-analytics/index.md +++ b/src/pages/solution/adobe-media-analytics/index.md @@ -13,7 +13,7 @@ import Tabs from './tabs/index.md' Adobe Streaming Media for Edge Network extension is now available! -Refer to the [Migrating to Media for Edge Network Guide](migration-guide.md) and [Media for Edge Network extension](../media-for-edge-network/index.md) documentation to learn more about implementing Streaming Media using Adobe Experience Edge Network. +Refer to the [Migrating to Media for Edge Network Guide](migration-guide.md) and [Media for Edge Network extension](../../edge/media-for-edge-network/index.md) documentation to learn more about implementing Streaming Media using Adobe Experience Edge Network. @@ -89,7 +89,7 @@ iOS ## Configuration keys -To update your SDK configuration programmatically, use the following information to change your Media configuration values. For more information, see [Configuration API reference](../mobile-core/configuration/api-reference.md). +To update your SDK configuration programmatically, use the following information to change your Media configuration values. For more information, see [Configuration API reference](../../home/base/mobile-core/configuration/api-reference.md). | Key | Required | Description | Data Type | | :--- | :--- | :--- | :--- | diff --git a/src/pages/documentation/adobe-media-analytics/migration-guide.md b/src/pages/solution/adobe-media-analytics/migration-guide.md similarity index 91% rename from src/pages/documentation/adobe-media-analytics/migration-guide.md rename to src/pages/solution/adobe-media-analytics/migration-guide.md index acba8419f7..7b8b967edc 100644 --- a/src/pages/documentation/adobe-media-analytics/migration-guide.md +++ b/src/pages/solution/adobe-media-analytics/migration-guide.md @@ -51,7 +51,7 @@ iOS | AEPIdentity |AEPEdgeIdentity | | AEPMedia | AEPEdgeMedia | -Refer to the guide on how to [configure and setup Media for Edge Network](../media-for-edge-network/index.md) to learn more. +Refer to the guide on how to [configure and setup Media for Edge Network](../../edge/media-for-edge-network/index.md) to learn more. ## Install extensions @@ -95,7 +95,7 @@ iOS Media extension allowed for ad content tracking of `1 second` when setting the `MediaConstants.MediaObjectKey.GRANULAR_AD_TRACKING` key in the media object. -Media for Edge Network extension supports customizable ping intervals. `Ad content` tracking interval can be set in the range `[1-10] seconds`, and `main content` tracking interval can be set in the range `[10-50] seconds`. For more details, refer to the [createTrackerWithConfig API](../media-for-edge-network/api-reference.md/#createtrackerwithconfig). +Media for Edge Network extension supports customizable ping intervals. `Ad content` tracking interval can be set in the range `[1-10] seconds`, and `main content` tracking interval can be set in the range `[10-50] seconds`. For more details, refer to the [createTrackerWithConfig API](../../edge/media-for-edge-network/api-reference.md/#createtrackerwithconfig). @@ -113,4 +113,4 @@ Media for Edge Network extension currently does not support the downloaded conte ## API reference -The Media for Edge Network extension offers APIs that are similar to those provided by the Media Analytics extension. To explore the Media for Edge Network extension APIs and understand their usage, please refer to the [API reference docs](../media-for-edge-network/api-reference.md). +The Media for Edge Network extension offers APIs that are similar to those provided by the Media Analytics extension. To explore the Media for Edge Network extension APIs and understand their usage, please refer to the [API reference docs](../../edge/media-for-edge-network/api-reference.md). diff --git a/src/pages/documentation/adobe-media-analytics/release-notes.md b/src/pages/solution/adobe-media-analytics/release-notes.md similarity index 100% rename from src/pages/documentation/adobe-media-analytics/release-notes.md rename to src/pages/solution/adobe-media-analytics/release-notes.md diff --git a/src/pages/documentation/adobe-media-analytics/tabs/api-reference.md b/src/pages/solution/adobe-media-analytics/tabs/api-reference.md similarity index 100% rename from src/pages/documentation/adobe-media-analytics/tabs/api-reference.md rename to src/pages/solution/adobe-media-analytics/tabs/api-reference.md diff --git a/src/pages/documentation/adobe-media-analytics/tabs/index.md b/src/pages/solution/adobe-media-analytics/tabs/index.md similarity index 98% rename from src/pages/documentation/adobe-media-analytics/tabs/index.md rename to src/pages/solution/adobe-media-analytics/tabs/index.md index 7a05dfc174..017daaf975 100644 --- a/src/pages/documentation/adobe-media-analytics/tabs/index.md +++ b/src/pages/solution/adobe-media-analytics/tabs/index.md @@ -8,7 +8,7 @@ noIndex: true -Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../resources/manage-gradle-dependencies.md) for more information. +Using dynamic dependency versions is **not** recommended for production apps. Please read the [managing Gradle dependencies guide](../../resources/manage-gradle-dependencies.md) for more information. diff --git a/src/pages/documentation/adobe-media-analytics/tabs/migration-guide.md b/src/pages/solution/adobe-media-analytics/tabs/migration-guide.md similarity index 100% rename from src/pages/documentation/adobe-media-analytics/tabs/migration-guide.md rename to src/pages/solution/adobe-media-analytics/tabs/migration-guide.md diff --git a/src/pages/documentation/adobe-target/api-reference.md b/src/pages/solution/adobe-target/api-reference.md similarity index 99% rename from src/pages/documentation/adobe-target/api-reference.md rename to src/pages/solution/adobe-target/api-reference.md index 6ffb0c1443..8185fd2cd9 100644 --- a/src/pages/documentation/adobe-target/api-reference.md +++ b/src/pages/solution/adobe-target/api-reference.md @@ -159,7 +159,7 @@ iOS -Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../mobile-core/api-reference.md#registerextensions) API instead. +Deprecated as of 2.0.0. Please use the [MobileCore.registerExtensions](../../home/base/mobile-core/api-reference.md#registerextensions) API instead. diff --git a/src/pages/documentation/adobe-target/assets/index/configuration.png b/src/pages/solution/adobe-target/assets/index/configuration.png similarity index 100% rename from src/pages/documentation/adobe-target/assets/index/configuration.png rename to src/pages/solution/adobe-target/assets/index/configuration.png diff --git a/src/pages/documentation/adobe-target/event-reference.md b/src/pages/solution/adobe-target/event-reference.md similarity index 100% rename from src/pages/documentation/adobe-target/event-reference.md rename to src/pages/solution/adobe-target/event-reference.md diff --git a/src/pages/documentation/adobe-target/index.md b/src/pages/solution/adobe-target/index.md similarity index 97% rename from src/pages/documentation/adobe-target/index.md rename to src/pages/solution/adobe-target/index.md index 5739594348..d80803da00 100644 --- a/src/pages/documentation/adobe-target/index.md +++ b/src/pages/solution/adobe-target/index.md @@ -147,7 +147,7 @@ The visual preview mode allows you to easily perform end-to-end QA activities by You can also set an application deep link that can be triggered when selections are made in the preview mode by using the [setPreviewRestartDeeplink](./api-reference.md#setpreviewrestartdeeplink) API. -To enter the preview visual mode, use the `collectLaunchInfo` API to enable the mode and select the red floating button that appears on the app screen. For more information, see [collectLaunchInfo](../mobile-core/api-reference.md#collectlaunchinfo). +To enter the preview visual mode, use the `collectLaunchInfo` API to enable the mode and select the red floating button that appears on the app screen. For more information, see [collectLaunchInfo](../../home/base/mobile-core/api-reference.md#collectlaunchinfo). @@ -190,7 +190,7 @@ For A4T data to be sent to Adobe Analytics client-side, make sure Analytics SDK To programmatically update SDK configuration, use the following information to change your Target configuration values: -For more information, see [Programmatic updates to Configuration](../mobile-core/configuration/index.md#programmatic-updates-to-configuration). +For more information, see [Programmatic updates to Configuration](../../home/base/mobile-core/configuration/index.md#programmatic-updates-to-configuration). | Key | Description | Data Type | | :--- | :--- | :--- | @@ -204,4 +204,4 @@ For more information, see [Programmatic updates to Configuration](../mobile-core -Currently, the `target.sessiontimeout` value can only be configured programmatically. For more information, see [updateConfiguration](../mobile-core/configuration/api-reference.md#updateconfiguration). +Currently, the `target.sessiontimeout` value can only be configured programmatically. For more information, see [updateConfiguration](../../home/base/mobile-core/configuration/api-reference.md#updateconfiguration). diff --git a/src/pages/documentation/adobe-target/raw-api-reference.md b/src/pages/solution/adobe-target/raw-api-reference.md similarity index 100% rename from src/pages/documentation/adobe-target/raw-api-reference.md rename to src/pages/solution/adobe-target/raw-api-reference.md diff --git a/src/pages/documentation/adobe-target/release-notes.md b/src/pages/solution/adobe-target/release-notes.md similarity index 100% rename from src/pages/documentation/adobe-target/release-notes.md rename to src/pages/solution/adobe-target/release-notes.md diff --git a/src/pages/documentation/adobe-target/tabs/api-reference.md b/src/pages/solution/adobe-target/tabs/api-reference.md similarity index 98% rename from src/pages/documentation/adobe-target/tabs/api-reference.md rename to src/pages/solution/adobe-target/tabs/api-reference.md index 0df01d0154..4235b5c99f 100644 --- a/src/pages/documentation/adobe-target/tabs/api-reference.md +++ b/src/pages/solution/adobe-target/tabs/api-reference.md @@ -1387,17 +1387,17 @@ Target.setTntId("f741a5d5-09c0-4931-bf53-b9e568c5f782.35_0") -On Android, when the application is launched as a result of a deep link, the Mobile Core's [collectLaunchInfo](../../mobile-core/api-reference.md#collectlaunchinfo) API is internally invoked, and the Target activity and deep link information is extracted from the Intent extras. +On Android, when the application is launched as a result of a deep link, the Mobile Core's [collectLaunchInfo](../../home/base/mobile-core/api-reference.md#collectlaunchinfo) API is internally invoked, and the Target activity and deep link information is extracted from the Intent extras. -The SDK can only collect information from the launching Activity if [`setApplication`](../../mobile-core/api-reference.md#setapplication) API has been called. Setting the Application is only necessary on an Activity that is also an entry point for your application. However, setting the Application on each Activity has no negative impact and ensures that the SDK always has the necessary reference to your Application. We recommend that you call `setApplication` API in each of your Activities. +The SDK can only collect information from the launching Activity if [`setApplication`](../../home/base/mobile-core/api-reference.md#setapplication) API has been called. Setting the Application is only necessary on an Activity that is also an entry point for your application. However, setting the Application on each Activity has no negative impact and ensures that the SDK always has the necessary reference to your Application. We recommend that you call `setApplication` API in each of your Activities. -To enter the visual preview mode, use the Mobile Core's [collectLaunchInfo](../../mobile-core/api-reference.md#collectlaunchinfo) API to enable the mode, and select the red floating button that appears on the app screen. +To enter the visual preview mode, use the Mobile Core's [collectLaunchInfo](../../home/base/mobile-core/api-reference.md#collectlaunchinfo) API to enable the mode, and select the red floating button that appears on the app screen. #### Swift @@ -1762,7 +1762,7 @@ public class TargetParameters: NSObject, Codable { } ``` -Examples for creating instances of TargetParameters can be seen in the [Target overview](../index.md#target-parameters). +Examples for creating instances of TargetParameters can be seen in the [Target overview](./index.md#target-parameters).