├── .gitignore ├── Firebase_Functions ├── firebase.json ├── index.html └── index.js ├── LICENSE ├── README.md ├── android ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_car-web.png │ │ ├── ic_default_user-web.png │ │ ├── ic_email-web.png │ │ ├── ic_launcher-playstore.png │ │ ├── ic_launcher-web.png │ │ ├── ic_password-web.png │ │ ├── ic_pickup-web.png │ │ ├── java │ │ │ └── com │ │ │ │ └── simcoder │ │ │ │ └── uber │ │ │ │ ├── Adapters │ │ │ │ ├── CardAdapter.java │ │ │ │ ├── CardRequestAdapter.java │ │ │ │ ├── HistoryAdapter.java │ │ │ │ ├── PayoutAdapter.java │ │ │ │ └── TypeAdapter.java │ │ │ │ ├── Customer │ │ │ │ ├── CustomerMapActivity.java │ │ │ │ └── CustomerSettingsActivity.java │ │ │ │ ├── Driver │ │ │ │ ├── DriverChooseTypeActivity.java │ │ │ │ ├── DriverMapActivity.java │ │ │ │ └── DriverSettingsActivity.java │ │ │ │ ├── History │ │ │ │ ├── HistoryActivity.java │ │ │ │ └── HistorySingleActivity.java │ │ │ │ ├── Login │ │ │ │ ├── AuthenticationActivity.java │ │ │ │ ├── DetailsActivity.java │ │ │ │ ├── LauncherActivity.java │ │ │ │ ├── LoginFragment.java │ │ │ │ ├── MenuFragment.java │ │ │ │ └── RegisterFragment.java │ │ │ │ ├── Objects │ │ │ │ ├── CardObject.java │ │ │ │ ├── CustomerObject.java │ │ │ │ ├── DriverObject.java │ │ │ │ ├── LocationObject.java │ │ │ │ ├── PayoutObject.java │ │ │ │ ├── RideObject.java │ │ │ │ └── TypeObject.java │ │ │ │ ├── Payment │ │ │ │ ├── AddPaymentActivity.java │ │ │ │ ├── PaymentActivity.java │ │ │ │ ├── PaymentUtils.java │ │ │ │ └── PayoutActivity.java │ │ │ │ └── Utils │ │ │ │ ├── SendNotification.java │ │ │ │ ├── Utils.java │ │ │ │ └── onAppKilled.java │ │ └── res │ │ │ ├── anim │ │ │ ├── slide_down.xml │ │ │ └── slide_up.xml │ │ │ ├── drawable-anydpi │ │ │ └── ic_phone.xml │ │ │ ├── drawable-hdpi │ │ │ ├── ic_menu.png │ │ │ ├── ic_phone.png │ │ │ ├── ic_radio.png │ │ │ └── ic_radio_filled.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_menu.png │ │ │ ├── ic_phone.png │ │ │ ├── ic_radio.png │ │ │ └── ic_radio_filled.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_menu.png │ │ │ ├── ic_phone.png │ │ │ ├── ic_radio.png │ │ │ └── ic_radio_filled.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── ic_finish.png │ │ │ ├── ic_menu.png │ │ │ ├── ic_phone.png │ │ │ ├── ic_radio.png │ │ │ ├── ic_radio_filled.png │ │ │ └── ic_start.png │ │ │ ├── drawable │ │ │ ├── ic_add_circle.xml │ │ │ ├── ic_arrow_forward_black_24dp.xml │ │ │ ├── ic_attach_money_black_24dp.xml │ │ │ ├── ic_call_black_24dp.xml │ │ │ ├── ic_cancel_black_24dp.xml │ │ │ ├── ic_check_circle_black_24dp.xml │ │ │ ├── ic_check_default.xml │ │ │ ├── ic_chip.xml │ │ │ ├── ic_circle.xml │ │ │ ├── ic_circle_filled.xml │ │ │ ├── ic_credit_card_black_24dp.xml │ │ │ ├── ic_email_black_24dp.xml │ │ │ ├── ic_exit_to_app_black_24dp.xml │ │ │ ├── ic_keyboard_arrow_up_black_24dp.xml │ │ │ ├── ic_location_on_grey_24dp.xml │ │ │ ├── ic_location_on_primary_24dp.xml │ │ │ ├── ic_map_black_24dp.xml │ │ │ ├── ic_person_black_24dp.xml │ │ │ ├── ic_sentiment_dissatisfied_black_24dp.xml │ │ │ ├── ic_star_black_24dp.xml │ │ │ ├── ic_type_1.xml │ │ │ ├── ic_type_2.xml │ │ │ ├── ic_type_3.xml │ │ │ ├── ic_type_4.xml │ │ │ ├── ic_visa.xml │ │ │ ├── ic_vpn_key_black_24dp.xml │ │ │ └── shadow.xml │ │ │ ├── layout │ │ │ ├── activity_add_payment.xml │ │ │ ├── activity_authentication.xml │ │ │ ├── activity_costumer_content.xml │ │ │ ├── activity_customer_settings.xml │ │ │ ├── activity_details.xml │ │ │ ├── activity_driver_choose_type.xml │ │ │ ├── activity_driver_content.xml │ │ │ ├── activity_driver_settings.xml │ │ │ ├── activity_history.xml │ │ │ ├── activity_history_single.xml │ │ │ ├── activity_map_customer.xml │ │ │ ├── activity_map_driver.xml │ │ │ ├── activity_payment.xml │ │ │ ├── activity_payout.xml │ │ │ ├── add_payment_content.xml │ │ │ ├── dialog_card.xml │ │ │ ├── dialog_ride_review.xml │ │ │ ├── fragment_login.xml │ │ │ ├── fragment_menu.xml │ │ │ ├── fragment_registration.xml │ │ │ ├── item__card_request.xml │ │ │ ├── item_card.xml │ │ │ ├── item_history.xml │ │ │ ├── item_marker.xml │ │ │ ├── item_payout.xml │ │ │ ├── item_type.xml │ │ │ └── nav_header_main.xml │ │ │ ├── menu │ │ │ ├── customer_main.xml │ │ │ ├── driver_main.xml │ │ │ └── main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_car.png │ │ │ ├── ic_default_user.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_car.png │ │ │ ├── ic_default_user.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_car.png │ │ │ ├── ic_default_user.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_car.png │ │ │ ├── ic_default_user.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_car.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── raw │ │ │ └── driver_notification.mp3 │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── drawables.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── release │ │ └── res │ │ └── values │ │ └── google_maps_api.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── images ├── mockup.png └── simcoder.png └── realtime_database_rules.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/.gitignore -------------------------------------------------------------------------------- /Firebase_Functions/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/Firebase_Functions/firebase.json -------------------------------------------------------------------------------- /Firebase_Functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/Firebase_Functions/index.html -------------------------------------------------------------------------------- /Firebase_Functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/Firebase_Functions/index.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/README.md -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/ic_car-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/ic_car-web.png -------------------------------------------------------------------------------- /android/app/src/main/ic_default_user-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/ic_default_user-web.png -------------------------------------------------------------------------------- /android/app/src/main/ic_email-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/ic_email-web.png -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /android/app/src/main/ic_password-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/ic_password-web.png -------------------------------------------------------------------------------- /android/app/src/main/ic_pickup-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/ic_pickup-web.png -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Adapters/CardAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Adapters/CardAdapter.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Adapters/CardRequestAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Adapters/CardRequestAdapter.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Adapters/HistoryAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Adapters/HistoryAdapter.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Adapters/PayoutAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Adapters/PayoutAdapter.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Adapters/TypeAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Adapters/TypeAdapter.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Customer/CustomerMapActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Customer/CustomerMapActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Customer/CustomerSettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Customer/CustomerSettingsActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Driver/DriverChooseTypeActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Driver/DriverChooseTypeActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Driver/DriverMapActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Driver/DriverMapActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Driver/DriverSettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Driver/DriverSettingsActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/History/HistoryActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/History/HistoryActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/History/HistorySingleActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/History/HistorySingleActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Login/AuthenticationActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Login/AuthenticationActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Login/DetailsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Login/DetailsActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Login/LauncherActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Login/LauncherActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Login/LoginFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Login/LoginFragment.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Login/MenuFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Login/MenuFragment.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Login/RegisterFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Login/RegisterFragment.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Objects/CardObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Objects/CardObject.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Objects/CustomerObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Objects/CustomerObject.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Objects/DriverObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Objects/DriverObject.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Objects/LocationObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Objects/LocationObject.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Objects/PayoutObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Objects/PayoutObject.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Objects/RideObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Objects/RideObject.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Objects/TypeObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Objects/TypeObject.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Payment/AddPaymentActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Payment/AddPaymentActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Payment/PaymentActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Payment/PaymentActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Payment/PaymentUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Payment/PaymentUtils.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Payment/PayoutActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Payment/PayoutActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Utils/SendNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Utils/SendNotification.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Utils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Utils/Utils.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simcoder/uber/Utils/onAppKilled.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/java/com/simcoder/uber/Utils/onAppKilled.java -------------------------------------------------------------------------------- /android/app/src/main/res/anim/slide_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/anim/slide_down.xml -------------------------------------------------------------------------------- /android/app/src/main/res/anim/slide_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/anim/slide_up.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-anydpi/ic_phone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable-anydpi/ic_phone.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable-hdpi/ic_menu.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable-hdpi/ic_phone.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable-hdpi/ic_radio.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_radio_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable-hdpi/ic_radio_filled.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable-mdpi/ic_menu.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable-mdpi/ic_phone.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable-mdpi/ic_radio.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_radio_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable-mdpi/ic_radio_filled.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable-xhdpi/ic_menu.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable-xhdpi/ic_phone.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable-xhdpi/ic_radio.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_radio_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable-xhdpi/ic_radio_filled.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_finish.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_menu.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_phone.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_radio.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_radio_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_radio_filled.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_start.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_add_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_add_circle.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_arrow_forward_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_arrow_forward_black_24dp.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_attach_money_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_attach_money_black_24dp.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_call_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_call_black_24dp.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_cancel_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_cancel_black_24dp.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_check_circle_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_check_circle_black_24dp.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_check_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_check_default.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_chip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_chip.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_circle.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_circle_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_circle_filled.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_credit_card_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_credit_card_black_24dp.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_email_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_email_black_24dp.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_exit_to_app_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_exit_to_app_black_24dp.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_keyboard_arrow_up_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_keyboard_arrow_up_black_24dp.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_location_on_grey_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_location_on_grey_24dp.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_location_on_primary_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_location_on_primary_24dp.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_map_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_map_black_24dp.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_person_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_person_black_24dp.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_sentiment_dissatisfied_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_sentiment_dissatisfied_black_24dp.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_star_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_star_black_24dp.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_type_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_type_1.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_type_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_type_2.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_type_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_type_3.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_type_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_type_4.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_visa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_visa.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_vpn_key_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/ic_vpn_key_black_24dp.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/shadow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/drawable/shadow.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_add_payment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/activity_add_payment.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_authentication.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/activity_authentication.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_costumer_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/activity_costumer_content.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_customer_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/activity_customer_settings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/activity_details.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_driver_choose_type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/activity_driver_choose_type.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_driver_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/activity_driver_content.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_driver_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/activity_driver_settings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/activity_history.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_history_single.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/activity_history_single.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_map_customer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/activity_map_customer.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_map_driver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/activity_map_driver.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_payment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/activity_payment.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_payout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/activity_payout.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/add_payment_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/add_payment_content.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/dialog_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/dialog_card.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/dialog_ride_review.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/dialog_ride_review.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/fragment_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/fragment_login.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/fragment_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/fragment_menu.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/fragment_registration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/fragment_registration.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/item__card_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/item__card_request.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/item_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/item_card.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/item_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/item_history.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/item_marker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/item_marker.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/item_payout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/item_payout.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/item_type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/item_type.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/nav_header_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/layout/nav_header_main.xml -------------------------------------------------------------------------------- /android/app/src/main/res/menu/customer_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/menu/customer_main.xml -------------------------------------------------------------------------------- /android/app/src/main/res/menu/driver_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/menu/driver_main.xml -------------------------------------------------------------------------------- /android/app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-hdpi/ic_car.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_default_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-hdpi/ic_default_user.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-mdpi/ic_car.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_default_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-mdpi/ic_default_user.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_car.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_default_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_default_user.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_car.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_default_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_default_user.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_car.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/raw/driver_notification.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/raw/driver_notification.mp3 -------------------------------------------------------------------------------- /android/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/drawables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/values/drawables.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/release/res/values/google_maps_api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/app/src/release/res/values/google_maps_api.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /images/mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/images/mockup.png -------------------------------------------------------------------------------- /images/simcoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/images/simcoder.png -------------------------------------------------------------------------------- /realtime_database_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/UberClone/HEAD/realtime_database_rules.json --------------------------------------------------------------------------------