├── app ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── refs.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── styles.xml │ │ │ │ └── strings.xml │ │ │ ├── drawable │ │ │ │ ├── avatar.jpg │ │ │ │ ├── female1.jpg │ │ │ │ ├── logo123.png │ │ │ │ ├── mainlogo.png │ │ │ │ ├── okcodex.png │ │ │ │ ├── facebooknew.png │ │ │ │ ├── ic_sms_black_24dp.xml │ │ │ │ ├── ic_email_black_24dp.xml │ │ │ │ ├── search_black_24dp.xml │ │ │ │ ├── call_black_24dp.xml │ │ │ │ ├── edittext.xml │ │ │ │ ├── button.xml │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── menu │ │ │ │ ├── main_menu.xml │ │ │ │ └── menu_layout.xml │ │ │ ├── layout │ │ │ │ ├── activity_doctors_list.xml │ │ │ │ ├── samplelayout.xml │ │ │ │ ├── sampledoctorslist.xml │ │ │ │ ├── activity_feedback.xml │ │ │ │ ├── activity_about_us.xml │ │ │ │ └── activity_profile1.xml │ │ │ └── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── okcodex1 │ │ │ │ └── doctor24sylhet │ │ │ │ ├── MyApp.java │ │ │ │ ├── Model │ │ │ │ └── Modelclass.java │ │ │ │ ├── FeedbackActivity.java │ │ │ │ ├── AboutUsActivity.java │ │ │ │ ├── Adapter │ │ │ │ ├── MyAdapter15.java │ │ │ │ ├── MyAdapter9.java │ │ │ │ ├── MyAdapter.java │ │ │ │ ├── MyAdapter1.java │ │ │ │ ├── MyAdapter16.java │ │ │ │ ├── MyAdapter18.java │ │ │ │ ├── MyAdapter19.java │ │ │ │ ├── MyAdapter20.java │ │ │ │ ├── MyAdapter21.java │ │ │ │ ├── MyAdapter8.java │ │ │ │ ├── MyAdapter10.java │ │ │ │ ├── MyAdapter17.java │ │ │ │ ├── MyAdapter4.java │ │ │ │ ├── MyAdapter5.java │ │ │ │ ├── MyAdapter6.java │ │ │ │ ├── MyAdapter7.java │ │ │ │ ├── MyAdapter11.java │ │ │ │ ├── MyAdapter12.java │ │ │ │ ├── MyAdapter13.java │ │ │ │ ├── MyAdapter14.java │ │ │ │ ├── MyAdapter2.java │ │ │ │ ├── MyAdapter3.java │ │ │ │ ├── CustomAdapter.java │ │ │ │ └── CustomAdapter2.java │ │ │ │ ├── ProfileActivity1.java │ │ │ │ └── DoctorsListActivity.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── okcodex99 │ │ │ └── doctorsylhet │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── okcodex99 │ │ └── doctorsylhet │ │ └── ExampleInstrumentedTest.java ├── release │ └── app-release.aab ├── proguard-rules.pro ├── google-services.json └── build.gradle ├── settings.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .idea ├── vcs.xml ├── misc.xml ├── runConfigurations.xml ├── gradle.xml ├── jarRepositories.xml └── codeStyles │ └── Project.xml ├── .gitignore ├── gradle.properties ├── gradlew.bat └── gradlew /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='FindingDoctor' 3 | -------------------------------------------------------------------------------- /app/src/main/res/values/refs.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/release/app-release.aab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/md-shahin-miah/Doctors24-Sylhet/HEAD/app/release/app-release.aab -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/md-shahin-miah/Doctors24-Sylhet/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/res/drawable/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/md-shahin-miah/Doctors24-Sylhet/HEAD/app/src/main/res/drawable/avatar.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/female1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/md-shahin-miah/Doctors24-Sylhet/HEAD/app/src/main/res/drawable/female1.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/logo123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/md-shahin-miah/Doctors24-Sylhet/HEAD/app/src/main/res/drawable/logo123.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/mainlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/md-shahin-miah/Doctors24-Sylhet/HEAD/app/src/main/res/drawable/mainlogo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/okcodex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/md-shahin-miah/Doctors24-Sylhet/HEAD/app/src/main/res/drawable/okcodex.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/facebooknew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/md-shahin-miah/Doctors24-Sylhet/HEAD/app/src/main/res/drawable/facebooknew.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/md-shahin-miah/Doctors24-Sylhet/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/md-shahin-miah/Doctors24-Sylhet/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/md-shahin-miah/Doctors24-Sylhet/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/md-shahin-miah/Doctors24-Sylhet/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/md-shahin-miah/Doctors24-Sylhet/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/md-shahin-miah/Doctors24-Sylhet/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/md-shahin-miah/Doctors24-Sylhet/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/md-shahin-miah/Doctors24-Sylhet/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/md-shahin-miah/Doctors24-Sylhet/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/md-shahin-miah/Doctors24-Sylhet/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #008577 4 | #00574B 5 | #D81B60 6 | 7 | -------------------------------------------------------------------------------- /.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 | #Tue Sep 29 17:12:30 BDT 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-6.1.1-all.zip 7 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/menu/main_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_sms_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/test/java/com/okcodex99/doctorsylhet/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.okcodex99.doctorsylhet; 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/ic_email_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/search_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/call_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/edittext.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 12 | 18 | 19 | 23 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/button.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 14 | 20 | 21 | 25 | -------------------------------------------------------------------------------- /app/src/main/java/com/okcodex1/doctor24sylhet/MyApp.java: -------------------------------------------------------------------------------- 1 | package com.okcodex1.doctor24sylhet; 2 | 3 | import android.app.Application; 4 | 5 | import com.google.android.gms.ads.MobileAds; 6 | import com.google.android.gms.ads.initialization.InitializationStatus; 7 | import com.google.android.gms.ads.initialization.OnInitializationCompleteListener; 8 | 9 | public class MyApp extends Application { 10 | 11 | static public int count=1; 12 | 13 | @Override 14 | public void onCreate() { 15 | super.onCreate(); 16 | MobileAds.initialize(this, new OnInitializationCompleteListener() { 17 | @Override 18 | public void onInitializationComplete(InitializationStatus initializationStatus) { 19 | } 20 | }); 21 | 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /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 22 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 20 | 21 | -------------------------------------------------------------------------------- /app/src/androidTest/java/com/okcodex99/doctorsylhet/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package com.okcodex99.doctorsylhet; 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 | 25 | assertEquals("com.okcodex.findingdoctor", appContext.getPackageName()); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 16 | 24 | 31 | 32 | 40 | 48 | -------------------------------------------------------------------------------- /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=-Xmx1536m 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 | # Automatically convert third-party libraries to use AndroidX 19 | android.enableJetifier=true 20 | 21 | -------------------------------------------------------------------------------- /app/google-services.json: -------------------------------------------------------------------------------- 1 | { 2 | "project_info": { 3 | "project_number": "647445254236", 4 | "firebase_url": "https://findingdoctor-bad3d.firebaseio.com", 5 | "project_id": "findingdoctor-bad3d", 6 | "storage_bucket": "findingdoctor-bad3d.appspot.com" 7 | }, 8 | "client": [ 9 | { 10 | "client_info": { 11 | "mobilesdk_app_id": "1:647445254236:android:f485913e1f8b5745789699", 12 | "android_client_info": { 13 | "package_name": "com.okcodex1.doctor24sylhet" 14 | } 15 | }, 16 | "oauth_client": [ 17 | { 18 | "client_id": "647445254236-an433u91aljeam42snu8dv5153fcbh00.apps.googleusercontent.com", 19 | "client_type": 3 20 | } 21 | ], 22 | "api_key": [ 23 | { 24 | "current_key": "AIzaSyCvi6CHzCMwrJxQR6l157L1x4UopeEA5pU" 25 | } 26 | ], 27 | "services": { 28 | "appinvite_service": { 29 | "other_platform_oauth_client": [ 30 | { 31 | "client_id": "647445254236-an433u91aljeam42snu8dv5153fcbh00.apps.googleusercontent.com", 32 | "client_type": 3 33 | } 34 | ] 35 | } 36 | } 37 | } 38 | ], 39 | "configuration_version": "1" 40 | } -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 14 | 15 | 19 | 20 | 24 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_doctors_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 14 | 20 | 21 | 22 | 23 | 24 | 33 | 34 | -------------------------------------------------------------------------------- /app/src/main/java/com/okcodex1/doctor24sylhet/Model/Modelclass.java: -------------------------------------------------------------------------------- 1 | package com.okcodex1.doctor24sylhet.Model; 2 | 3 | import java.io.Serializable; 4 | 5 | public class Modelclass implements Serializable { 6 | String name, qualification, worksat, chamber, visitingtime, offday, mobilenumber; 7 | int image; 8 | 9 | public Modelclass() { 10 | } 11 | 12 | public Modelclass(String name, String qualification, String worksat, String chamber, String visitingtime, String offday, String mobilenumber, int image) { 13 | this.name = name; 14 | this.qualification = qualification; 15 | this.worksat = worksat; 16 | this.chamber = chamber; 17 | this.visitingtime = visitingtime; 18 | this.offday = offday; 19 | this.mobilenumber = mobilenumber; 20 | this.image = image; 21 | } 22 | 23 | public String getName() { 24 | return name; 25 | } 26 | 27 | public String getQualification() { 28 | return qualification; 29 | } 30 | 31 | public String getWorksat() { 32 | return worksat; 33 | } 34 | 35 | public String getChamber() { 36 | return chamber; 37 | } 38 | 39 | public String getVisitingtime() { 40 | return visitingtime; 41 | } 42 | 43 | public String getOffday() { 44 | return offday; 45 | } 46 | 47 | public String getMobilenumber() { 48 | return mobilenumber; 49 | } 50 | 51 | public int getImage() { 52 | return image; 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Doctors24 Sylhet 3 | 4 | 5 | ডাঃ মোঃ আবদুল গনি 6 | Dr. Debasish Paul 7 | Dr. Mohammad Hussain 8 | Professor Dr. Shudhangshu Ranjan Dey 9 | Dr. Md. Shah Jamal Hossain 10 | 11 | 12 | 13 | 14 | 15 | ডাঃ মোঃ গনি 16 | Dr. Paul 17 | Dr. Hussain 18 | Dr. Ranjan Dey 19 | Dr. Md. Shah 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | এমবিবিকার্ডিওলজি) 28 | MBBSogy) 29 | MMC) 30 | SI,FISC,FACC 31 | Felf Cardiology 32 | ege of Cardiology 33 | Habard Medical School, USA 34 | ardiology) 35 | 36 | 37 | 38 | 39 | এমবিবিএস (সিইউ), ডি-কার্ড (বিএসএমএমইউ), পিজিটি (মেডিসিন ও কার্ডিওলজি) 40 | MBBS,MD(Cardiology) 41 | MBBS,D-Card(DMC) 42 | MBBS,MD,MCSI,FISC,FACC 43 | Fellow-American College of Cardiology 44 | European College of Cardiology 45 | Habard Medical School, USA 46 | MD,PhD(Cardiology) 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | //apply plugin: 'com.google.gms.google-services' 3 | 4 | 5 | android { 6 | compileSdkVersion 29 7 | buildToolsVersion "29.0.3" 8 | defaultConfig { 9 | applicationId "com.okcodex1.doctor24sylhet" 10 | minSdkVersion 17 11 | targetSdkVersion 29 12 | versionCode 2 13 | versionName "1.2" 14 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 15 | } 16 | buildTypes { 17 | release { 18 | minifyEnabled false 19 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 20 | } 21 | } 22 | 23 | } 24 | 25 | 26 | repositories { 27 | maven { url 'https://jitpack.io' } 28 | } 29 | dependencies { 30 | implementation fileTree(dir: 'libs', include: ['*.jar']) 31 | implementation 'androidx.appcompat:appcompat:1.1.0' 32 | implementation 'androidx.constraintlayout:constraintlayout:1.1.3' 33 | // implementation 'com.google.firebase:firebase-messaging:20.1.2' 34 | //implementation 'com.google.firebase:firebase-ads:19.0.0' 35 | testImplementation 'junit:junit:4.12' 36 | androidTestImplementation 'androidx.test.ext:junit:1.1.1' 37 | androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' 38 | 39 | implementation 'androidx.recyclerview:recyclerview:1.1.0' 40 | implementation 'androidx.cardview:cardview:1.0.0' 41 | implementation 'de.hdodenhof:circleimageview:3.1.0' 42 | implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0' 43 | // implementation 'com.google.android.gms:play-services-ads:19.0.0' 44 | implementation 'com.google.android.gms:play-services-ads:19.0.0' 45 | 46 | //animation 47 | implementation 'com.github.mohammadatif:Animatoo:master' 48 | 49 | } 50 | -------------------------------------------------------------------------------- /app/src/main/res/layout/samplelayout.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 | 18 | 19 | 28 | 29 | 39 | 40 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 12 | 13 | 19 | 22 | 25 | 26 | 27 | 28 | 34 | 35 | -------------------------------------------------------------------------------- /app/src/main/res/layout/sampledoctorslist.xml: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | 20 | 21 | 22 | 33 | 40 | 51 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | set DIRNAME=%~dp0 12 | if "%DIRNAME%" == "" set DIRNAME=. 13 | set APP_BASE_NAME=%~n0 14 | set APP_HOME=%DIRNAME% 15 | 16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 17 | set DEFAULT_JVM_OPTS= 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windows variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | 53 | :win9xME_args 54 | @rem Slurp the command line arguments. 55 | set CMD_LINE_ARGS= 56 | set _SKIP=2 57 | 58 | :win9xME_args_slurp 59 | if "x%~1" == "x" goto execute 60 | 61 | set CMD_LINE_ARGS=%* 62 | 63 | :execute 64 | @rem Setup the command line 65 | 66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 67 | 68 | @rem Execute Gradle 69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 70 | 71 | :end 72 | @rem End local scope for the variables with windows NT shell 73 | if "%ERRORLEVEL%"=="0" goto mainEnd 74 | 75 | :fail 76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 77 | rem the _cmd.exe /c_ return code! 78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 79 | exit /b 1 80 | 81 | :mainEnd 82 | if "%OS%"=="Windows_NT" endlocal 83 | 84 | :omega 85 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_feedback.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 19 | 20 | 21 | 22 | 28 | 29 | 38 | 39 | 50 | 58 |