diff --git a/.circleci/config.yml b/.circleci/config.yml index 6c71bdd5..ad3cbc41 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -48,9 +48,9 @@ jobs: name: Build command: make ci-build - - run: - name: Build App - command: make ci-build-app + # - run: + # name: Build App + # command: make ci-build-app - run: name: UnitTests diff --git a/code/app/build.gradle b/code/app/build.gradle index 6bfbb5c2..037c4d34 100644 --- a/code/app/build.gradle +++ b/code/app/build.gradle @@ -70,7 +70,12 @@ dependencies { transitive = false } - implementation fileTree(dir: 'libs', include: ['edge-release-2.0.0.aar', 'edgeconsent-release-2.0.0.aar']) + implementation ('com.adobe.marketing.mobile:edge:2.0.0-SNAPSHOT') { + transitive = false + } + implementation ('com.adobe.marketing.mobile:edgeconsent:2.0.0-SNAPSHOT') { + transitive = false + } implementation ('com.adobe.marketing.mobile:assurance:2.0.0-SNAPSHOT') { transitive = false } diff --git a/code/app/libs/edge-release-2.0.0.aar b/code/app/libs/edge-release-2.0.0.aar deleted file mode 100644 index 53d50d1d..00000000 Binary files a/code/app/libs/edge-release-2.0.0.aar and /dev/null differ diff --git a/code/app/libs/edgeconsent-release-2.0.0.aar b/code/app/libs/edgeconsent-release-2.0.0.aar deleted file mode 100644 index cf92d935..00000000 Binary files a/code/app/libs/edgeconsent-release-2.0.0.aar and /dev/null differ