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"
|
2023-06-28 12:41:18 +05:30
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
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-05-19 13:08:02 +05:30
|
|
|
<uses-feature android:name="android.hardware.camera" />
|
|
|
|
|
|
2023-06-03 19:10:48 +05:30
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
2023-05-30 08:48:59 +05:30
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
2023-05-26 01:22:38 +05:30
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2023-07-19 17:27:57 +05:30
|
|
|
<uses-feature android:name="android.hardware.usb.host" />
|
|
|
|
|
<uses-permission android:name="android.permission.USB_PERMISSION" />
|
2023-07-19 18:18:39 +05:30
|
|
|
|
2023-07-19 17:27:57 +05:30
|
|
|
<uses-feature android:name="android.hardware.usb.host" />
|
2023-07-19 18:18:39 +05:30
|
|
|
|
2023-07-19 17:27:57 +05:30
|
|
|
<uses-permission android:name="android.permission.USB_PERMISSION" />
|
2023-05-26 01:22:38 +05:30
|
|
|
|
2023-01-12 01:04:45 +05:30
|
|
|
<application
|
2023-06-28 12:41:18 +05:30
|
|
|
android:name="com.example.hpostesting.HPOSTestingApplication"
|
2023-01-12 01:04:45 +05:30
|
|
|
android:allowBackup="true"
|
|
|
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
|
|
|
android:fullBackupContent="@xml/backup_rules"
|
2023-01-31 16:56:38 +05:30
|
|
|
android:icon="@mipmap/hpos_icon"
|
2023-01-12 01:04:45 +05:30
|
|
|
android:label="@string/app_name"
|
2023-01-31 16:56:38 +05:30
|
|
|
android:roundIcon="@mipmap/hpos_icon_round"
|
2023-01-12 01:04:45 +05:30
|
|
|
android:supportsRtl="true"
|
2023-06-28 12:41:18 +05:30
|
|
|
android:theme="@style/Theme.HPOSTesting"
|
2023-01-12 01:04:45 +05:30
|
|
|
tools:targetApi="31">
|
2023-07-19 18:18:39 +05:30
|
|
|
<activity
|
|
|
|
|
android:name="com.example.hpostesting.presentation.hemocube.HemocubeActivity"
|
2023-07-20 16:08:59 +05:30
|
|
|
android:exported="false"
|
|
|
|
|
android:noHistory="true"
|
|
|
|
|
android:theme="@style/Theme.HPOS.NoActionBar" />
|
2023-06-03 19:10:48 +05:30
|
|
|
<activity
|
2023-06-28 12:41:18 +05:30
|
|
|
android:name="com.example.hpostesting.presentation.KitScanActivity"
|
|
|
|
|
android:exported="false"
|
2023-07-19 18:18:39 +05:30
|
|
|
android:noHistory="true"
|
|
|
|
|
android:theme="@style/Theme.HPOS.NoActionBar" />
|
2023-05-30 08:48:59 +05:30
|
|
|
<activity
|
2023-06-28 12:41:18 +05:30
|
|
|
android:name="com.example.hpostesting.presentation.dashboard.DashboardActivity"
|
2023-05-30 08:48:59 +05:30
|
|
|
android:exported="false"
|
|
|
|
|
android:label="@string/title_activity_dashboard"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/Theme.HPOS.NoActionBar" />
|
2023-01-23 23:02:39 +05:30
|
|
|
|
2023-01-19 18:57:59 +05:30
|
|
|
<service
|
2023-06-28 12:41:18 +05:30
|
|
|
android:name="com.example.hpostesting.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-06-28 12:41:18 +05:30
|
|
|
android:name="com.example.hpostesting.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-05-30 08:48:59 +05:30
|
|
|
|
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>
|
|
|
|
|
<activity
|
2023-06-28 12:41:18 +05:30
|
|
|
android:name="com.example.hpostesting.presentation.testRight.TestRightActivity"
|
2023-01-24 19:51:58 +05:30
|
|
|
android:exported="false"
|
2023-07-19 18:18:39 +05:30
|
|
|
android:noHistory="true"
|
2023-06-28 12:41:18 +05:30
|
|
|
android:parentActivityName="com.example.hpostesting.presentation.MainActivity"
|
2023-06-03 19:10:48 +05:30
|
|
|
android:screenOrientation="portrait"
|
2023-07-19 18:18:39 +05:30
|
|
|
android:theme="@style/Theme.HPOS.NoActionBar"
|
|
|
|
|
android:windowSoftInputMode="adjustPan">
|
2023-01-30 13:46:59 +05:30
|
|
|
|
2023-05-30 08:48:59 +05:30
|
|
|
<!-- <intent-filter> -->
|
|
|
|
|
<!-- <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" /> -->
|
|
|
|
|
<!-- </intent-filter> -->
|
2023-01-31 17:41:29 +05:30
|
|
|
|
2023-05-30 08:48:59 +05:30
|
|
|
|
|
|
|
|
<!-- <meta-data -->
|
|
|
|
|
<!-- android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" -->
|
|
|
|
|
<!-- android:resource="@xml/device_filter" /> -->
|
|
|
|
|
</activity> <!-- android:theme="@style/Theme.HPOS.ActionBar" -->
|
2023-01-30 13:46:59 +05:30
|
|
|
<activity
|
2023-06-28 12:41:18 +05:30
|
|
|
android:name="com.example.hpostesting.presentation.MainActivity"
|
2023-06-03 19:10:48 +05:30
|
|
|
android:exported="true"
|
2023-06-28 12:41:18 +05:30
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/AppTheme.NoActionBar">
|
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-05-30 08:48:59 +05:30
|
|
|
<activity
|
|
|
|
|
android:name="com.journeyapps.barcodescanner.CaptureActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
2023-06-03 19:10:48 +05:30
|
|
|
android:stateNotNeeded="true"
|
|
|
|
|
tools:replace="android:screenOrientation" />
|
2023-01-12 01:04:45 +05:30
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
</manifest>
|