Initial commit

This commit is contained in:
developerraman
2020-09-28 04:25:58 -07:00
parent ce2aeab290
commit d936217939
50 changed files with 2182 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ShanMukhaInnovations.ArrestTB">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".Navigation_Top"></activity>
<activity android:name=".Patient_Details">
</activity>
<activity android:name=".Login_Screen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".MainActivity" />
</application>
</manifest>