<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.gettipsi.stripe">

  <application>
    <activity
      android:name=".OpenBrowserActivity"
      android:exported="false"
      android:launchMode="singleTask"
      android:theme="@android:style/Theme.Translucent.NoTitleBar" />
    <activity
      android:exported="true"
      android:launchMode="singleTask"
      android:name=".RedirectUriReceiver"
      android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen">
      <intent-filter>
        <action android:name="android.intent.action.VIEW" />
        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />

        <data android:scheme="${tipsiStripeRedirectScheme}" />
      </intent-filter>
    </activity>
  </application>
</manifest>
