├── Medicare_app ├── app │ ├── .gitignore │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── drawable │ │ │ │ │ ├── eye_care.jpg │ │ │ │ │ ├── heart_care.jpg │ │ │ │ │ ├── blood_service.gif │ │ │ │ │ ├── donate_blood.png │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── drawable-nodpi │ │ │ │ │ ├── app_logo.jpg │ │ │ │ │ ├── eye_gif_1.gif │ │ │ │ │ ├── medidtaion.gif │ │ │ │ │ ├── sand_timer.gif │ │ │ │ │ ├── soul_care.png │ │ │ │ │ ├── blood_donation.gif │ │ │ │ │ ├── doctors_image.jpg │ │ │ │ │ ├── eye_care_icon_1.png │ │ │ │ │ ├── fill_form_512.png │ │ │ │ │ ├── hear_excercise.gif │ │ │ │ │ ├── heart_care_icon.png │ │ │ │ │ ├── heart_care_tips.gif │ │ │ │ │ ├── reduce_stress.gif │ │ │ │ │ ├── eye_yoga_shifting.gif │ │ │ │ │ ├── book_aapointment_gif.gif │ │ │ │ │ ├── heart_excercise_image.jpg │ │ │ │ │ └── image_processing20200317_9232_147l0fa.gif │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ ├── xml │ │ │ │ │ ├── backup_rules.xml │ │ │ │ │ └── data_extraction_rules.xml │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ ├── layout │ │ │ │ │ ├── activity_splash_screen.xml │ │ │ │ │ ├── activity_heart_care_excercise.xml │ │ │ │ │ ├── activity_doctor_consulation.xml │ │ │ │ │ ├── activity_blood_service.xml │ │ │ │ │ ├── activity_heart_care_service.xml │ │ │ │ │ ├── activity_eye_care_service.xml │ │ │ │ │ ├── activity_soul_care.xml │ │ │ │ │ ├── activity_eye_care_excercise.xml │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ └── activity_home_page.xml │ │ │ │ └── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── learnathon1 │ │ │ │ │ ├── Heart_care_excercise.java │ │ │ │ │ ├── splash_screen.java │ │ │ │ │ ├── Eye_care_excercise.java │ │ │ │ │ ├── Blood_service.java │ │ │ │ │ ├── Soul_care.java │ │ │ │ │ ├── doctor_consulation.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── Heart_care_Service.java │ │ │ │ │ ├── Eye_care_service.java │ │ │ │ │ └── Home_page.java │ │ │ └── AndroidManifest.xml │ │ ├── test │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── learnathon1 │ │ │ │ └── ExampleUnitTest.java │ │ └── androidTest │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── learnathon1 │ │ │ └── ExampleInstrumentedTest.java │ ├── proguard-rules.pro │ └── build.gradle ├── .idea │ ├── .gitignore │ ├── compiler.xml │ ├── gradle.xml │ └── misc.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore ├── build.gradle ├── settings.gradle ├── gradle.properties ├── gradlew.bat └── gradlew ├── hospital website ├── image │ ├── blog-1.jpg │ ├── blog-2.jpg │ ├── blog-3.jpg │ ├── doc-1.jpg │ ├── doc-2.jpg │ ├── doc-3.jpg │ ├── doc-4.jpg │ ├── doc-5.jpg │ ├── doc-6.jpg │ ├── pic-1.png │ ├── pic-2.png │ └── pic-3.png ├── js │ └── script.js ├── eye.html ├── blood.html ├── heart.html ├── dental.html ├── nutritionist.html ├── soul.html ├── css │ └── style.css └── index.html └── README.md /Medicare_app/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Medicare_app/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /hospital website/image/blog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/blog-1.jpg -------------------------------------------------------------------------------- /hospital website/image/blog-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/blog-2.jpg -------------------------------------------------------------------------------- /hospital website/image/blog-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/blog-3.jpg -------------------------------------------------------------------------------- /hospital website/image/doc-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/doc-1.jpg -------------------------------------------------------------------------------- /hospital website/image/doc-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/doc-2.jpg -------------------------------------------------------------------------------- /hospital website/image/doc-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/doc-3.jpg -------------------------------------------------------------------------------- /hospital website/image/doc-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/doc-4.jpg -------------------------------------------------------------------------------- /hospital website/image/doc-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/doc-5.jpg -------------------------------------------------------------------------------- /hospital website/image/doc-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/doc-6.jpg -------------------------------------------------------------------------------- /hospital website/image/pic-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/pic-1.png -------------------------------------------------------------------------------- /hospital website/image/pic-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/pic-2.png -------------------------------------------------------------------------------- /hospital website/image/pic-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/pic-3.png -------------------------------------------------------------------------------- /Medicare_app/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable/eye_care.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable/eye_care.jpg -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable/heart_care.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable/heart_care.jpg -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable/blood_service.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable/blood_service.gif -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable/donate_blood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable/donate_blood.png -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable-nodpi/app_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/app_logo.jpg -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable-nodpi/eye_gif_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/eye_gif_1.gif -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable-nodpi/medidtaion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/medidtaion.gif -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable-nodpi/sand_timer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/sand_timer.gif -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable-nodpi/soul_care.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/soul_care.png -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable-nodpi/blood_donation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/blood_donation.gif -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable-nodpi/doctors_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/doctors_image.jpg -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable-nodpi/eye_care_icon_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/eye_care_icon_1.png -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable-nodpi/fill_form_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/fill_form_512.png -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable-nodpi/hear_excercise.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/hear_excercise.gif -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable-nodpi/heart_care_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/heart_care_icon.png -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable-nodpi/heart_care_tips.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/heart_care_tips.gif -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable-nodpi/reduce_stress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/reduce_stress.gif -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable-nodpi/eye_yoga_shifting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/eye_yoga_shifting.gif -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable-nodpi/book_aapointment_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/book_aapointment_gif.gif -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable-nodpi/heart_excercise_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/heart_excercise_image.jpg -------------------------------------------------------------------------------- /Medicare_app/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable-nodpi/image_processing20200317_9232_147l0fa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/image_processing20200317_9232_147l0fa.gif -------------------------------------------------------------------------------- /Medicare_app/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Jul 20 16:19:39 IST 2022 2 | distributionBase=GRADLE_USER_HOME 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip 4 | distributionPath=wrapper/dists 5 | zipStorePath=wrapper/dists 6 | zipStoreBase=GRADLE_USER_HOME 7 | -------------------------------------------------------------------------------- /Medicare_app/.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 | local.properties 16 | -------------------------------------------------------------------------------- /Medicare_app/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | plugins { 3 | id 'com.android.application' version '7.2.1' apply false 4 | id 'com.android.library' version '7.2.1' apply false 5 | } 6 | 7 | task clean(type: Delete) { 8 | delete rootProject.buildDir 9 | } -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /hospital website/js/script.js: -------------------------------------------------------------------------------- 1 | let menu = document.querySelector('#menu-btn'); 2 | let navbar = document.querySelector('.navbar'); 3 | 4 | menu.onclick = () =>{ 5 | menu.classList.toggle('fa-times'); 6 | navbar.classList.toggle('active'); 7 | } 8 | 9 | window.onscroll = () =>{ 10 | menu.classList.remove('fa-times'); 11 | navbar.classList.remove('active'); 12 | } -------------------------------------------------------------------------------- /Medicare_app/settings.gradle: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | gradlePluginPortal() 4 | google() 5 | mavenCentral() 6 | } 7 | } 8 | dependencyResolutionManagement { 9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 10 | repositories { 11 | google() 12 | mavenCentral() 13 | } 14 | } 15 | rootProject.name = "Learnathon1" 16 | include ':app' 17 | -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFBB86FC 4 | #FF6200EE 5 | #FF3700B3 6 | #FF03DAC5 7 | #FF018786 8 | #FF000000 9 | #FFFFFFFF 10 | -------------------------------------------------------------------------------- /Medicare_app/app/src/test/java/com/example/learnathon1/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.example.learnathon1; 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 | } -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 13 | -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 12 | 13 | 19 | -------------------------------------------------------------------------------- /Medicare_app/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 18 | 19 | -------------------------------------------------------------------------------- /Medicare_app/app/src/main/java/com/example/learnathon1/Heart_care_excercise.java: -------------------------------------------------------------------------------- 1 | package com.example.learnathon1; 2 | 3 | import androidx.appcompat.app.AppCompatActivity; 4 | 5 | import android.content.Intent; 6 | import android.net.Uri; 7 | import android.os.Bundle; 8 | import android.view.View; 9 | 10 | public class Heart_care_excercise extends AppCompatActivity { 11 | 12 | @Override 13 | protected void onCreate(Bundle savedInstanceState) { 14 | super.onCreate(savedInstanceState); 15 | setContentView(R.layout.activity_heart_care_excercise); 16 | } 17 | 18 | public void Heart_excercise(View view) { 19 | 20 | Intent browserIntent =new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.youtube.com/watch?v=gNUq_rCtbxQ")); 21 | startActivity(browserIntent); 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /Medicare_app/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 𝙼𝚎𝚍𝚒𝚌𝚊𝚛𝚎 3 | We work towards your betterment and well being. 4 | Entrust us with your will and we will provide you 5 | the best. 6 | 𝙷𝚎𝚊𝚛𝚝 𝙲𝚊𝚛𝚎 𝙴𝚡𝚌𝚎𝚛𝚌𝚒𝚜𝚎𝚜 7 | 𝐃𝐨𝐜𝐭𝐨𝐫 𝐂𝐨𝐧𝐬𝐮𝐥𝐚𝐭𝐢𝐨𝐧 8 | 9 | 𝟏. 𝐈𝐦𝐩𝐫𝐨𝐯𝐞𝐬 𝐕𝐢𝐬𝐢𝐨𝐧. 10 | 𝟐. 𝐏𝐫𝐞𝐯𝐞𝐧𝐭𝐬 𝐄𝐲𝐞 𝐃𝐫𝐲𝐧𝐞𝐬𝐬. 11 | 𝟑. 𝐑𝐞𝐝𝐮𝐜𝐞𝐬 𝐒𝐭𝐫𝐚𝐢𝐧 𝐨𝐧 𝐭𝐡𝐞 𝐄𝐲𝐞𝐬. 12 | 𝟒. 𝐈𝐦𝐩𝐫𝐨𝐯𝐞𝐬 𝐏𝐞𝐫𝐢𝐩𝐡𝐞𝐫𝐚𝐥 𝐕𝐢𝐬𝐢𝐨𝐧. 13 | 𝟓. 𝐄𝐧𝐡𝐚𝐧𝐜𝐞𝐬 𝐂𝐨𝐧𝐜𝐞𝐧𝐭𝐫𝐚𝐭𝐢𝐨𝐧. 14 | 15 | -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16 | -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16 | -------------------------------------------------------------------------------- /Medicare_app/app/src/androidTest/java/com/example/learnathon1/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package com.example.learnathon1; 2 | 3 | import android.content.Context; 4 | 5 | import androidx.test.platform.app.InstrumentationRegistry; 6 | import androidx.test.ext.junit.runners.AndroidJUnit4; 7 | 8 | import org.junit.Test; 9 | import org.junit.runner.RunWith; 10 | 11 | import static org.junit.Assert.*; 12 | 13 | /** 14 | * Instrumented test, which will execute on an Android device. 15 | * 16 | * @see Testing documentation 17 | */ 18 | @RunWith(AndroidJUnit4.class) 19 | public class ExampleInstrumentedTest { 20 | @Test 21 | public void useAppContext() { 22 | // Context of the app under test. 23 | Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); 24 | assertEquals("com.example.learnathon1", appContext.getPackageName()); 25 | } 26 | } -------------------------------------------------------------------------------- /Medicare_app/app/src/main/java/com/example/learnathon1/splash_screen.java: -------------------------------------------------------------------------------- 1 | package com.example.learnathon1; 2 | 3 | import androidx.appcompat.app.AppCompatActivity; 4 | 5 | import android.content.Intent; 6 | import android.os.Bundle; 7 | import android.os.Handler; 8 | import android.view.WindowManager; 9 | 10 | public class splash_screen extends AppCompatActivity { 11 | Handler handler; 12 | @Override 13 | protected void onCreate(Bundle savedInstanceState) { 14 | super.onCreate(savedInstanceState); 15 | 16 | setContentView(R.layout.activity_splash_screen); 17 | 18 | 19 | handler=new Handler(); 20 | handler.postDelayed(new Runnable() { 21 | @Override 22 | public void run() { 23 | Intent intent=new Intent(splash_screen.this,MainActivity.class); 24 | startActivity(intent); 25 | finish(); 26 | } 27 | },2000); 28 | 29 | } 30 | } -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/layout/activity_splash_screen.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 23 | -------------------------------------------------------------------------------- /Medicare_app/app/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'com.android.application' 3 | } 4 | 5 | android { 6 | compileSdk 32 7 | 8 | defaultConfig { 9 | applicationId "com.example.learnathon1" 10 | minSdk 21 11 | targetSdk 32 12 | versionCode 1 13 | versionName "1.0" 14 | 15 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 16 | } 17 | 18 | buildTypes { 19 | release { 20 | minifyEnabled false 21 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 22 | } 23 | } 24 | compileOptions { 25 | sourceCompatibility JavaVersion.VERSION_1_8 26 | targetCompatibility JavaVersion.VERSION_1_8 27 | } 28 | } 29 | 30 | dependencies { 31 | 32 | 33 | // for Gif 34 | implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.17' 35 | 36 | implementation 'androidx.appcompat:appcompat:1.4.2' 37 | implementation 'com.google.android.material:material:1.6.1' 38 | implementation 'androidx.constraintlayout:constraintlayout:2.1.4' 39 | testImplementation 'junit:junit:4.13.2' 40 | androidTestImplementation 'androidx.test.ext:junit:1.1.3' 41 | androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' 42 | } -------------------------------------------------------------------------------- /Medicare_app/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | # IDE (e.g. Android Studio) users: 3 | # Gradle settings configured through the IDE *will override* 4 | # any settings specified in this file. 5 | # For more details on how to configure your build environment visit 6 | # http://www.gradle.org/docs/current/userguide/build_environment.html 7 | # Specifies the JVM arguments used for the daemon process. 8 | # The setting is particularly useful for tweaking memory settings. 9 | org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 10 | # When configured, Gradle will run in incubating parallel mode. 11 | # This option should only be used with decoupled projects. More details, visit 12 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 13 | # org.gradle.parallel=true 14 | # AndroidX package structure to make it clearer which packages are bundled with the 15 | # Android operating system, and which are packaged with your app"s APK 16 | # https://developer.android.com/topic/libraries/support-library/androidx-rn 17 | android.useAndroidX=true 18 | # Enables namespacing of each library's R class so that its R class includes only the 19 | # resources declared in the library itself and none from the library's dependencies, 20 | # thereby reducing the size of the R class for that library 21 | android.nonTransitiveRClass=true -------------------------------------------------------------------------------- /Medicare_app/app/src/main/java/com/example/learnathon1/Eye_care_excercise.java: -------------------------------------------------------------------------------- 1 | package com.example.learnathon1; 2 | 3 | import androidx.appcompat.app.AppCompatActivity; 4 | import androidx.core.app.NotificationCompat; 5 | import androidx.core.app.NotificationManagerCompat; 6 | 7 | import android.app.NotificationChannel; 8 | import android.app.NotificationManager; 9 | import android.os.Build; 10 | import android.os.Bundle; 11 | 12 | public class Eye_care_excercise extends AppCompatActivity { 13 | 14 | @Override 15 | protected void onCreate(Bundle savedInstanceState) { 16 | super.onCreate(savedInstanceState); 17 | setContentView(R.layout.activity_eye_care_excercise); 18 | //For Notification 19 | if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){ 20 | NotificationChannel Home_page_channel=new NotificationChannel("HomePage_notification", "HomePage_notification", NotificationManager.IMPORTANCE_DEFAULT); 21 | NotificationManager Home_page_manager =getSystemService(NotificationManager.class); 22 | Home_page_manager.createNotificationChannel(Home_page_channel); 23 | } 24 | NotificationCompat.Builder builder=new NotificationCompat.Builder(this,"HomePage_notification") 25 | .setContentTitle("Eye Care Excercise") 26 | .setSmallIcon(R.drawable.app_logo) 27 | .setAutoCancel(true) 28 | .setContentText("Try our Eye Care Excercise for Free.\n "); 29 | 30 | NotificationManagerCompat Home_page_manager = NotificationManagerCompat.from(this); 31 | Home_page_manager.notify(111,builder.build()); 32 | 33 | 34 | } 35 | } -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/layout/activity_heart_care_excercise.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 22 | 23 | 35 | 36 | -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 15 | 18 | 21 | 22 | 23 | 24 | 30 | -------------------------------------------------------------------------------- /Medicare_app/app/src/main/java/com/example/learnathon1/Blood_service.java: -------------------------------------------------------------------------------- 1 | package com.example.learnathon1; 2 | 3 | import androidx.appcompat.app.AppCompatActivity; 4 | import androidx.core.app.NotificationCompat; 5 | import androidx.core.app.NotificationManagerCompat; 6 | 7 | import android.app.NotificationChannel; 8 | import android.app.NotificationManager; 9 | import android.content.Intent; 10 | import android.net.Uri; 11 | import android.os.Build; 12 | import android.os.Bundle; 13 | import android.view.View; 14 | 15 | public class Blood_service extends AppCompatActivity { 16 | 17 | @Override 18 | protected void onCreate(Bundle savedInstanceState) { 19 | super.onCreate(savedInstanceState); 20 | setContentView(R.layout.activity_blood_service); 21 | //For Notification 22 | if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){ 23 | NotificationChannel Home_page_channel=new NotificationChannel("HomePage_notification", "HomePage_notification", NotificationManager.IMPORTANCE_DEFAULT); 24 | NotificationManager Home_page_manager =getSystemService(NotificationManager.class); 25 | Home_page_manager.createNotificationChannel(Home_page_channel); 26 | } 27 | NotificationCompat.Builder builder=new NotificationCompat.Builder(this,"HomePage_notification") 28 | .setContentTitle("Blood Donation Service") 29 | .setSmallIcon(R.drawable.app_logo) 30 | .setAutoCancel(true) 31 | .setContentText("Be the reason for someone's heartbeat..\n "); 32 | 33 | NotificationManagerCompat Home_page_manager = NotificationManagerCompat.from(this); 34 | Home_page_manager.notify(11111119,builder.build()); 35 | 36 | } 37 | 38 | public void Red_cross(View view) { 39 | Intent browserIntent =new Intent(Intent.ACTION_VIEW, Uri.parse("https://indianredcross.org/ircs/donatenow")); 40 | startActivity(browserIntent); 41 | } 42 | } -------------------------------------------------------------------------------- /Medicare_app/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | 20 | 21 | 22 | 23 | 25 | -------------------------------------------------------------------------------- /Medicare_app/app/src/main/java/com/example/learnathon1/Soul_care.java: -------------------------------------------------------------------------------- 1 | package com.example.learnathon1; 2 | 3 | import androidx.appcompat.app.AppCompatActivity; 4 | import androidx.core.app.NotificationCompat; 5 | import androidx.core.app.NotificationManagerCompat; 6 | 7 | import android.app.NotificationChannel; 8 | import android.app.NotificationManager; 9 | import android.content.Intent; 10 | import android.net.Uri; 11 | import android.os.Build; 12 | import android.os.Bundle; 13 | import android.view.View; 14 | import android.widget.Button; 15 | 16 | public class Soul_care extends AppCompatActivity { 17 | Button doctors; 18 | @Override 19 | protected void onCreate(Bundle savedInstanceState) { 20 | super.onCreate(savedInstanceState); 21 | setContentView(R.layout.activity_soul_care); 22 | 23 | //For Notification 24 | if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){ 25 | NotificationChannel Home_page_channel=new NotificationChannel("HomePage_notification", "HomePage_notification", NotificationManager.IMPORTANCE_DEFAULT); 26 | NotificationManager Home_page_manager =getSystemService(NotificationManager.class); 27 | Home_page_manager.createNotificationChannel(Home_page_channel); 28 | } 29 | NotificationCompat.Builder builder=new NotificationCompat.Builder(this,"HomePage_notification") 30 | .setContentTitle("Soul Care Service") 31 | .setSmallIcon(R.drawable.app_logo) 32 | .setAutoCancel(true) 33 | .setContentText("We believe in the purposeful care of one’s mind.\n "); 34 | 35 | NotificationManagerCompat Home_page_manager = NotificationManagerCompat.from(this); 36 | Home_page_manager.notify(1111111111,builder.build()); 37 | 38 | 39 | 40 | doctors=findViewById(R.id.Doctors); 41 | doctors.setOnClickListener(new View.OnClickListener() { 42 | @Override 43 | public void onClick(View view) { 44 | Intent intent=new Intent(Soul_care.this,doctor_consulation.class); 45 | startActivity(intent); 46 | } 47 | }); 48 | } 49 | 50 | 51 | } -------------------------------------------------------------------------------- /Medicare_app/app/src/main/java/com/example/learnathon1/doctor_consulation.java: -------------------------------------------------------------------------------- 1 | package com.example.learnathon1; 2 | 3 | import androidx.appcompat.app.AppCompatActivity; 4 | import androidx.core.app.NotificationCompat; 5 | import androidx.core.app.NotificationManagerCompat; 6 | 7 | import android.app.NotificationChannel; 8 | import android.app.NotificationManager; 9 | import android.content.Intent; 10 | import android.net.Uri; 11 | import android.os.Build; 12 | import android.os.Bundle; 13 | import android.view.View; 14 | 15 | public class doctor_consulation extends AppCompatActivity { 16 | 17 | @Override 18 | protected void onCreate(Bundle savedInstanceState) { 19 | super.onCreate(savedInstanceState); 20 | setContentView(R.layout.activity_doctor_consulation); 21 | //For Notification 22 | if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){ 23 | NotificationChannel Home_page_channel=new NotificationChannel("HomePage_notification", "HomePage_notification", NotificationManager.IMPORTANCE_DEFAULT); 24 | NotificationManager Home_page_manager =getSystemService(NotificationManager.class); 25 | Home_page_manager.createNotificationChannel(Home_page_channel); 26 | } 27 | NotificationCompat.Builder builder=new NotificationCompat.Builder(this,"HomePage_notification") 28 | .setContentTitle("Doctors Consulation") 29 | .setSmallIcon(R.drawable.app_logo) 30 | .setAutoCancel(true) 31 | .setContentText("Get an expert Medical Opinion.\n "); 32 | 33 | NotificationManagerCompat Home_page_manager = NotificationManagerCompat.from(this); 34 | Home_page_manager.notify(111111,builder.build()); 35 | 36 | 37 | } 38 | 39 | public void Google_form(View view) { 40 | 41 | Intent browserIntent =new Intent(Intent.ACTION_VIEW, Uri.parse("https://forms.gle/Bjdn1Mraj1sv4Dwz6")); 42 | startActivity(browserIntent); 43 | } 44 | 45 | public void Get_in_touch_with_us(View view) { 46 | Intent browserIntent =new Intent(Intent.ACTION_VIEW, Uri.parse("https://docs.google.com/forms/d/1Qu-pcGHetpdtO8yOdaujTSDW3kPOJCIiKMyDIblc7Do/edit")); 47 | startActivity(browserIntent); 48 | } 49 | } -------------------------------------------------------------------------------- /Medicare_app/app/src/main/java/com/example/learnathon1/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.example.learnathon1; 2 | 3 | import androidx.appcompat.app.AlertDialog; 4 | import androidx.appcompat.app.AppCompatActivity; 5 | 6 | import android.content.DialogInterface; 7 | import android.content.Intent; 8 | import android.net.Uri; 9 | import android.os.Bundle; 10 | import android.view.View; 11 | import android.widget.Button; 12 | 13 | public class MainActivity extends AppCompatActivity { 14 | 15 | 16 | Button Get_started; 17 | @Override 18 | protected void onCreate(Bundle savedInstanceState) { 19 | super.onCreate(savedInstanceState); 20 | setContentView(R.layout.activity_main); 21 | Get_started=findViewById(R.id.Get_started); 22 | Get_started.setOnClickListener(new View.OnClickListener() { 23 | @Override 24 | public void onClick(View view) { 25 | Intent intent=new Intent(MainActivity.this,Home_page.class); 26 | startActivity(intent); 27 | } 28 | }); 29 | 30 | } 31 | @Override 32 | public void onBackPressed(){ 33 | AlertDialog.Builder builder=new AlertDialog.Builder(this); 34 | builder.setMessage("Are you sure you want to Exit?") 35 | .setCancelable(false) 36 | .setPositiveButton("Yes",new DialogInterface.OnClickListener() 37 | { 38 | @Override 39 | public void onClick(DialogInterface dialogInterface, int i) 40 | { 41 | finish(); 42 | MainActivity.super.onBackPressed(); 43 | } 44 | }) 45 | 46 | 47 | .setNegativeButton("No", new DialogInterface.OnClickListener() { 48 | @Override 49 | public void onClick(DialogInterface dialogInterface, int i) { 50 | dialogInterface.cancel(); 51 | } 52 | }); 53 | 54 | 55 | AlertDialog alertDialog= builder.create(); 56 | alertDialog.show(); 57 | } 58 | 59 | public void Explore_website(View view) { 60 | Intent browserIntent =new Intent(Intent.ACTION_VIEW, Uri.parse("https://leranathon.netlify.app/")); 61 | startActivity(browserIntent); 62 | } 63 | } -------------------------------------------------------------------------------- /Medicare_app/app/src/main/java/com/example/learnathon1/Heart_care_Service.java: -------------------------------------------------------------------------------- 1 | package com.example.learnathon1; 2 | 3 | import androidx.appcompat.app.AppCompatActivity; 4 | import androidx.core.app.NotificationCompat; 5 | import androidx.core.app.NotificationManagerCompat; 6 | 7 | import android.app.NotificationChannel; 8 | import android.app.NotificationManager; 9 | import android.content.Intent; 10 | import android.net.Uri; 11 | import android.os.Build; 12 | import android.os.Bundle; 13 | import android.view.View; 14 | import android.widget.Button; 15 | 16 | public class Heart_care_Service extends AppCompatActivity { 17 | Button Heart_excercise; 18 | Button Doctors_consulation; 19 | @Override 20 | protected void onCreate(Bundle savedInstanceState) { 21 | super.onCreate(savedInstanceState); 22 | setContentView(R.layout.activity_heart_care_service); 23 | 24 | 25 | //For Notification 26 | if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){ 27 | NotificationChannel Home_page_channel=new NotificationChannel("HomePage_notification", "HomePage_notification", NotificationManager.IMPORTANCE_DEFAULT); 28 | NotificationManager Home_page_manager =getSystemService(NotificationManager.class); 29 | Home_page_manager.createNotificationChannel(Home_page_channel); 30 | } 31 | NotificationCompat.Builder builder=new NotificationCompat.Builder(this,"HomePage_notification") 32 | .setContentTitle("Welcome to our Heart Care Service") 33 | .setSmallIcon(R.drawable.app_logo) 34 | .setAutoCancel(true) 35 | .setContentText("We have heart care Exercises for your Healthy Heart !!\n "); 36 | 37 | NotificationManagerCompat Home_page_manager = NotificationManagerCompat.from(this); 38 | Home_page_manager.notify(11,builder.build()); 39 | 40 | Heart_excercise=findViewById(R.id.heart_Care_excercise); 41 | Heart_excercise.setOnClickListener(new View.OnClickListener() { 42 | @Override 43 | public void onClick(View view) { 44 | Intent intent=new Intent(Heart_care_Service.this,Heart_care_excercise.class); 45 | startActivity(intent); 46 | } 47 | }); 48 | Doctors_consulation=findViewById(R.id.Doctors); 49 | Doctors_consulation.setOnClickListener(new View.OnClickListener() { 50 | @Override 51 | public void onClick(View view) { 52 | Intent intent=new Intent(Heart_care_Service.this,doctor_consulation.class); 53 | startActivity(intent); 54 | } 55 | }); 56 | } 57 | 58 | 59 | } -------------------------------------------------------------------------------- /Medicare_app/app/src/main/java/com/example/learnathon1/Eye_care_service.java: -------------------------------------------------------------------------------- 1 | package com.example.learnathon1; 2 | 3 | import androidx.appcompat.app.AppCompatActivity; 4 | import androidx.core.app.NotificationCompat; 5 | import androidx.core.app.NotificationManagerCompat; 6 | 7 | import android.app.NotificationChannel; 8 | import android.app.NotificationManager; 9 | import android.content.Intent; 10 | import android.net.Uri; 11 | import android.os.Build; 12 | import android.os.Bundle; 13 | import android.view.View; 14 | import android.widget.Button; 15 | 16 | public class Eye_care_service extends AppCompatActivity { 17 | Button EYe_care_excercise; 18 | Button Doctors_consulation; 19 | @Override 20 | protected void onCreate(Bundle savedInstanceState) { 21 | super.onCreate(savedInstanceState); 22 | setContentView(R.layout.activity_eye_care_service); 23 | 24 | 25 | //For Notification 26 | if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){ 27 | NotificationChannel Home_page_channel=new NotificationChannel("HomePage_notification", "HomePage_notification", NotificationManager.IMPORTANCE_DEFAULT); 28 | NotificationManager Home_page_manager =getSystemService(NotificationManager.class); 29 | Home_page_manager.createNotificationChannel(Home_page_channel); 30 | } 31 | NotificationCompat.Builder builder=new NotificationCompat.Builder(this,"HomePage_notification") 32 | .setContentTitle("Eye Care Service") 33 | .setSmallIcon(R.drawable.app_logo) 34 | .setAutoCancel(true) 35 | .setContentText("We make our every effort to enhance your vision.\n "); 36 | 37 | NotificationManagerCompat Home_page_manager = NotificationManagerCompat.from(this); 38 | Home_page_manager.notify(1111,builder.build()); 39 | 40 | 41 | Doctors_consulation=findViewById(R.id.Doctors); 42 | Doctors_consulation.setOnClickListener(new View.OnClickListener() { 43 | @Override 44 | public void onClick(View view) { 45 | Intent intent=new Intent(Eye_care_service.this,doctor_consulation.class); 46 | startActivity(intent); 47 | } 48 | }); 49 | 50 | EYe_care_excercise=findViewById(R.id.eye_Care_excercise); 51 | EYe_care_excercise.setOnClickListener(new View.OnClickListener() { 52 | @Override 53 | public void onClick(View view) { 54 | 55 | Intent intent=new Intent(Eye_care_service.this,Eye_care_excercise.class); 56 | startActivity(intent); 57 | } 58 | }); 59 | 60 | } 61 | 62 | 63 | } -------------------------------------------------------------------------------- /Medicare_app/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 16 | 20 | 23 | 28 | 33 | 38 | 43 | 48 | 53 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /Medicare_app/gradlew.bat: -------------------------------------------------------------------------------- 1 | @rem 2 | @rem Copyright 2015 the original author or authors. 3 | @rem 4 | @rem Licensed under the Apache License, Version 2.0 (the "License"); 5 | @rem you may not use this file except in compliance with the License. 6 | @rem You may obtain a copy of the License at 7 | @rem 8 | @rem https://www.apache.org/licenses/LICENSE-2.0 9 | @rem 10 | @rem Unless required by applicable law or agreed to in writing, software 11 | @rem distributed under the License is distributed on an "AS IS" BASIS, 12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | @rem See the License for the specific language governing permissions and 14 | @rem limitations under the License. 15 | @rem 16 | 17 | @if "%DEBUG%" == "" @echo off 18 | @rem ########################################################################## 19 | @rem 20 | @rem Gradle startup script for Windows 21 | @rem 22 | @rem ########################################################################## 23 | 24 | @rem Set local scope for the variables with windows NT shell 25 | if "%OS%"=="Windows_NT" setlocal 26 | 27 | set DIRNAME=%~dp0 28 | if "%DIRNAME%" == "" set DIRNAME=. 29 | set APP_BASE_NAME=%~n0 30 | set APP_HOME=%DIRNAME% 31 | 32 | @rem Resolve any "." and ".." in APP_HOME to make it shorter. 33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi 34 | 35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 37 | 38 | @rem Find java.exe 39 | if defined JAVA_HOME goto findJavaFromJavaHome 40 | 41 | set JAVA_EXE=java.exe 42 | %JAVA_EXE% -version >NUL 2>&1 43 | if "%ERRORLEVEL%" == "0" goto execute 44 | 45 | echo. 46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 47 | echo. 48 | echo Please set the JAVA_HOME variable in your environment to match the 49 | echo location of your Java installation. 50 | 51 | goto fail 52 | 53 | :findJavaFromJavaHome 54 | set JAVA_HOME=%JAVA_HOME:"=% 55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 56 | 57 | if exist "%JAVA_EXE%" goto execute 58 | 59 | echo. 60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 61 | echo. 62 | echo Please set the JAVA_HOME variable in your environment to match the 63 | echo location of your Java installation. 64 | 65 | goto fail 66 | 67 | :execute 68 | @rem Setup the command line 69 | 70 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 71 | 72 | 73 | @rem Execute Gradle 74 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* 75 | 76 | :end 77 | @rem End local scope for the variables with windows NT shell 78 | if "%ERRORLEVEL%"=="0" goto mainEnd 79 | 80 | :fail 81 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 82 | rem the _cmd.exe /c_ return code! 83 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 84 | exit /b 1 85 | 86 | :mainEnd 87 | if "%OS%"=="Windows_NT" endlocal 88 | 89 | :omega 90 | -------------------------------------------------------------------------------- /Medicare_app/app/src/main/res/layout/activity_doctor_consulation.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 22 | 23 | 40 | 41 | 56 | 57 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 |
292 | 293 |

