We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5cea391 + 0ce963a commit 8229fe8Copy full SHA for 8229fe8
src/main/AndroidManifest.xml
@@ -4,5 +4,16 @@
4
<uses-permission android:name="android.permission.INTERNET" />
5
6
<application android:allowBackup="true" android:label="@string/app_name">
7
+ <activity android:name="com.braintreepayments.api.BraintreeBrowserSwitchActivity"
8
+ android:launchMode="singleTask"
9
+ android:theme="@android:style/Theme.Translucent.NoTitleBar">
10
+ <intent-filter>
11
+ <action android:name="android.intent.action.VIEW" />
12
+ <category android:name="android.intent.category.DEFAULT" />
13
+ <category android:name="android.intent.category.BROWSABLE" />
14
+ <data android:scheme="${applicationId}.braintree" />
15
+ </intent-filter>
16
+ </activity>
17
</application>
18
</manifest>
19
+
0 commit comments