<manifest xmlns:android="http://schemas.android.com/apk/res/android">
  <application>
    <!-- Google Pay мета-данные -->
    <meta-data
        android:name="com.google.android.gms.wallet.api.enabled"
        android:value="true" />
    
    <!-- CloudPayments PaymentActivity -->
    <activity
        android:name="ru.cloudpayments.sdk.ui.PaymentActivity"
        android:theme="@style/cpsdk_AcquiringTheme"
        android:windowSoftInputMode="adjustResize"
        android:launchMode="singleInstance"
        android:exported="true">

        <intent-filter android:label="Run CP SDK">
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />
            <data android:scheme="cloudpayments"
                android:host="sdk.cp.ru" />
        </intent-filter>

    </activity>
  </application>
</manifest>