Client's Review

294 | 295 |
296 | 297 |
298 | 299 |

John Deo

300 |
301 | 302 | 303 | 304 | 305 | 306 |
307 |

“…Thank you so much for your help. I would highly recommend you and Medicare Group to any healthcare organization that is looking to improve their company. It has been a pleasure working with you…our business is much more organized, thanks to you…your marketing advice has been very beneficial…”

308 |
309 | 310 |
311 | 312 |

Millia Chinong

313 |
314 | 315 | 316 | 317 | 318 |
319 |

Great experience as a first timer. I barely waited to be helped when I checked in. The staff and Dr. Ajay Kumar were all very friendly and helpful. I especially loved how Dr. Ajay really took his time to explain my conditions with me as well as my treatment options. I had a great visit and the doctor’s demeanor has really put me at ease so I highly recommend this clinic.

320 |
321 | 322 |
323 | 324 |

Harry Hudson

325 |
326 | 327 | 328 | 329 | 330 | 331 |
332 |

Great medical office, wonderful and warm experience from start to finish. Appreciate Dr. Sanjay taking time to go over the diagnosis clearly and treatment options. Was referred over by my general doctor and can see why. Highly recommended.

333 |
334 | 335 |
336 | 337 |
338 | 339 | 340 | 341 | 342 | 343 |
344 | 345 |

