├── app ├── .gitignore ├── app-release.apk ├── src │ ├── main │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ ├── ic_add.png │ │ │ │ ├── ic_check.png │ │ │ │ ├── ic_error.png │ │ │ │ ├── ic_save.png │ │ │ │ ├── ic_file_upload.png │ │ │ │ ├── ic_account_circle.png │ │ │ │ ├── ic_action_database.png │ │ │ │ ├── ic_play_for_work.png │ │ │ │ ├── ic_system_update_alt.png │ │ │ │ └── ic_action_calendar_day.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── ic_add.png │ │ │ │ ├── ic_check.png │ │ │ │ ├── ic_error.png │ │ │ │ ├── ic_save.png │ │ │ │ ├── ic_file_upload.png │ │ │ │ ├── ic_account_circle.png │ │ │ │ ├── ic_action_database.png │ │ │ │ ├── ic_play_for_work.png │ │ │ │ ├── ic_system_update_alt.png │ │ │ │ └── ic_action_calendar_day.png │ │ │ ├── drawable-xhdpi │ │ │ │ ├── ic_add.png │ │ │ │ ├── ic_save.png │ │ │ │ ├── ic_check.png │ │ │ │ ├── ic_error.png │ │ │ │ ├── ic_file_upload.png │ │ │ │ ├── ic_account_circle.png │ │ │ │ ├── ic_play_for_work.png │ │ │ │ ├── ic_action_database.png │ │ │ │ ├── ic_action_calendar_day.png │ │ │ │ └── ic_system_update_alt.png │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── ic_add.png │ │ │ │ ├── ic_check.png │ │ │ │ ├── ic_error.png │ │ │ │ ├── ic_save.png │ │ │ │ ├── ic_file_upload.png │ │ │ │ ├── ic_play_for_work.png │ │ │ │ ├── ic_account_circle.png │ │ │ │ ├── ic_action_database.png │ │ │ │ ├── ic_system_update_alt.png │ │ │ │ └── ic_action_calendar_day.png │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── ic_add.png │ │ │ │ ├── ic_save.png │ │ │ │ ├── ic_check.png │ │ │ │ ├── ic_error.png │ │ │ │ ├── ic_file_upload.png │ │ │ │ ├── ic_account_circle.png │ │ │ │ ├── ic_play_for_work.png │ │ │ │ ├── ic_action_database.png │ │ │ │ ├── ic_system_update_alt.png │ │ │ │ └── ic_action_calendar_day.png │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── values │ │ │ │ ├── ids.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── drawables.xml │ │ │ │ ├── styles.xml │ │ │ │ └── strings.xml │ │ │ ├── xml │ │ │ │ └── file_paths.xml │ │ │ ├── drawable │ │ │ │ ├── border.xml │ │ │ │ └── side_nav_bar.xml │ │ │ ├── drawable-v21 │ │ │ │ ├── ic_menu_send.xml │ │ │ │ ├── ic_menu_slideshow.xml │ │ │ │ ├── ic_menu_gallery.xml │ │ │ │ ├── ic_menu_manage.xml │ │ │ │ ├── ic_menu_camera.xml │ │ │ │ └── ic_menu_share.xml │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ ├── menu │ │ │ │ ├── main.xml │ │ │ │ └── activity_main_drawer.xml │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ ├── layout │ │ │ │ ├── fragment_next_rents.xml │ │ │ │ ├── fragment_blank.xml │ │ │ │ ├── fragment_order_car_available.xml │ │ │ │ ├── activity_main.xml │ │ │ │ ├── item_photo.xml │ │ │ │ ├── fragment_my_account.xml │ │ │ │ ├── content_main.xml │ │ │ │ ├── nav_header_main.xml │ │ │ │ ├── item_car.xml │ │ │ │ ├── fragment_manage_db.xml │ │ │ │ ├── app_bar_main.xml │ │ │ │ ├── fragment_order.xml │ │ │ │ ├── fragment_order_dates.xml │ │ │ │ ├── fragment_order_details.xml │ │ │ │ ├── fragment_cars_list.xml │ │ │ │ ├── item_rent.xml │ │ │ │ ├── fragment_customer_details_edit.xml │ │ │ │ ├── fragment_add_car.xml │ │ │ │ ├── fragment_add_tarrif.xml │ │ │ │ └── activity_car.xml │ │ │ └── values-iw │ │ │ │ └── strings.xml │ │ ├── java │ │ │ └── rothkoff │ │ │ │ └── baruch │ │ │ │ └── cars │ │ │ │ ├── carslist │ │ │ │ ├── ForCarsPager.java │ │ │ │ └── CarsPagerAdapter.java │ │ │ │ ├── ForUseMainActivity.java │ │ │ │ ├── TarrifsAdapter.java │ │ │ │ ├── MyFragment.java │ │ │ │ ├── RentsAdapter.java │ │ │ │ ├── CarHolder.java │ │ │ │ ├── RentHolder.java │ │ │ │ ├── order │ │ │ │ ├── OrderDetailsFragment.java │ │ │ │ ├── CarAvailableFragment.java │ │ │ │ ├── MainOrderFragment.java │ │ │ │ └── DatesFragment.java │ │ │ │ ├── PhotosAdapter.java │ │ │ │ ├── Tarrif.java │ │ │ │ ├── MyAccountFragment.java │ │ │ │ ├── UploadService.java │ │ │ │ ├── PhotoHolder.java │ │ │ │ ├── ManageDBFragment.java │ │ │ │ ├── B.java │ │ │ │ ├── BlankFragment.java │ │ │ │ ├── Customer.java │ │ │ │ ├── NextRentsFragment.java │ │ │ │ ├── OrderFragment.java │ │ │ │ ├── Rent.java │ │ │ │ ├── Car.java │ │ │ │ ├── AddCarFragment.java │ │ │ │ ├── CustomerDetailsEditFragment.java │ │ │ │ ├── AddTarrifFragment.java │ │ │ │ └── MyUploadService.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── rothkoff │ │ │ └── baruch │ │ │ └── cars │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── rothkoff │ │ └── baruch │ │ └── cars │ │ └── ApplicationTest.java ├── proguard-rules.pro ├── build.gradle └── google-services.json ├── settings.gradle ├── .gitattributes ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .idea ├── copyright │ └── profiles_settings.xml ├── vcs.xml ├── modules.xml ├── runConfigurations.xml ├── compiler.xml ├── gradle.xml └── misc.xml ├── .gitignore ├── bitbucket-pipelines.yml ├── gradle.properties ├── gradlew.bat └── gradlew /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /app/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/app-release.apk -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.java filter=lfs diff=lfs merge=lfs -text 2 | *.xml filter=lfs diff=lfs merge=lfs -text 3 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-hdpi/ic_add.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-hdpi/ic_check.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-hdpi/ic_error.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-hdpi/ic_save.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-mdpi/ic_add.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-mdpi/ic_check.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-mdpi/ic_error.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-mdpi/ic_save.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xhdpi/ic_add.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xhdpi/ic_save.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xxhdpi/ic_add.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xhdpi/ic_check.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xhdpi/ic_error.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xxhdpi/ic_check.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xxhdpi/ic_error.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xxhdpi/ic_save.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xxxhdpi/ic_add.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xxxhdpi/ic_save.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xxxhdpi/ic_check.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xxxhdpi/ic_error.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_file_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-hdpi/ic_file_upload.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_file_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-mdpi/ic_file_upload.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_file_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xhdpi/ic_file_upload.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_account_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-hdpi/ic_account_circle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-hdpi/ic_action_database.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_play_for_work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-hdpi/ic_play_for_work.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_account_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-mdpi/ic_account_circle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-mdpi/ic_action_database.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_play_for_work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-mdpi/ic_play_for_work.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_account_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xhdpi/ic_account_circle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_play_for_work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xhdpi/ic_play_for_work.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_file_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xxhdpi/ic_file_upload.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_play_for_work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xxhdpi/ic_play_for_work.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_file_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xxxhdpi/ic_file_upload.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_system_update_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-hdpi/ic_system_update_alt.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_system_update_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-mdpi/ic_system_update_alt.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xhdpi/ic_action_database.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_account_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xxhdpi/ic_account_circle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xxhdpi/ic_action_database.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_account_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xxxhdpi/ic_account_circle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_play_for_work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xxxhdpi/ic_play_for_work.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_calendar_day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-hdpi/ic_action_calendar_day.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_calendar_day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-mdpi/ic_action_calendar_day.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_calendar_day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xhdpi/ic_action_calendar_day.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_system_update_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xhdpi/ic_system_update_alt.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_system_update_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xxhdpi/ic_system_update_alt.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_action_database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xxxhdpi/ic_action_database.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_system_update_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xxxhdpi/ic_system_update_alt.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_calendar_day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xxhdpi/ic_action_calendar_day.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_action_calendar_day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baruchiro/Cars/master/app/src/main/res/drawable-xxxhdpi/ic_action_calendar_day.png -------------------------------------------------------------------------------- /app/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Add Tarrif 4 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sun Sep 04 22:22:39 IDT 2016 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/border.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- 1 | 3 | 9 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_send.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /app/src/test/java/rothkoff/baruch/cars/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package rothkoff.baruch.cars; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /app/src/main/java/rothkoff/baruch/cars/carslist/ForCarsPager.java: -------------------------------------------------------------------------------- 1 | package rothkoff.baruch.cars.carslist; 2 | 3 | import java.util.Calendar; 4 | 5 | import rothkoff.baruch.cars.Car; 6 | import rothkoff.baruch.cars.Tarrif; 7 | 8 | public interface ForCarsPager { 9 | 10 | Tarrif getTarrif(String uid); 11 | void setSelectedCar(Car car); 12 | 13 | Calendar getDateStart(); 14 | 15 | Calendar getDateEnd(); 16 | } 17 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_next_rents.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/androidTest/java/rothkoff/baruch/cars/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package rothkoff.baruch.cars; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /bitbucket-pipelines.yml: -------------------------------------------------------------------------------- 1 | # This is a sample build configuration for Gradle. 2 | # Check our guides at https://confluence.atlassian.com/x/VYk8Lw for more examples. 3 | # Only use spaces to indent your .yml configuration. 4 | # ----- 5 | # You can specify a custom docker image from Docker Hub as your build environment. 6 | image: java:8 7 | 8 | pipelines: 9 | default: 10 | - step: 11 | script: # Modify the commands below to build your repository. 12 | - ./gradlew build -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 160dp 5 | 6 | 16dp 7 | 16dp 8 | 16dp 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_slideshow.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_gallery.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_manage.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_blank.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/src/main/res/values/drawables.xml: -------------------------------------------------------------------------------- 1 | 2 | @android:drawable/ic_menu_camera 3 | @android:drawable/ic_menu_gallery 4 | @android:drawable/ic_menu_slideshow 5 | @android:drawable/ic_menu_manage 6 | @android:drawable/ic_menu_share 7 | @android:drawable/ic_menu_send 8 | 9 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/java/rothkoff/baruch/cars/ForUseMainActivity.java: -------------------------------------------------------------------------------- 1 | package rothkoff.baruch.cars; 2 | 3 | import android.content.Context; 4 | import android.support.v4.app.Fragment; 5 | import android.view.Menu; 6 | 7 | import java.util.List; 8 | 9 | public interface ForUseMainActivity { 10 | void ReplaceFragment(Fragment... fragments); 11 | 12 | List getTarrifsList(); 13 | List getTarrifUids(); 14 | String getTarrifName(String uid); 15 | Tarrif getTarrifByUid(String uid); 16 | 17 | String getString(int resID); 18 | 19 | Context getContext(); 20 | 21 | Menu getNavigationViewMenu(); 22 | } 23 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_camera.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in C:\Users\baruc\AppData\Local\Android\Sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_share.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_order_car_available.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 13 | 17 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 15 | 16 |