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

    <uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />

    <application>
        <activity
            android:name=".trans.impl.QueueWebVIewActivity"
            android:configChanges="orientation|screenSize"
            android:exported="true"
            android:label="@string/title_activity_queue_web_view"
            android:theme="@style/AppTheme.Transparent"
            android:windowSoftInputMode="stateHidden|adjustPan" />
        <activity
            android:name=".TransActivity"
            android:configChanges="orientation|screenSize"
            android:exported="false"
            android:theme="@style/AppTheme.Transparent"
            android:windowSoftInputMode="stateHidden|adjustPan">
            <intent-filter>
                <action android:name="android.intent.action.third" />
            </intent-filter>
        </activity>
        <activity
            android:name=".ThirdActivity"
            android:configChanges="orientation|screenSize"
            android:exported="true"
            android:theme="@style/AppTheme.Transparent">
            <intent-filter>

                <!-- uri: "newland://acquire/transaction" -->
                <data
                    android:host="acquire"
                    android:path="/transaction"
                    android:scheme="shukria" />

                <action android:name="android.intent.action.SHUKRIA.PAYMENT.URI" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.SHUKRIA.PAYMENT" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name=".bluetooth.BluetoothActivity"
            android:launchMode="singleInstance"
            android:theme="@style/AppTheme.Launch" />
        <activity
            android:name=".native_usb.UsbActivity"
            android:launchMode="singleInstance"
            android:theme="@style/AppTheme.Launch" />

        <service
            android:name=".PaymentService"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.SHUKRIA.PAYMENT.SERVICE" />
            </intent-filter>
        </service>
    </application>

</manifest>