Skip to content

Commit

Permalink
Merge pull request #585 from praveek/main
Browse files Browse the repository at this point in the history
Fix BoM instructions
  • Loading branch information
praveek authored Apr 22, 2024
2 parents c1ae1c4 + b595663 commit ffda12e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pages/resources/migration/android/migrate-to-2x.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ dependencies {
//implementation 'com.adobe.marketing.mobile:userprofile:1.+'

// Use Adobe SDK BOM artifact to manage all compatible versions of Adobe Experience Platform Android extensions.
implementation 'com.adobe.marketing.mobile:sdk-bom:2.+'
implementation platform('com.adobe.marketing.mobile:sdk-bom:2.+')
implementation 'com.adobe.marketing.mobile:core'
implementation 'com.adobe.marketing.mobile:identity'
implementation 'com.adobe.marketing.mobile:signal'
Expand Down
4 changes: 2 additions & 2 deletions src/pages/resources/migration/android/migrate-to-3x.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ Using dynamic dependency versions is not recommended for production apps. Refer

```java
dependencies {
// implementation 'com.adobe.marketing.mobile:sdk-bom:2.+'
// implementation platform('com.adobe.marketing.mobile:sdk-bom:2.+')
// implementation 'com.adobe.marketing.mobile:core'
// implementation 'com.adobe.marketing.mobile:identity'
// implementation 'com.adobe.marketing.mobile:signal'
// implementation 'com.adobe.marketing.mobile:lifecycle'
// implementation 'com.adobe.marketing.mobile:userprofile'

// Update Adobe SDK BOM artifact to the latest 3.x.x version.
implementation 'com.adobe.marketing.mobile:sdk-bom:3.+'
implementation platform('com.adobe.marketing.mobile:sdk-bom:3.+')
implementation 'com.adobe.marketing.mobile:core'
implementation 'com.adobe.marketing.mobile:identity'
implementation 'com.adobe.marketing.mobile:signal'
Expand Down

0 comments on commit ffda12e

Please sign in to comment.