30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
|
|
<?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">
|
||
|
|
<activity android:name="shanmukha.in.sickle_cell.SplashScreen" android:screenOrientation="portrait"><intent-filter>
|
||
|
|
<action android:name="android.intent.action.MAIN" />
|
||
|
|
|
||
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
||
|
|
</intent-filter>
|
||
|
|
</activity>
|
||
|
|
<activity android:name="shanmukha.in.sickle_cell.Serial_Com" android:screenOrientation="portrait"> <intent-filter>
|
||
|
|
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
|
||
|
|
</intent-filter></activity>
|
||
|
|
|
||
|
|
<service
|
||
|
|
android:name="shanmukha.in.sickle_cell.UsbService"
|
||
|
|
android:enabled="true">
|
||
|
|
</service>
|
||
|
|
</application>
|
||
|
|
|
||
|
|
</manifest>
|