174 lines
6.6 KiB
XML
174 lines
6.6 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<!-- Permissions -->
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
<!-- <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" /> -->
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
|
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
|
|
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
|
|
|
|
|
|
<!-- Camera Feature (optional) -->
|
|
<uses-feature
|
|
android:name="android.hardware.camera"
|
|
android:required="false" />
|
|
|
|
<!-- Bluetooth Feature -->
|
|
<uses-feature
|
|
android:name="android.hardware.bluetooth"
|
|
android:required="true" />
|
|
|
|
<!-- Queries -->
|
|
<queries>
|
|
<intent>
|
|
<action android:name="android.media.action.IMAGE_CAPTURE" />
|
|
</intent>
|
|
<intent>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<data android:scheme="mailto" />
|
|
</intent>
|
|
<!-- For Flutter's text processing -->
|
|
<intent>
|
|
<action android:name="android.intent.action.PROCESS_TEXT" />
|
|
<data android:mimeType="text/plain" />
|
|
</intent>
|
|
</queries>
|
|
|
|
<application
|
|
android:name="${applicationName}"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="Fondex"
|
|
android:requestLegacyExternalStorage="true"
|
|
android:roundIcon="@mipmap/ic_launcher"
|
|
android:usesCleartextTraffic="true">
|
|
|
|
<!-- Main Activity (Kotlin-based) -->
|
|
<activity
|
|
android:name="felix.fondex.uz.MainActivity"
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
|
android:enableOnBackInvokedCallback="true"
|
|
android:exported="true"
|
|
android:hardwareAccelerated="true"
|
|
android:launchMode="singleTop"
|
|
android:theme="@style/LaunchTheme"
|
|
android:windowSoftInputMode="adjustResize">
|
|
|
|
<meta-data
|
|
android:name="io.flutter.embedding.android.NormalTheme"
|
|
android:resource="@style/NormalTheme" />
|
|
|
|
<meta-data
|
|
android:name="io.flutter.embedding.android.SplashScreenDrawable"
|
|
android:resource="@drawable/launch_background" />
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
|
|
<!-- Notification click -->
|
|
<intent-filter>
|
|
<action android:name="FLUTTER_NOTIFICATION_CLICK" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
|
|
<!-- PayPal success redirect -->
|
|
<intent-filter android:label="paypalpay">
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data
|
|
android:host="paypalpay"
|
|
android:scheme="felix.fondex.uz" />
|
|
</intent-filter>
|
|
|
|
<!-- PayPal cancel redirect -->
|
|
<intent-filter android:label="paypalcancel">
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data
|
|
android:host="paypalcancel"
|
|
android:scheme="felix.fondex.uz" />
|
|
|
|
</intent-filter>
|
|
|
|
<!-- Existing Flutter intent filters (KEEP these) -->
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<!-- Firebase Notification Icons -->
|
|
<meta-data
|
|
android:name="com.google.firebase.messaging.default_notification_icon"
|
|
android:resource="@mipmap/ic_launcher" />
|
|
|
|
<meta-data
|
|
android:name="com.google.firebase.messaging.default_notification_channel_id"
|
|
android:value="high_importance_channel" />
|
|
|
|
<!-- Flutter embedding -->
|
|
<meta-data
|
|
android:name="flutterEmbedding"
|
|
android:value="2" />
|
|
|
|
<!-- Google Maps API Key -->
|
|
<meta-data
|
|
android:name="com.google.android.geo.API_KEY"
|
|
android:value="YOUR_API_KEY_HERE" />
|
|
|
|
<!-- ML Kit Barcode -->
|
|
<meta-data
|
|
android:name="com.google.mlkit.vision.DEPENDENCIES"
|
|
android:value="barcode" />
|
|
|
|
<!-- Razorpay -->
|
|
<activity
|
|
android:name="com.razorpay.CheckoutActivity"
|
|
android:exported="false"
|
|
tools:replace="android:exported" />
|
|
|
|
<receiver
|
|
android:name="com.razorpay.RzpTokenReceiver"
|
|
android:exported="false"
|
|
tools:replace="android:exported">
|
|
<intent-filter>
|
|
<action android:name="rzp.device_token.share" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<!-- Local Notifications Service -->
|
|
<service
|
|
android:name="com.dexterous.flutterlocalnotifications.ForegroundService"
|
|
android:exported="false"
|
|
android:stopWithTask="false" />
|
|
|
|
<!-- File Provider -->
|
|
<provider
|
|
android:name="androidx.core.content.FileProvider"
|
|
android:authorities="${applicationId}.provider"
|
|
android:exported="false"
|
|
android:grantUriPermissions="true">
|
|
<meta-data
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/provider_paths" />
|
|
</provider>
|
|
|
|
</application>
|
|
</manifest>
|