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
|
|
|
|
2024-06-05 16:22:12 +05:30
|
|
|
<uses-permission
|
|
|
|
|
android:name="android.permission.AUTHENTICATE_ACCOUNTS"
|
|
|
|
|
android:maxSdkVersion="22" />
|
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" />
|
2024-01-02 17:09:22 +05:30
|
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
2023-11-22 16:31:46 +05:30
|
|
|
<uses-permission
|
|
|
|
|
android:name="android.permission.BATTERY_STATS"
|
2023-11-16 12:19:29 +05:30
|
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
|
|
|
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-09-25 18:04:52 +05:30
|
|
|
|
2023-07-19 17:27:57 +05:30
|
|
|
<uses-feature android:name="android.hardware.usb.host" />
|
2023-09-25 18:04:52 +05:30
|
|
|
|
2023-07-19 17:27:57 +05:30
|
|
|
<uses-permission android:name="android.permission.USB_PERMISSION" />
|
2023-09-25 18:04:52 +05:30
|
|
|
|
2024-10-08 16:44:43 +05:30
|
|
|
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
|
|
|
|
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCOUNT_MANAGER"
|
|
|
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
|
|
|
|
|
|
|
|
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"
|
2024-03-22 15:47:47 +05:30
|
|
|
android:largeHeap="true"
|
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">
|
2024-07-08 14:29:10 +05:30
|
|
|
<activity
|
2025-01-17 17:27:50 +05:30
|
|
|
android:name="com.example.hpostesting.presentation.main_base.UpdateValuesActivity"
|
2024-07-08 14:29:10 +05:30
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait"/>
|
|
|
|
|
|
2024-06-05 16:22:12 +05:30
|
|
|
<service
|
|
|
|
|
android:name="com.example.hpostesting.util.MyAuthenticatorService"
|
|
|
|
|
android:exported="true"
|
|
|
|
|
android:permission="android.permission.BIND_AUTOFILL_SERVICE">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.accounts.AccountAuthenticator" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.accounts.AccountAuthenticator"
|
|
|
|
|
android:resource="@xml/authenticator" />
|
|
|
|
|
</service>
|
2024-07-08 14:29:10 +05:30
|
|
|
|
2024-06-05 16:22:12 +05:30
|
|
|
<activity
|
2025-01-17 17:27:50 +05:30
|
|
|
android:name="com.example.hpostesting.presentation.main_base.ui.PasswordResetActivity"
|
2024-07-08 14:29:10 +05:30
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2024-03-22 15:47:47 +05:30
|
|
|
<activity
|
|
|
|
|
android:name="com.example.hpostesting.presentation.usb_teminal.UsbTerminalActivity"
|
2024-07-08 14:29:10 +05:30
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2024-01-05 14:40:48 +05:30
|
|
|
<activity
|
|
|
|
|
android:name="com.example.hpostesting.presentation.deviceinfo.DeviceActivity"
|
2024-07-08 14:29:10 +05:30
|
|
|
android:exported="false"
|
|
|
|
|
android:theme="@style/Theme.HPOS.NoActionBar" />
|
2023-11-22 16:31:46 +05:30
|
|
|
<activity
|
2025-01-17 17:27:50 +05:30
|
|
|
android:name="com.example.hpostesting.presentation.trueheme_test.DigitalCardActivity"
|
2023-11-22 16:31:46 +05:30
|
|
|
android:exported="false" />
|
2023-09-25 18:04:52 +05:30
|
|
|
<activity
|
|
|
|
|
android:name="com.example.hpostesting.presentation.diagnostics.DiagnosticsActivity"
|
2024-01-04 01:11:30 +05:30
|
|
|
android:exported="false"
|
2024-01-05 14:40:48 +05:30
|
|
|
android:theme="@style/Theme.HPOS.NoActionBar" />
|
2024-09-11 17:11:53 +05:30
|
|
|
<activity
|
|
|
|
|
android:name="com.example.hpostesting.presentation.hb_test.HBTestActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:theme="@style/Theme.HPOS.NoActionBar" />
|
2024-01-04 01:11:30 +05:30
|
|
|
<activity
|
|
|
|
|
android:name="com.example.hpostesting.presentation.autodac.AutoDacActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:theme="@style/Theme.HPOS.NoActionBar" />
|
2024-02-13 14:30:21 +05:30
|
|
|
<activity
|
|
|
|
|
android:name="com.example.hpostesting.presentation.jig.JigActivity"
|
2024-10-08 16:44:43 +05:30
|
|
|
android:exported="true"
|
2024-02-13 14:30:21 +05:30
|
|
|
android:theme="@style/Theme.HPOS.NoActionBar" />
|
2024-01-11 16:03:36 +05:30
|
|
|
<activity
|
|
|
|
|
android:name="com.example.hpostesting.presentation.deviceprovision.DeviceProvisionActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:theme="@style/Theme.HPOS.NoActionBar" />
|
2024-01-04 12:01:59 +05:30
|
|
|
<activity
|
|
|
|
|
android:name="com.example.hpostesting.presentation.calibration.CalibrationActivity"
|
|
|
|
|
android:exported="false"
|
2024-03-22 15:47:47 +05:30
|
|
|
android:theme="@style/Theme.HPOS.NoActionBar" />
|
2024-01-06 16:44:32 +05:30
|
|
|
<activity
|
|
|
|
|
android:name="com.example.hpostesting.presentation.assurance.AssuranceControlsActivity"
|
|
|
|
|
android:exported="false"
|
2024-03-11 16:24:05 +05:30
|
|
|
android:screenOrientation="portrait"
|
2024-03-22 15:47:47 +05:30
|
|
|
android:theme="@style/Theme.HPOS.NoActionBar" />
|
2023-07-19 18:18:39 +05:30
|
|
|
<activity
|
2025-01-17 17:27:50 +05:30
|
|
|
android:name="com.example.hpostesting.presentation.trueheme_test.TrueHemeTestActivity"
|
2023-07-20 16:08:59 +05:30
|
|
|
android:exported="false"
|
|
|
|
|
android:noHistory="true"
|
2023-07-27 16:44:12 +05:30
|
|
|
android:parentActivityName="com.example.hpostesting.presentation.MainActivity"
|
2024-03-22 15:47:47 +05:30
|
|
|
android:screenOrientation="portrait"
|
2023-07-27 16:44:12 +05:30
|
|
|
android:theme="@style/Theme.HPOS.NoActionBar"
|
|
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2024-02-02 13:16:26 +05:30
|
|
|
<activity
|
|
|
|
|
android:name="com.example.hpostesting.presentation.trueheme.TrueHemeActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:noHistory="true"
|
|
|
|
|
android:parentActivityName="com.example.hpostesting.presentation.MainActivity"
|
|
|
|
|
android:theme="@style/Theme.HPOS.NoActionBar"
|
|
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2023-09-22 11:40:17 +05:30
|
|
|
<activity
|
|
|
|
|
android:name="com.example.hpostesting.presentation.buffercheck.HemocubeBufferCheckActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:noHistory="true"
|
|
|
|
|
android:parentActivityName="com.example.hpostesting.presentation.MainActivity"
|
|
|
|
|
android:theme="@style/Theme.HPOS.NoActionBar"
|
|
|
|
|
android:windowSoftInputMode="adjustPan" />
|
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
|
2025-01-17 17:27:50 +05:30
|
|
|
android:name="com.example.hpostesting.presentation.main_base.DashboardActivity"
|
2024-10-08 16:44:43 +05:30
|
|
|
android:exported="true"
|
2023-05-30 08:48:59 +05:30
|
|
|
android:label="@string/title_activity_dashboard"
|
2024-02-08 15:30:51 +05:30
|
|
|
android:screenOrientation="portrait"
|
2024-03-22 15:47:47 +05:30
|
|
|
android:theme="@style/Theme.HPOS.NoActionBar"
|
2024-01-02 17:09:22 +05:30
|
|
|
tools:ignore="AppLinkUrlError,MissingClass">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2024-03-22 15:47:47 +05:30
|
|
|
|
2024-01-02 17:09:22 +05:30
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2024-03-22 15:47:47 +05:30
|
|
|
|
2024-01-02 17:09:22 +05:30
|
|
|
<data android:scheme="content" />
|
|
|
|
|
<data android:scheme="file" />
|
|
|
|
|
<data android:mimeType="application/vnd.android.package-archive" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2023-01-19 18:57:59 +05:30
|
|
|
<service
|
2024-03-12 13:53:22 +05:30
|
|
|
android:name="com.example.hpostesting.util.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">
|
2024-06-05 16:22:12 +05:30
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2024-07-08 14:29:10 +05:30
|
|
|
|
2024-06-05 16:22:12 +05:30
|
|
|
<category android:name="android.intent.category.HOME" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2024-07-08 14:29:10 +05:30
|
|
|
<category android:name="android.intent.category.MONKEY" />
|
2024-06-05 16:22:12 +05:30
|
|
|
<category android:name="android.intent.category.LAUNCHER_APP" />
|
|
|
|
|
</intent-filter>
|
2023-01-12 01:04:45 +05:30
|
|
|
<intent-filter>
|
2024-03-22 15:47:47 +05:30
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
|
|
<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"
|
2024-10-08 16:44:43 +05:30
|
|
|
android:exported="true"
|
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-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"
|
2024-03-11 16:24:05 +05:30
|
|
|
android:screenOrientation="portrait"
|
2023-06-28 12:41:18 +05:30
|
|
|
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"
|
2024-03-22 15:47:47 +05:30
|
|
|
tools:replace="android:screenOrientation" /> <!-- ${applicationId} -->
|
2024-01-02 17:09:22 +05:30
|
|
|
<provider
|
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
2024-02-10 10:46:54 +05:30
|
|
|
android:authorities="${applicationId}.fileprovider"
|
2024-01-02 17:09:22 +05:30
|
|
|
android:exported="false"
|
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
|
android:resource="@xml/file_paths" />
|
|
|
|
|
</provider>
|
2023-01-12 01:04:45 +05:30
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
</manifest>
|