Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
timkimadobe committed Dec 22, 2022
1 parent 78a73b8 commit f3a3dfd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
14 changes: 8 additions & 6 deletions code/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,14 @@ dependencies {
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'

implementation project(':edgeconsent')
// implementation "com.adobe.marketing.mobile:core:${rootProject.mavenCoreVersion}"
implementation 'com.github.adobe.aepsdk-core-android:core:dev-v2.0.0-SNAPSHOT'
implementation('com.adobe.marketing.mobile:edge:1+'){
exclude group: 'com.adobe.marketing.mobile', module: 'core'
}
implementation ('com.github.adobe:aepsdk-assurance-android:v2.0.0-alpha.1') {
// TODO: Update the value of mavenCoreVersion in gradle.properties to 2.0.0 when Core 2.0 is published to Maven
implementation "com.adobe.marketing.mobile:core:${rootProject.mavenCoreVersion}"
// implementation('com.adobe.marketing.mobile:edge:1+'){
// exclude group: 'com.adobe.marketing.mobile', module: 'core'
// }
// TODO: Update with the actual Edge 2.0 dependency when it is available
implementation fileTree(dir: 'libs', include: ['edge-release-2.0.0.aar'])
implementation ('com.adobe.marketing.mobile:assurance:2.0.0-SNAPSHOT') {
transitive = false
}
}
Binary file added code/app/libs/edge-release-2.0.0.aar
Binary file not shown.
6 changes: 2 additions & 4 deletions code/edgeconsent/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -221,10 +221,8 @@ configurations.all {
}

dependencies {
// TODO: Uncomment next line when Core 2.0 is published to Maven; remove snapshot dependency
// implementation "com.adobe.marketing.mobile:core:${rootProject.mavenCoreVersion}"
// Maven snapshot
implementation 'com.adobe.marketing.mobile:core:2.0.0-SNAPSHOT'
// TODO: Update the value of mavenCoreVersion in gradle.properties to 2.0.0 when Core 2.0 is published to Maven
implementation "com.adobe.marketing.mobile:core:${rootProject.mavenCoreVersion}"
implementation 'androidx.annotation:annotation:1.5.0'

testImplementation "androidx.test.ext:junit:${rootProject.ext.junitVersion}"
Expand Down
2 changes: 1 addition & 1 deletion code/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ mavenRepoDescription=Adobe Experience Platform Edge Consent Collection extension
mavenUploadDryRunFlag=false

# production versions for production build
mavenCoreVersion=2.0.0
mavenCoreVersion=2.0.0-SNAPSHOT

0 comments on commit f3a3dfd

Please sign in to comment.