2023-01-12 01:04:45 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2023-01-31 15:30:38 +05:30
|
|
|
package="com.example.hpos">
|
2023-01-12 01:04:45 +05:30
|
|
|
|
2023-01-19 18:57:59 +05:30
|
|
|
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
|
|
2023-01-12 01:04:45 +05:30
|
|
|
<application
|
|
|
|
|
android:allowBackup="true"
|
|
|
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
|
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
|
android:supportsRtl="true"
|
2023-01-31 15:30:38 +05:30
|
|
|
android:theme="@style/Theme.HPOS"
|
2023-01-12 01:04:45 +05:30
|
|
|
tools:targetApi="31">
|
2023-01-23 23:02:39 +05:30
|
|
|
|
2023-01-19 18:57:59 +05:30
|
|
|
<service
|
2023-01-31 15:30:38 +05:30
|
|
|
android:name="com.example.hpos.presentation.testRight.UsbService"
|
2023-01-19 18:57:59 +05:30
|
|
|
android:enabled="true"
|
2023-01-23 23:02:39 +05:30
|
|
|
android:exported="false" />
|
2023-01-19 18:57:59 +05:30
|
|
|
|
2023-01-12 01:04:45 +05:30
|
|
|
<activity
|
2023-01-31 15:30:38 +05:30
|
|
|
android:name="com.example.hpos.presentation.SplashActivity"
|
2023-01-23 23:02:39 +05:30
|
|
|
android:exported="true"
|
2023-01-30 13:46:59 +05:30
|
|
|
android:noHistory="true"
|
|
|
|
|
android:theme="@style/AppTheme.NoActionBar">
|
2023-01-12 01:04:45 +05:30
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2023-01-23 23:02:39 +05:30
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2023-01-19 18:57:59 +05:30
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2023-01-23 23:02:39 +05:30
|
|
|
|
2023-01-19 18:57:59 +05:30
|
|
|
<activity
|
2023-01-31 15:30:38 +05:30
|
|
|
android:name="com.example.hpos.presentation.testRight.TestRightActivity"
|
2023-01-24 19:51:58 +05:30
|
|
|
android:exported="false"
|
|
|
|
|
android:windowSoftInputMode="adjustPan">
|
2023-01-30 13:46:59 +05:30
|
|
|
<!-- <intent-filter>-->
|
|
|
|
|
<!-- <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />-->
|
|
|
|
|
<!-- </intent-filter>-->
|
|
|
|
|
|
|
|
|
|
<!-- <meta-data-->
|
|
|
|
|
<!-- android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"-->
|
|
|
|
|
<!-- android:resource="@xml/device_filter" />-->
|
|
|
|
|
</activity>
|
|
|
|
|
<activity
|
2023-01-31 15:30:38 +05:30
|
|
|
android:name="com.example.hpos.presentation.MainActivity"
|
2023-01-30 13:46:59 +05:30
|
|
|
android:exported="true">
|
2023-01-19 18:57:59 +05:30
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
|
2023-01-12 01:04:45 +05:30
|
|
|
</intent-filter>
|
2023-01-19 18:57:59 +05:30
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
|
|
|
|
|
android:resource="@xml/device_filter" />
|
2023-01-23 23:02:39 +05:30
|
|
|
|
|
|
|
|
</activity>
|
2023-01-12 01:04:45 +05:30
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
</manifest>
|