├── .gitignore ├── .project ├── README.md ├── app ├── .gitignore ├── .project ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── gelostech │ │ └── automart │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── gelostech │ │ │ └── automart │ │ │ ├── activities │ │ │ ├── AddCarActivity.kt │ │ │ ├── AddPartActivity.kt │ │ │ ├── AuthActivity.kt │ │ │ ├── CarActivity.kt │ │ │ ├── ChatActivity.kt │ │ │ ├── MainActivity.kt │ │ │ ├── MyOrdersActivity.kt │ │ │ ├── MyUploadsActivity.kt │ │ │ ├── OrdersActivity.kt │ │ │ ├── PartActivity.kt │ │ │ ├── SalesActivity.kt │ │ │ ├── SettingsActivity.kt │ │ │ └── WatchlistActivity.kt │ │ │ ├── adapters │ │ │ ├── BookingsAdapter.kt │ │ │ ├── CarsAdapter.kt │ │ │ ├── ChatsAdapter.kt │ │ │ ├── DetailsAdapter.kt │ │ │ ├── FeaturesAdapter.kt │ │ │ ├── ImagesAdapter.kt │ │ │ ├── MessagesAdapter.kt │ │ │ ├── NotificationsAdapter.kt │ │ │ ├── PartOrdersAdapter.kt │ │ │ └── PartsAdapter.kt │ │ │ ├── callbacks │ │ │ ├── CarCallback.kt │ │ │ ├── ChatListCallback.kt │ │ │ └── PartCallback.kt │ │ │ ├── commoners │ │ │ ├── AppUtils.kt │ │ │ ├── Automart.kt │ │ │ ├── BaseActivity.kt │ │ │ ├── BaseFragment.kt │ │ │ ├── ChartLabelsFormatter.kt │ │ │ └── K.kt │ │ │ ├── fragments │ │ │ ├── ChatFragment.kt │ │ │ ├── HomeFragment.kt │ │ │ ├── LoginFragment.kt │ │ │ ├── MyOrdersCarsFragment.kt │ │ │ ├── MyOrdersPartsFragment.kt │ │ │ ├── MyUploadsCarsFragment.kt │ │ │ ├── MyUploadsPartsFragment.kt │ │ │ ├── NotificationsFragment.kt │ │ │ ├── OrdersCarsFragment.kt │ │ │ ├── OrdersPartsFragment.kt │ │ │ ├── PartsFragment.kt │ │ │ ├── RegisterFragment.kt │ │ │ └── SearchFragment.kt │ │ │ ├── models │ │ │ ├── Booking.kt │ │ │ ├── Car.kt │ │ │ ├── Chat.kt │ │ │ ├── Message.kt │ │ │ ├── Notification.kt │ │ │ ├── Part.kt │ │ │ ├── PartOrder.kt │ │ │ └── User.kt │ │ │ └── utils │ │ │ ├── BindingAdapter.java │ │ │ ├── Connectivity.kt │ │ │ ├── GifSizeFilter.java │ │ │ ├── MyGlideEngine.java │ │ │ ├── PagerAdapter.java │ │ │ ├── PreferenceHelper.kt │ │ │ ├── RecyclerFormatter.kt │ │ │ ├── TimeFormatter.kt │ │ │ └── ViewExtensions.kt │ └── res │ │ ├── anim │ │ ├── enter_a.xml │ │ ├── enter_b.xml │ │ ├── exit_a.xml │ │ └── exit_b.xml │ │ ├── drawable-hdpi │ │ └── ic_down.png │ │ ├── drawable-mdpi │ │ └── ic_down.png │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xhdpi │ │ └── ic_down.png │ │ ├── drawable-xxhdpi │ │ └── ic_down.png │ │ ├── drawable │ │ ├── bb.jpg │ │ ├── benz.jpg │ │ ├── bl.jpg │ │ ├── brake.jpg │ │ ├── button_solid.xml │ │ ├── chat.xml │ │ ├── chat_me.xml │ │ ├── collapsing_toolbar_bg.xml │ │ ├── door.jpg │ │ ├── et_background_plain.xml │ │ ├── fit.jpg │ │ ├── five.jpg │ │ ├── flat_button.xml │ │ ├── forester.jpg │ │ ├── four.jpg │ │ ├── fozzy.JPG │ │ ├── hilux.jpg │ │ ├── hl.jpg │ │ ├── ic_arrow_drop_down.xml │ │ ├── ic_launcher_background.xml │ │ ├── nze.jpg │ │ ├── one.jpg │ │ ├── person.png │ │ ├── premio.jpg │ │ ├── recycler_divider.xml │ │ ├── rounded_button.xml │ │ ├── rounded_orange_button.xml │ │ ├── simple_recycler_divider.xml │ │ ├── six.jpg │ │ ├── spinner_drawable.xml │ │ ├── three.jpg │ │ ├── two.jpg │ │ ├── windscreen.jpg │ │ ├── wire_button.xml │ │ ├── wire_drawable.xml │ │ └── wire_frame.xml │ │ ├── font │ │ ├── dosis.ttf │ │ ├── dosis_bold.ttf │ │ ├── exo.ttf │ │ └── exo_bold.ttf │ │ ├── layout │ │ ├── activity_add_car.xml │ │ ├── activity_add_part.xml │ │ ├── activity_auth.xml │ │ ├── activity_car.xml │ │ ├── activity_chat.xml │ │ ├── activity_main.xml │ │ ├── activity_my_orders.xml │ │ ├── activity_my_uploads.xml │ │ ├── activity_orders.xml │ │ ├── activity_part.xml │ │ ├── activity_sales.xml │ │ ├── activity_settings.xml │ │ ├── activity_watchlist.xml │ │ ├── fragment_bookings.xml │ │ ├── fragment_chat.xml │ │ ├── fragment_home.xml │ │ ├── fragment_login.xml │ │ ├── fragment_my_bookings.xml │ │ ├── fragment_my_cars.xml │ │ ├── fragment_my_parts.xml │ │ ├── fragment_my_parts_orders.xml │ │ ├── fragment_notifications.xml │ │ ├── fragment_parts.xml │ │ ├── fragment_parts_orders.xml │ │ ├── fragment_register.xml │ │ ├── fragment_search.xml │ │ ├── item_booking.xml │ │ ├── item_booking_shimmer.xml │ │ ├── item_car.xml │ │ ├── item_car_shimmer.xml │ │ ├── item_chat.xml │ │ ├── item_chat_list_shimmer.xml │ │ ├── item_details.xml │ │ ├── item_features.xml │ │ ├── item_image.xml │ │ ├── item_message.xml │ │ ├── item_message_me.xml │ │ ├── item_notif.xml │ │ ├── item_notif_shimmer.xml │ │ ├── item_order.xml │ │ ├── item_part.xml │ │ ├── item_part_shimmer.xml │ │ ├── make_booking.xml │ │ └── make_order.xml │ │ ├── menu │ │ └── menu_part.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.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 │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── gelostech │ └── automart │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshots ├── five.png ├── four.png ├── one.png ├── seven.png ├── six.png ├── three.png └── two.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/.project -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/.project -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/gelostech/automart/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/androidTest/java/com/gelostech/automart/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/activities/AddCarActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/activities/AddCarActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/activities/AddPartActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/activities/AddPartActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/activities/AuthActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/activities/AuthActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/activities/CarActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/activities/CarActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/activities/ChatActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/activities/ChatActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/activities/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/activities/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/activities/MyOrdersActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/activities/MyOrdersActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/activities/MyUploadsActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/activities/MyUploadsActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/activities/OrdersActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/activities/OrdersActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/activities/PartActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/activities/PartActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/activities/SalesActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/activities/SalesActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/activities/SettingsActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/activities/SettingsActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/activities/WatchlistActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/activities/WatchlistActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/adapters/BookingsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/adapters/BookingsAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/adapters/CarsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/adapters/CarsAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/adapters/ChatsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/adapters/ChatsAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/adapters/DetailsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/adapters/DetailsAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/adapters/FeaturesAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/adapters/FeaturesAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/adapters/ImagesAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/adapters/ImagesAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/adapters/MessagesAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/adapters/MessagesAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/adapters/NotificationsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/adapters/NotificationsAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/adapters/PartOrdersAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/adapters/PartOrdersAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/adapters/PartsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/adapters/PartsAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/callbacks/CarCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/callbacks/CarCallback.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/callbacks/ChatListCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/callbacks/ChatListCallback.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/callbacks/PartCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/callbacks/PartCallback.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/commoners/AppUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/commoners/AppUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/commoners/Automart.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/commoners/Automart.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/commoners/BaseActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/commoners/BaseActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/commoners/BaseFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/commoners/BaseFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/commoners/ChartLabelsFormatter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/commoners/ChartLabelsFormatter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/commoners/K.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/commoners/K.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/fragments/ChatFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/fragments/ChatFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/fragments/HomeFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/fragments/HomeFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/fragments/LoginFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/fragments/LoginFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/fragments/MyOrdersCarsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/fragments/MyOrdersCarsFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/fragments/MyOrdersPartsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/fragments/MyOrdersPartsFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/fragments/MyUploadsCarsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/fragments/MyUploadsCarsFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/fragments/MyUploadsPartsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/fragments/MyUploadsPartsFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/fragments/NotificationsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/fragments/NotificationsFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/fragments/OrdersCarsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/fragments/OrdersCarsFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/fragments/OrdersPartsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/fragments/OrdersPartsFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/fragments/PartsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/fragments/PartsFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/fragments/RegisterFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/fragments/RegisterFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/fragments/SearchFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/fragments/SearchFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/models/Booking.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/models/Booking.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/models/Car.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/models/Car.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/models/Chat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/models/Chat.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/models/Message.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/models/Message.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/models/Notification.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/models/Notification.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/models/Part.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/models/Part.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/models/PartOrder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/models/PartOrder.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/models/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/models/User.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/utils/BindingAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/utils/BindingAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/utils/Connectivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/utils/Connectivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/utils/GifSizeFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/utils/GifSizeFilter.java -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/utils/MyGlideEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/utils/MyGlideEngine.java -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/utils/PagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/utils/PagerAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/utils/PreferenceHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/utils/PreferenceHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/utils/RecyclerFormatter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/utils/RecyclerFormatter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/utils/TimeFormatter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/utils/TimeFormatter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gelostech/automart/utils/ViewExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/java/com/gelostech/automart/utils/ViewExtensions.kt -------------------------------------------------------------------------------- /app/src/main/res/anim/enter_a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/anim/enter_a.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/enter_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/anim/enter_b.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/exit_a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/anim/exit_a.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/exit_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/anim/exit_b.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable-hdpi/ic_down.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable-mdpi/ic_down.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable-xhdpi/ic_down.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable-xxhdpi/ic_down.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/bb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/bb.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/benz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/benz.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/bl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/bl.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/brake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/brake.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_solid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/button_solid.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/chat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/chat.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/chat_me.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/chat_me.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/collapsing_toolbar_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/collapsing_toolbar_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/door.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/door.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/et_background_plain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/et_background_plain.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/fit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/fit.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/five.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/five.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/flat_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/flat_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/forester.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/forester.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/four.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/four.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/fozzy.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/fozzy.JPG -------------------------------------------------------------------------------- /app/src/main/res/drawable/hilux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/hilux.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/hl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/hl.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_arrow_drop_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/ic_arrow_drop_down.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nze.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/nze.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/one.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/person.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/premio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/premio.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/recycler_divider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/recycler_divider.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/rounded_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_orange_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/rounded_orange_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/simple_recycler_divider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/simple_recycler_divider.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/six.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/six.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/spinner_drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/spinner_drawable.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/three.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/three.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/two.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/windscreen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/windscreen.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/wire_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/wire_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/wire_drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/wire_drawable.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/wire_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/drawable/wire_frame.xml -------------------------------------------------------------------------------- /app/src/main/res/font/dosis.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/font/dosis.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/dosis_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/font/dosis_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/exo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/font/exo.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/exo_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/font/exo_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_add_car.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/activity_add_car.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_add_part.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/activity_add_part.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_auth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/activity_auth.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_car.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/activity_car.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_chat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/activity_chat.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_my_orders.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/activity_my_orders.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_my_uploads.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/activity_my_uploads.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_orders.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/activity_orders.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_part.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/activity_part.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_sales.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/activity_sales.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/activity_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_watchlist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/activity_watchlist.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_bookings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/fragment_bookings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_chat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/fragment_chat.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/fragment_home.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/fragment_login.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_my_bookings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/fragment_my_bookings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_my_cars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/fragment_my_cars.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_my_parts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/fragment_my_parts.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_my_parts_orders.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/fragment_my_parts_orders.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/fragment_notifications.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_parts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/fragment_parts.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_parts_orders.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/fragment_parts_orders.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_register.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/fragment_register.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/fragment_search.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_booking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/item_booking.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_booking_shimmer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/item_booking_shimmer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_car.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/item_car.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_car_shimmer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/item_car_shimmer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_chat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/item_chat.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_chat_list_shimmer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/item_chat_list_shimmer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/item_details.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_features.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/item_features.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/item_image.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_message.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/item_message.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_message_me.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/item_message_me.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_notif.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/item_notif.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_notif_shimmer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/item_notif_shimmer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_order.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/item_order.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_part.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/item_part.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_part_shimmer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/item_part_shimmer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/make_booking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/make_booking.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/make_order.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/layout/make_order.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_part.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/menu/menu_part.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/gelostech/automart/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/app/src/test/java/com/gelostech/automart/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/gradlew.bat -------------------------------------------------------------------------------- /screenshots/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/screenshots/five.png -------------------------------------------------------------------------------- /screenshots/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/screenshots/four.png -------------------------------------------------------------------------------- /screenshots/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/screenshots/one.png -------------------------------------------------------------------------------- /screenshots/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/screenshots/seven.png -------------------------------------------------------------------------------- /screenshots/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/screenshots/six.png -------------------------------------------------------------------------------- /screenshots/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/screenshots/three.png -------------------------------------------------------------------------------- /screenshots/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirgei/Automart/HEAD/screenshots/two.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------