Files
hpos/app/src/main/AndroidManifest.xml

178 lines
7.9 KiB
XML
Raw Normal View History

<?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">
<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" />
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
<uses-permission
android:name="android.permission.BATTERY_STATS"
tools:ignore="ProtectedPermissions" />
<uses-feature android:name="android.hardware.camera" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<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
<application
2023-06-28 12:41:18 +05:30
android:name="com.example.hpostesting.HPOSTestingApplication"
2024-02-27 16:49:25 +05:30
android:largeHeap="true"
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"
android:label="@string/app_name"
2023-01-31 16:56:38 +05:30
android:roundIcon="@mipmap/hpos_icon_round"
android:supportsRtl="true"
2023-06-28 12:41:18 +05:30
android:theme="@style/Theme.HPOSTesting"
tools:targetApi="31">
<activity
android:name="com.example.hpostesting.presentation.deviceinfo.DeviceActivity"
android:exported="false" />
<activity
android:name="com.example.hpostesting.presentation.hemocube.DigitalCardActivity"
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"
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"
android:exported="false"
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"
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"
android:theme="@style/Theme.HPOS.NoActionBar"/>
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"
2023-07-27 16:44:12 +05:30
android:parentActivityName="com.example.hpostesting.presentation.MainActivity"
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" />
<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" />
<activity
2023-06-28 12:41:18 +05:30
android:name="com.example.hpostesting.presentation.dashboard.DashboardActivity"
android:exported="false"
android:label="@string/title_activity_dashboard"
android:theme="@style/Theme.HPOS.NoActionBar"
android:screenOrientation="portrait"
tools:ignore="AppLinkUrlError,MissingClass">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="content" />
<data android:scheme="file" />
<data android:mimeType="application/vnd.android.package-archive" />
</intent-filter>
</activity>
<service
2023-06-28 12:41:18 +05:30
android:name="com.example.hpostesting.presentation.testRight.UsbService"
android:enabled="true"
android:exported="false" />
<activity
2023-06-28 12:41:18 +05:30
android:name="com.example.hpostesting.presentation.SplashActivity"
android:exported="true"
android:noHistory="true"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity
2023-06-28 12:41:18 +05:30
android:name="com.example.hpostesting.presentation.testRight.TestRightActivity"
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-07-19 18:18:39 +05:30
android:theme="@style/Theme.HPOS.NoActionBar"
android:windowSoftInputMode="adjustPan">
<!-- <intent-filter> -->
<!-- <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" /> -->
<!-- </intent-filter> -->
2023-01-31 17:41:29 +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" -->
<activity
2023-06-28 12:41:18 +05:30
android:name="com.example.hpostesting.presentation.MainActivity"
android:exported="true"
2023-06-28 12:41:18 +05:30
android:theme="@style/AppTheme.NoActionBar">
<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
android:name="com.journeyapps.barcodescanner.CaptureActivity"
android:screenOrientation="portrait"
android:stateNotNeeded="true"
tools:replace="android:screenOrientation" />
2024-02-27 13:59:30 +05:30
<!-- ${applicationId}-->
<provider
android:name="androidx.core.content.FileProvider"
2024-02-10 10:46:54 +05:30
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
</application>
</manifest>