diff --git a/docs/PayPalNativePayments/README.md b/docs/PayPalNativePayments/README.md index 714373282..cc0100ee3 100644 --- a/docs/PayPalNativePayments/README.md +++ b/docs/PayPalNativePayments/README.md @@ -21,7 +21,7 @@ The order created on your server will be used to authorize or capture funds. For ### 1. Add the PayPal Native Payments module to your app -In your `build.gradle` file, add the following dependency: +In your app's `build.gradle` file, add the following dependency: ```groovy dependencies { @@ -29,6 +29,22 @@ dependencies { } ``` +Also, add the following to your project's top-level `build.gradle` file: + +```groovy +allprojects { + repositories { + maven { + url "https://cardinalcommerceprod.jfrog.io/artifactory/android" + credentials { + username "paypal_sgerritz" + password "AKCp8jQ8tAahqpT5JjZ4FRP2mW7GMoFZ674kGqHmupTesKeAY2G8NcmPKLuTxTGkKjDLRzDUQ" + } + } + } +} +``` + ### 2. Sample App Preparation In order to integrate PayPal native payments, you will need: