├── .idea ├── .name ├── vcs.xml ├── runConfigurations.xml ├── gradle.xml ├── misc.xml └── codeStyles │ └── Project.xml ├── app ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── drawable │ │ │ │ ├── betn.png │ │ │ │ ├── fill.png │ │ │ │ ├── home.png │ │ │ │ ├── login.png │ │ │ │ ├── nextp.png │ │ │ │ ├── redqr.png │ │ │ │ ├── greenqr.png │ │ │ │ ├── loading.png │ │ │ │ ├── loginbg.png │ │ │ │ ├── qr_icon.png │ │ │ │ ├── redrisk.png │ │ │ │ ├── signup.png │ │ │ │ ├── submit.png │ │ │ │ ├── donut_icon.png │ │ │ │ ├── greenrisk.png │ │ │ │ ├── loginback.png │ │ │ │ ├── mainmenu.png │ │ │ │ ├── signinbtn.png │ │ │ │ ├── typeform.png │ │ │ │ ├── typeform1.png │ │ │ │ ├── yellowqr.png │ │ │ │ ├── yellowrisk.png │ │ │ │ ├── account_circ.png │ │ │ │ ├── eaarthvector.png │ │ │ │ ├── hospital_icon.png │ │ │ │ ├── location_icon.png │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── values │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── preloaded_fonts.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── styles.xml │ │ │ │ └── font_certs.xml │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── font │ │ │ │ ├── roboto.xml │ │ │ │ └── roboto_mono.xml │ │ │ ├── layout │ │ │ │ ├── activity_maps.xml │ │ │ │ ├── activity_risk.xml │ │ │ │ ├── activity_loadactivity.xml │ │ │ │ ├── activity_qractivity.xml │ │ │ │ ├── nav_header.xml │ │ │ │ ├── activity_betn.xml │ │ │ │ ├── activity_typeform1.xml │ │ │ │ ├── activity_typeform.xml │ │ │ │ ├── activity_login.xml │ │ │ │ ├── activity_home.xml │ │ │ │ ├── activity_main.xml │ │ │ │ └── activity_mainmenu.xml │ │ │ ├── drawable-v24 │ │ │ │ ├── back.xml │ │ │ │ └── ic_launcher_foreground.xml │ │ │ └── menu │ │ │ │ └── drawe_menu.xml │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ │ └── com │ │ │ │ └── sud │ │ │ │ └── e_healthify │ │ │ │ ├── FormActivity.java │ │ │ │ ├── loadactivity.java │ │ │ │ ├── betn.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── home.java │ │ │ │ ├── mainmenu.java │ │ │ │ ├── qractivity.java │ │ │ │ ├── LoginActivity.java │ │ │ │ ├── risk.java │ │ │ │ ├── typeform1.java │ │ │ │ ├── MapsActivity.java │ │ │ │ └── typeform.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── sud │ │ │ └── e_healthify │ │ │ └── ExampleUnitTest.java │ ├── release │ │ └── res │ │ │ └── values │ │ │ └── google_maps_api.xml │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── sud │ │ │ └── e_healthify │ │ │ └── ExampleInstrumentedTest.java │ └── debug │ │ └── res │ │ └── values │ │ └── google_maps_api.xml ├── proguard-rules.pro ├── google-services.json └── build.gradle ├── settings.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore ├── gradle.properties ├── gradlew.bat ├── README.md ├── gradlew └── Probability Prediction └── ANN-Prob-Predictor.ipynb /.idea/.name: -------------------------------------------------------------------------------- 1 | e-Healthify -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name='e-Healthify' 2 | include ':app' 3 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/betn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/betn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/fill.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/home.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/login.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/nextp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/nextp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/redqr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/redqr.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/res/drawable/greenqr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/greenqr.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/loading.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/loginbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/loginbg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/qr_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/qr_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/redrisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/redrisk.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/signup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/signup.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/submit.png -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/donut_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/donut_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/greenrisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/greenrisk.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/loginback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/loginback.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/mainmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/mainmenu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/signinbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/signinbtn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/typeform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/typeform.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/typeform1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/typeform1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/yellowqr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/yellowqr.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/yellowrisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/yellowrisk.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/account_circ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/account_circ.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/eaarthvector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/eaarthvector.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/hospital_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/hospital_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/location_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/drawable/location_icon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/e-Healthify/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #6200EE 4 | #3700B3 5 | #03DAC5 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/preloaded_fonts.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | @font/roboto 5 | @font/roboto_mono 6 | 7 | 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Apr 03 15:14:56 IST 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip 7 | -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/font/roboto.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 8dp 6 | 176dp 7 | 16dp 8 | -------------------------------------------------------------------------------- /app/src/main/res/font/roboto_mono.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/java/com/sud/e_healthify/FormActivity.java: -------------------------------------------------------------------------------- 1 | package com.sud.e_healthify; 2 | 3 | import androidx.appcompat.app.AppCompatActivity; 4 | import android.os.Bundle; 5 | 6 | public class FormActivity extends AppCompatActivity { 7 | 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | setContentView(R.layout.activity_loadactivity); 12 | 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_maps.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/test/java/com/sud/e_healthify/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.sud.e_healthify; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/back.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /app/src/main/res/menu/drawe_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 12 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | BreakTheChain! 3 | navbar 4 | Open navigation drawer 5 | Close navigation drawer 6 | Android Studio 7 | android.studio@android.com 8 | Navigation header 9 | Settings 10 | 11 | 12 | Home Second 13 | Map 14 | 15 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 15 | 16 |