our blogs

346 | 347 |
348 | 349 |
350 |
351 | 352 |
353 |
354 | 358 |

Do You Have Bad Breath? Possible reason behind it

359 |

Do you ever feel self-conscious about your breath? Do you wonder if people might be able to smell your mouth when you speak? If you’ve answered yes to either of these questions, you may suffer from bad breath.

360 | learn more 361 |
362 |
363 | 364 |
365 |
366 | 367 |
368 |
369 |
370 | 1st may, 2021 371 | by admin 372 |
373 |

The complete Herbal guide

374 |

The esthetic appeal of having plants inside your house is the reason the majority of people decide to start gardening indoors. Whether you have researched and planned on them or not, there are additional benefits that are derived when green space is created inside your house.

375 | learn more 376 |
377 |
378 | 379 |
380 |
381 | 382 |
383 |
384 | 388 |

A COVID-19 Paradox

389 |

Albert Einstein once said, “In the middle of difficulty lies opportunity.” And I, being the opportunist that I am, might have taken that a bit too literally. A month and a half before the World Health Organization declared COVID-19 and its causing symptoms

390 | learn more 391 |
392 |
393 | 394 |
395 | 396 |
397 | 398 | 399 | 400 | 401 | 402 | 451 | 452 | 453 | 455 | 456 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | --------------------------------------------------------------------------------