diff --git a/BraintreeApi/build.gradle b/BraintreeApi/build.gradle index ad89dc7aab..a25a09bad8 100644 --- a/BraintreeApi/build.gradle +++ b/BraintreeApi/build.gradle @@ -29,7 +29,7 @@ dependencies { compile 'com.google.android.gms:play-services-wallet:[8.4.0,9.0.0)' compile 'com.android.support:support-annotations:[23.0.0,24.0.0)' - compile project(':BraintreeDataCollector') + compile 'com.braintreepayments.api:data-collector:2.1.2' compile files('libs/' + paypalVersion) lintChecks project(path: ":Lint", configuration: "lintChecks") diff --git a/CHANGELOG.md b/CHANGELOG.md index 6831d5029e..66d04996bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Braintree Android SDK Release Notes +## 2.1.2 + +* Update Google Play Services Wallet to 8.4.0 +* Use `ENVIRONMENT_TEST` for Android Pay requests in sandbox +* Add `AndroidPay#isReadyToPay` method + ## 2.1.1 * Demo app upgrades diff --git a/Drop-In/build.gradle b/Drop-In/build.gradle index b52c6ddadf..8bf9506b41 100644 --- a/Drop-In/build.gradle +++ b/Drop-In/build.gradle @@ -20,7 +20,7 @@ android { dependencies { compile 'com.braintreepayments:card-form:2.1.1' - compile project(':BraintreeApi') + compile 'com.braintreepayments.api:braintree:2.1.2' compile 'com.google.android.gms:play-services-wallet:[8.4.0,9.0.0)' androidTestCompile project(':TestUtils') diff --git a/build.gradle b/build.gradle index 8c0a56ca2e..9a3b924cef 100644 --- a/build.gradle +++ b/build.gradle @@ -90,7 +90,7 @@ allprojects { buildToolsVersion = '23.0.2' minSdkVersion = 15 targetSdkVersion = 23 - versionCode = 37 - versionName = '2.1.1-SNAPSHOT' + versionCode = 38 + versionName = '2.1.2' } }