2022-01-21 20:55:06 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
package="shanmukha.in.sickle_cell">
|
|
|
|
|
|
|
|
|
|
<uses-feature android:name="android.hardware.usb.host" />
|
|
|
|
|
|
|
|
|
|
<application
|
|
|
|
|
android:allowBackup="true"
|
|
|
|
|
android:icon="@drawable/shanmukha_logo_small"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:roundIcon="@drawable/shanmukha_logo_small"
|
|
|
|
|
android:supportsRtl="true"
|
|
|
|
|
android:theme="@style/AppTheme">
|
2022-01-28 00:23:13 +05:30
|
|
|
<activity android:name="shanmukha.in.sickle_cell.UI.SplashScreen" android:screenOrientation="portrait"><intent-filter>
|
2022-01-21 20:55:06 +05:30
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
2022-01-28 00:23:13 +05:30
|
|
|
</activity>
|
|
|
|
|
<activity android:name="shanmukha.in.sickle_cell.UI.SerialData" android:screenOrientation="portrait"> <intent-filter>
|
2022-01-21 20:55:06 +05:30
|
|
|
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
|
|
|
|
|
</intent-filter></activity>
|
|
|
|
|
|
|
|
|
|
<service
|
2022-01-28 00:23:13 +05:30
|
|
|
android:name="shanmukha.in.sickle_cell.Service.UsbService"
|
2022-01-21 20:55:06 +05:30
|
|
|
android:enabled="true">
|
|
|
|
|
</service>
|
|
|
|
|
</application>
|
|
|
|
|
|
2022-01-28 00:23:13 +05:30
|
|
|
</manifest>
|