You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+26
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,8 @@ dependencies {
33
33
34
34
#### PayPal / Venmo / 3D Secure
35
35
36
+
##### With Drop-In
37
+
36
38
In order for this plugin to support PayPal, Venmo or 3D Secure payments, you must allow for the
37
39
browser switch by adding an intent filter to your `AndroidManifest.xml` (inside the `<application>` body):
38
40
@@ -53,6 +55,30 @@ browser switch by adding an intent filter to your `AndroidManifest.xml` (inside
53
55
**Important:** Your app's URL scheme must begin with your app's package ID and end with `.braintree`. For example, if the Package ID is `com.your-company.your-app`, then your URL scheme should be `com.your-company.your-app.braintree`. `${applicationId}` is automatically applied with your app's package when using Gradle.
54
56
**Note:** The scheme you define must use all lowercase letters. If your package contains underscores, the underscores should be removed when specifying the scheme in your Android Manifest.
55
57
58
+
##### Without Drop-In
59
+
60
+
If you want to use PayPal without Drop-In, you need to declare another intent filter to your `AndroidManifest.xml` (inside the `<application>` body):
Please note that intent filter scheme is different from drop-in's one.
78
+
79
+
**Important:** Your app's URL scheme must begin with your app's package ID and end with `.return.from.braintree`. For example, if the Package ID is `com.your-company.your-app`, then your URL scheme should be `com.your-company.your-app.return.from.braintree`. `${applicationId}` is automatically applied with your app's package when using Gradle.
80
+
**Note:** The scheme you define must use all lowercase letters. If your package contains underscores, the underscores should be removed when specifying the scheme in your Android Manifest.
81
+
56
82
#### Google Pay
57
83
58
84
Add the wallet enabled meta-data tag to your `AndroidManifest.xml` (inside the `<application>` body):
0 commit comments