├── .gitignore ├── .idea ├── .gitignore ├── .name ├── compiler.xml ├── gradle.xml ├── jarRepositories.xml ├── misc.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── google-services.json ├── proguard-rules.pro └── src │ ├── admin │ └── java │ │ └── br │ │ └── com │ │ └── douglasmotta │ │ └── whitelabeltutorial │ │ └── config │ │ └── ConfigImpl.kt │ ├── androidTest │ └── java │ │ └── br │ │ └── com │ │ └── douglasmotta │ │ └── whitelabeltutorial │ │ └── ExampleInstrumentedTest.kt │ ├── bike │ └── res │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ ├── bikeAdmin │ ├── ic_launcher-playstore.png │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_background.xml │ │ ├── drawable │ │ └── ic_launcher_foreground.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 │ ├── bikeClient │ ├── ic_launcher-playstore.png │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_background.xml │ │ ├── drawable │ │ └── ic_launcher_foreground.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 │ ├── car │ └── res │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ ├── carAdmin │ ├── ic_launcher-playstore.png │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_background.xml │ │ ├── drawable │ │ └── ic_launcher_foreground.xml │ │ └── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ ├── carClient │ ├── ic_launcher-playstore.png │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_background.xml │ │ ├── drawable │ │ └── ic_launcher_foreground.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 │ ├── client │ └── java │ │ └── br │ │ └── com │ │ └── douglasmotta │ │ └── whitelabeltutorial │ │ └── config │ │ └── ConfigImpl.kt │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ │ └── br │ │ │ └── com │ │ │ └── douglasmotta │ │ │ └── whitelabeltutorial │ │ │ ├── MyApplication.kt │ │ │ ├── config │ │ │ ├── Config.kt │ │ │ └── di │ │ │ │ └── ConfigModule.kt │ │ │ ├── data │ │ │ ├── FirebaseProductDataSource.kt │ │ │ ├── ProductDataSource.kt │ │ │ ├── ProductRepository.kt │ │ │ └── di │ │ │ │ ├── DataSourceModule.kt │ │ │ │ └── FirebaseModule.kt │ │ │ ├── domain │ │ │ ├── model │ │ │ │ └── Product.kt │ │ │ └── usecase │ │ │ │ ├── CreateProductUseCase.kt │ │ │ │ ├── CreateProductUseCaseImpl.kt │ │ │ │ ├── GetProductUseCaseImpl.kt │ │ │ │ ├── GetProductsUseCase.kt │ │ │ │ ├── UploadProductImageUseCase.kt │ │ │ │ ├── UploadProductImageUseCaseImpl.kt │ │ │ │ └── di │ │ │ │ └── DomainModule.kt │ │ │ ├── ui │ │ │ ├── MainActivity.kt │ │ │ ├── addproduct │ │ │ │ ├── AddProductFragment.kt │ │ │ │ └── AddProductViewModel.kt │ │ │ └── products │ │ │ │ ├── ProductsAdapter.kt │ │ │ │ ├── ProductsFragment.kt │ │ │ │ └── ProductsViewModel.kt │ │ │ └── util │ │ │ ├── Constants.kt │ │ │ ├── CurrencyExtension.kt │ │ │ └── CurrencyTextWatcher.kt │ └── res │ │ ├── drawable │ │ ├── background_product_image.xml │ │ ├── background_product_image_error.xml │ │ ├── background_product_item.xml │ │ ├── ic_add.xml │ │ ├── ic_add_a_photo.xml │ │ └── ic_launcher_foreground.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── add_product_fragment.xml │ │ ├── fragment_products.xml │ │ └── item_product.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 │ │ ├── navigation │ │ └── nav_main.xml │ │ └── values │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ └── strings.xml │ └── test │ └── java │ └── br │ └── com │ └── douglasmotta │ └── whitelabeltutorial │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | White Label Tutorial -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/google-services.json -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/admin/java/br/com/douglasmotta/whitelabeltutorial/config/ConfigImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/admin/java/br/com/douglasmotta/whitelabeltutorial/config/ConfigImpl.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/br/com/douglasmotta/whitelabeltutorial/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/androidTest/java/br/com/douglasmotta/whitelabeltutorial/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/bike/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bike/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/bike/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bike/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/bike/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bike/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/bikeAdmin/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeAdmin/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/bikeAdmin/res/drawable-v24/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeAdmin/res/drawable-v24/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/bikeAdmin/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeAdmin/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/bikeAdmin/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeAdmin/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/bikeAdmin/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeAdmin/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/bikeAdmin/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeAdmin/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/bikeAdmin/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeAdmin/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/bikeAdmin/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeAdmin/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/bikeAdmin/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeAdmin/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/bikeAdmin/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeAdmin/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/bikeAdmin/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeAdmin/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/bikeAdmin/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeAdmin/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/bikeAdmin/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeAdmin/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/bikeAdmin/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeAdmin/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/bikeAdmin/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeAdmin/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/bikeClient/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeClient/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/bikeClient/res/drawable-v24/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeClient/res/drawable-v24/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/bikeClient/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeClient/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/bikeClient/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeClient/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/bikeClient/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeClient/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/bikeClient/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeClient/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/bikeClient/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeClient/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/bikeClient/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeClient/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/bikeClient/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeClient/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/bikeClient/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeClient/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/bikeClient/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeClient/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/bikeClient/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeClient/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/bikeClient/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeClient/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/bikeClient/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeClient/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/bikeClient/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/bikeClient/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/car/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/car/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/car/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/car/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/car/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/car/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/carAdmin/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/carAdmin/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/carAdmin/res/drawable-v24/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/carAdmin/res/drawable-v24/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/carAdmin/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/carAdmin/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/carAdmin/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/carAdmin/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/carAdmin/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/carAdmin/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/carClient/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/carClient/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/carClient/res/drawable-v24/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/carClient/res/drawable-v24/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/carClient/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/carClient/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/carClient/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/carClient/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/carClient/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/carClient/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/carClient/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/carClient/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/carClient/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/carClient/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/carClient/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/carClient/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/carClient/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/carClient/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/carClient/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/carClient/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/carClient/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/carClient/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/carClient/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/carClient/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/carClient/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/carClient/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/carClient/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/carClient/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/carClient/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/carClient/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/client/java/br/com/douglasmotta/whitelabeltutorial/config/ConfigImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/client/java/br/com/douglasmotta/whitelabeltutorial/config/ConfigImpl.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/MyApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/MyApplication.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/config/Config.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/config/Config.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/config/di/ConfigModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/config/di/ConfigModule.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/data/FirebaseProductDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/data/FirebaseProductDataSource.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/data/ProductDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/data/ProductDataSource.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/data/ProductRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/data/ProductRepository.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/data/di/DataSourceModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/data/di/DataSourceModule.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/data/di/FirebaseModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/data/di/FirebaseModule.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/domain/model/Product.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/domain/model/Product.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/domain/usecase/CreateProductUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/domain/usecase/CreateProductUseCase.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/domain/usecase/CreateProductUseCaseImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/domain/usecase/CreateProductUseCaseImpl.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/domain/usecase/GetProductUseCaseImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/domain/usecase/GetProductUseCaseImpl.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/domain/usecase/GetProductsUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/domain/usecase/GetProductsUseCase.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/domain/usecase/UploadProductImageUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/domain/usecase/UploadProductImageUseCase.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/domain/usecase/UploadProductImageUseCaseImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/domain/usecase/UploadProductImageUseCaseImpl.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/domain/usecase/di/DomainModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/domain/usecase/di/DomainModule.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/ui/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/ui/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/ui/addproduct/AddProductFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/ui/addproduct/AddProductFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/ui/addproduct/AddProductViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/ui/addproduct/AddProductViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/ui/products/ProductsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/ui/products/ProductsAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/ui/products/ProductsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/ui/products/ProductsFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/ui/products/ProductsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/ui/products/ProductsViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/util/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/util/Constants.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/util/CurrencyExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/util/CurrencyExtension.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/douglasmotta/whitelabeltutorial/util/CurrencyTextWatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/java/br/com/douglasmotta/whitelabeltutorial/util/CurrencyTextWatcher.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_product_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/drawable/background_product_image.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_product_image_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/drawable/background_product_image_error.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_product_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/drawable/background_product_item.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/drawable/ic_add.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_add_a_photo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/drawable/ic_add_a_photo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/add_product_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/layout/add_product_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_products.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/layout/fragment_products.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_product.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/layout/item_product.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/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/douglasramalho/white-label-firebase-tutorial/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/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/navigation/nav_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/navigation/nav_main.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/test/java/br/com/douglasmotta/whitelabeltutorial/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/app/src/test/java/br/com/douglasmotta/whitelabeltutorial/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasramalho/white-label-firebase-tutorial/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "White Label Tutorial" 2 | include ':app' 3 | --------------------------------------------------------------------------------