2020-09-28 04:25:58 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
package="com.ShanMukhaInnovations.ArrestTB">
|
|
|
|
|
|
2020-10-08 02:20:14 -07:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
|
2020-09-28 04:25:58 -07:00
|
|
|
<application
|
|
|
|
|
android:allowBackup="true"
|
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
|
android:label="@string/app_name"
|
2020-10-18 00:03:10 -07:00
|
|
|
|
|
|
|
|
android:requestLegacyExternalStorage="true"
|
2020-09-28 04:25:58 -07:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
|
android:supportsRtl="true"
|
|
|
|
|
android:theme="@style/AppTheme">
|
2020-10-18 00:03:10 -07:00
|
|
|
<provider
|
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
|
android:authorities="${applicationId}.fileprovider"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
|
android:resource="@xml/file_path" />
|
|
|
|
|
</provider>
|
2020-10-08 02:20:14 -07:00
|
|
|
<activity android:name=".Report">
|
2020-09-28 04:25:58 -07:00
|
|
|
|
2020-10-18 00:03:10 -07:00
|
|
|
|
2020-09-28 04:25:58 -07:00
|
|
|
</activity>
|
2020-10-08 02:20:14 -07:00
|
|
|
<activity android:name=".AddImage"></activity>
|
|
|
|
|
<activity android:name=".Camera_Guide"></activity>
|
|
|
|
|
<activity android:name=".About" />
|
|
|
|
|
<activity android:name=".Test_details" />
|
|
|
|
|
<activity android:name=".splash_screen">
|
2020-09-28 04:25:58 -07:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
2020-10-08 02:20:14 -07:00
|
|
|
|
2020-10-18 00:03:10 -07:00
|
|
|
|
|
|
|
|
|
2020-10-08 02:20:14 -07:00
|
|
|
</activity>
|
|
|
|
|
<activity android:name=".Patient_detail" >
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</activity>
|
|
|
|
|
<activity android:name=".home" />
|
|
|
|
|
<activity android:name=".Navigation_Top" />
|
|
|
|
|
<activity android:name=".Login_Screen">
|
|
|
|
|
|
2020-09-28 04:25:58 -07:00
|
|
|
</activity>
|
2020-10-08 02:20:14 -07:00
|
|
|
<activity
|
|
|
|
|
android:name="com.theartofdev.edmodo.cropper.CropImageActivity"
|
|
|
|
|
android:theme="@style/Base.Theme.AppCompat" />
|
2020-09-28 04:25:58 -07:00
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
</manifest>
|