├── .DS_Store ├── .gitignore ├── README.md ├── TestMvp ├── .gitignore ├── .idea │ ├── codeStyles │ │ ├── Project.xml │ │ └── codeStyleConfig.xml │ ├── gradle.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── basefy │ │ │ └── testmvp │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── basefy │ │ │ │ └── testmvp │ │ │ │ ├── Category │ │ │ │ ├── data │ │ │ │ │ ├── api │ │ │ │ │ │ └── CategoryServices.kt │ │ │ │ │ └── repository │ │ │ │ │ │ └── CategoryRepositoryImpl.kt │ │ │ │ └── domain │ │ │ │ │ ├── mapper │ │ │ │ │ └── CategoryMapper.kt │ │ │ │ │ ├── repository │ │ │ │ │ └── CategoryRepository.kt │ │ │ │ │ └── usecase │ │ │ │ │ └── CategoryUseCase.kt │ │ │ │ ├── Home │ │ │ │ ├── data │ │ │ │ │ ├── api │ │ │ │ │ │ └── HomeServices.kt │ │ │ │ │ └── repository │ │ │ │ │ │ └── HomeRepositoryImpl.kt │ │ │ │ └── domain │ │ │ │ │ ├── mapper │ │ │ │ │ └── HomeMapper.kt │ │ │ │ │ ├── repository │ │ │ │ │ └── HomeRepository.kt │ │ │ │ │ └── usecase │ │ │ │ │ └── HomeUseCase.kt │ │ │ │ ├── Komut │ │ │ │ ├── data │ │ │ │ │ ├── api │ │ │ │ │ │ └── KomutServices.kt │ │ │ │ │ └── repository │ │ │ │ │ │ └── KomutRepositoryImpl.kt │ │ │ │ └── domain │ │ │ │ │ ├── mapper │ │ │ │ │ └── KomutMapper.kt │ │ │ │ │ ├── repository │ │ │ │ │ └── KomutRepository.kt │ │ │ │ │ └── usecase │ │ │ │ │ └── KomutUseCase.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── TestApp.kt │ │ │ │ ├── di │ │ │ │ ├── components │ │ │ │ │ └── ApplicationComponent.kt │ │ │ │ ├── modules │ │ │ │ │ ├── AppModule.kt │ │ │ │ │ ├── ServicesModules.kt │ │ │ │ │ ├── ViewInjectorModules.kt │ │ │ │ │ ├── category_module │ │ │ │ │ │ └── CategoryModule.kt │ │ │ │ │ ├── home_module │ │ │ │ │ │ └── HomeModule.kt │ │ │ │ │ ├── komut_module │ │ │ │ │ │ └── KomutModule.kt │ │ │ │ │ └── presenter_module │ │ │ │ │ │ └── PresenterModule.kt │ │ │ │ ├── qualifier │ │ │ │ │ ├── ActivityContext.kt │ │ │ │ │ └── ApplicationContext.kt │ │ │ │ └── scopes │ │ │ │ │ └── ActivityScope.kt │ │ │ │ └── ui │ │ │ │ ├── base │ │ │ │ ├── BaseActivity.kt │ │ │ │ ├── BaseFragment.kt │ │ │ │ ├── BasePresenter.kt │ │ │ │ ├── BaseResponseCallback.kt │ │ │ │ ├── BaseServicesImp.kt │ │ │ │ ├── DialogCallback.java │ │ │ │ ├── MvpPresenter.kt │ │ │ │ └── MvpView.kt │ │ │ │ ├── category │ │ │ │ ├── CategoryActivity.kt │ │ │ │ ├── CategoryContract.kt │ │ │ │ └── CategoryPresenter.kt │ │ │ │ ├── command │ │ │ │ ├── CommandActivity.kt │ │ │ │ ├── CommandContract.kt │ │ │ │ └── CommandPresenter.kt │ │ │ │ ├── home │ │ │ │ ├── HomeActivity.kt │ │ │ │ ├── HomeContract.kt │ │ │ │ └── HomePresenter.kt │ │ │ │ └── komut │ │ │ │ ├── KomutActivity.kt │ │ │ │ ├── KomutContract.kt │ │ │ │ └── KomutPresenter.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_category.xml │ │ │ ├── activity_command.xml │ │ │ └── activity_main.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 │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── basefy │ │ └── testmvp │ │ └── ExampleUnitTest.kt ├── build.gradle ├── dependencies.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── TestMvvm ├── .gitignore ├── .idea │ ├── codeStyles │ │ ├── Project.xml │ │ └── codeStyleConfig.xml │ ├── gradle.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── hsmnzaydn │ │ │ └── testmvvm │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── hsmnzaydn │ │ │ │ └── testmvvm │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── TestMvvmApp.kt │ │ │ │ ├── base │ │ │ │ ├── BaseActivity.kt │ │ │ │ ├── BaseInterfaces.kt │ │ │ │ ├── BaseResponseCallback.kt │ │ │ │ └── BaseViewModel.kt │ │ │ │ ├── di │ │ │ │ ├── ViewModelFactory.kt │ │ │ │ ├── ViewModelKey.kt │ │ │ │ ├── components │ │ │ │ │ └── ApplicationComponent.kt │ │ │ │ └── modules │ │ │ │ │ ├── AppModule.kt │ │ │ │ │ ├── NetworkModule.kt │ │ │ │ │ ├── ViewInjectorModules.kt │ │ │ │ │ └── ViewModule.kt │ │ │ │ ├── feature_mvp_mvvm_generator │ │ │ │ ├── .gitignore │ │ │ │ ├── feature_creator │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── feature_creator.cpython-37.pyc │ │ │ │ │ │ └── feature_creator_helper.cpython-37.pyc │ │ │ │ │ ├── feature_creator.py │ │ │ │ │ └── feature_creator_helper.py │ │ │ │ ├── index.py │ │ │ │ ├── mvp_creator │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── mvp_creator.cpython-37.pyc │ │ │ │ │ │ └── mvp_creator_helper.cpython-37.pyc │ │ │ │ │ ├── mvp_creator.py │ │ │ │ │ └── mvp_creator_helper.py │ │ │ │ ├── mvvm_creator │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── mvvm_creator.cpython-37.pyc │ │ │ │ │ │ └── mvvm_creator_helper.cpython-37.pyc │ │ │ │ │ ├── mvvm_creator.py │ │ │ │ │ └── mvvm_creator_helper.py │ │ │ │ └── util │ │ │ │ │ ├── __pycache__ │ │ │ │ │ └── utility.cpython-37.pyc │ │ │ │ │ └── utility.py │ │ │ │ └── ui │ │ │ │ ├── category │ │ │ │ ├── CategoryActivity.kt │ │ │ │ └── CategoryViewModel.kt │ │ │ │ └── komut │ │ │ │ ├── KomutActivity.kt │ │ │ │ └── KomutViewModel.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_category.xml │ │ │ ├── activity_komut.xml │ │ │ └── activity_main.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 │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── hsmnzaydn │ │ └── testmvvm │ │ └── ExampleUnitTest.kt ├── build.gradle ├── dependencies.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── feature_mvp_mvvm_generator ├── .DS_Store ├── feature_creator │ ├── __pycache__ │ │ ├── feature_creator.cpython-37.pyc │ │ └── feature_creator_helper.cpython-37.pyc │ ├── clean_architecture_creator.code-workspace │ ├── feature_creator.py │ └── feature_creator_helper.py ├── index.py ├── mvp_creator │ ├── __pycache__ │ │ ├── mvp_creator.cpython-37.pyc │ │ └── mvp_creator_helper.cpython-37.pyc │ ├── mvp_creator.py │ └── mvp_creator_helper.py ├── mvvm_creator │ ├── mvvm_creator.py │ └── mvvm_creator_helper.py └── util │ ├── __pycache__ │ └── utility.cpython-37.pyc │ └── utility.py ├── img ├── .DS_Store ├── component_module.png ├── dizin.png ├── feature.png ├── feature_folder.png ├── feature_module.png ├── presenter.png ├── presenter_module.png ├── presenter_view.png ├── view_injector_presenter.png ├── view_injector_viewmodel.png ├── view_module.png ├── view_module_injector.png └── view_module_view.png └── reads ├── ENG-README.md └── TR-README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/README.md -------------------------------------------------------------------------------- /TestMvp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/.gitignore -------------------------------------------------------------------------------- /TestMvp/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /TestMvp/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /TestMvp/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/.idea/gradle.xml -------------------------------------------------------------------------------- /TestMvp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/.idea/misc.xml -------------------------------------------------------------------------------- /TestMvp/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /TestMvp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/.idea/vcs.xml -------------------------------------------------------------------------------- /TestMvp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /TestMvp/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/build.gradle -------------------------------------------------------------------------------- /TestMvp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/proguard-rules.pro -------------------------------------------------------------------------------- /TestMvp/app/src/androidTest/java/com/basefy/testmvp/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/androidTest/java/com/basefy/testmvp/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/Category/data/api/CategoryServices.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/Category/data/api/CategoryServices.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/Category/data/repository/CategoryRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/Category/data/repository/CategoryRepositoryImpl.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/Category/domain/mapper/CategoryMapper.kt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/Category/domain/repository/CategoryRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/Category/domain/repository/CategoryRepository.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/Category/domain/usecase/CategoryUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/Category/domain/usecase/CategoryUseCase.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/Home/data/api/HomeServices.kt: -------------------------------------------------------------------------------- 1 | package com.basefy.testmvp.data.api 2 | 3 | 4 | interface HomeServices { 5 | 6 | } -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/Home/data/repository/HomeRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/Home/data/repository/HomeRepositoryImpl.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/Home/domain/mapper/HomeMapper.kt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/Home/domain/repository/HomeRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/Home/domain/repository/HomeRepository.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/Home/domain/usecase/HomeUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/Home/domain/usecase/HomeUseCase.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/Komut/data/api/KomutServices.kt: -------------------------------------------------------------------------------- 1 | package com.basefy.testmvp.data.api 2 | 3 | 4 | interface KomutServices { 5 | 6 | } -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/Komut/data/repository/KomutRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/Komut/data/repository/KomutRepositoryImpl.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/Komut/domain/mapper/KomutMapper.kt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/Komut/domain/repository/KomutRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/Komut/domain/repository/KomutRepository.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/Komut/domain/usecase/KomutUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/Komut/domain/usecase/KomutUseCase.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/MainActivity.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/TestApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/TestApp.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/di/components/ApplicationComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/di/components/ApplicationComponent.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/di/modules/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/di/modules/AppModule.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/di/modules/ServicesModules.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/di/modules/ServicesModules.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/di/modules/ViewInjectorModules.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/di/modules/ViewInjectorModules.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/di/modules/category_module/CategoryModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/di/modules/category_module/CategoryModule.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/di/modules/home_module/HomeModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/di/modules/home_module/HomeModule.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/di/modules/komut_module/KomutModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/di/modules/komut_module/KomutModule.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/di/modules/presenter_module/PresenterModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/di/modules/presenter_module/PresenterModule.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/di/qualifier/ActivityContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/di/qualifier/ActivityContext.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/di/qualifier/ApplicationContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/di/qualifier/ApplicationContext.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/di/scopes/ActivityScope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/di/scopes/ActivityScope.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/ui/base/BaseActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/ui/base/BaseActivity.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/ui/base/BaseFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/ui/base/BaseFragment.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/ui/base/BasePresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/ui/base/BasePresenter.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/ui/base/BaseResponseCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/ui/base/BaseResponseCallback.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/ui/base/BaseServicesImp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/ui/base/BaseServicesImp.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/ui/base/DialogCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/ui/base/DialogCallback.java -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/ui/base/MvpPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/ui/base/MvpPresenter.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/ui/base/MvpView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/ui/base/MvpView.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/ui/category/CategoryActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/ui/category/CategoryActivity.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/ui/category/CategoryContract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/ui/category/CategoryContract.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/ui/category/CategoryPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/ui/category/CategoryPresenter.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/ui/command/CommandActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/ui/command/CommandActivity.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/ui/command/CommandContract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/ui/command/CommandContract.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/ui/command/CommandPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/ui/command/CommandPresenter.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/ui/home/HomeActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/ui/home/HomeActivity.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/ui/home/HomeContract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/ui/home/HomeContract.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/ui/home/HomePresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/ui/home/HomePresenter.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/ui/komut/KomutActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/ui/komut/KomutActivity.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/ui/komut/KomutContract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/ui/komut/KomutContract.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/java/com/basefy/testmvp/ui/komut/KomutPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/java/com/basefy/testmvp/ui/komut/KomutPresenter.kt -------------------------------------------------------------------------------- /TestMvp/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /TestMvp/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /TestMvp/app/src/main/res/layout/activity_category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/res/layout/activity_category.xml -------------------------------------------------------------------------------- /TestMvp/app/src/main/res/layout/activity_command.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/res/layout/activity_command.xml -------------------------------------------------------------------------------- /TestMvp/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /TestMvp/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /TestMvp/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /TestMvp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TestMvp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TestMvp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /TestMvp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TestMvp/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TestMvp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TestMvp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TestMvp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TestMvp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TestMvp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TestMvp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /TestMvp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /TestMvp/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /TestMvp/app/src/test/java/com/basefy/testmvp/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/app/src/test/java/com/basefy/testmvp/ExampleUnitTest.kt -------------------------------------------------------------------------------- /TestMvp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/build.gradle -------------------------------------------------------------------------------- /TestMvp/dependencies.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/dependencies.gradle -------------------------------------------------------------------------------- /TestMvp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/gradle.properties -------------------------------------------------------------------------------- /TestMvp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /TestMvp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /TestMvp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/gradlew -------------------------------------------------------------------------------- /TestMvp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvp/gradlew.bat -------------------------------------------------------------------------------- /TestMvp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='TestMvp' 3 | -------------------------------------------------------------------------------- /TestMvvm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/.gitignore -------------------------------------------------------------------------------- /TestMvvm/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /TestMvvm/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /TestMvvm/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/.idea/gradle.xml -------------------------------------------------------------------------------- /TestMvvm/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/.idea/misc.xml -------------------------------------------------------------------------------- /TestMvvm/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /TestMvvm/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/.idea/vcs.xml -------------------------------------------------------------------------------- /TestMvvm/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /TestMvvm/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/build.gradle -------------------------------------------------------------------------------- /TestMvvm/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/proguard-rules.pro -------------------------------------------------------------------------------- /TestMvvm/app/src/androidTest/java/com/hsmnzaydn/testmvvm/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/androidTest/java/com/hsmnzaydn/testmvvm/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /TestMvvm/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/MainActivity.kt -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/TestMvvmApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/TestMvvmApp.kt -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/base/BaseActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/base/BaseActivity.kt -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/base/BaseInterfaces.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/base/BaseInterfaces.kt -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/base/BaseResponseCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/base/BaseResponseCallback.kt -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/base/BaseViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/base/BaseViewModel.kt -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/di/ViewModelFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/di/ViewModelFactory.kt -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/di/ViewModelKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/di/ViewModelKey.kt -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/di/components/ApplicationComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/di/components/ApplicationComponent.kt -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/di/modules/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/di/modules/AppModule.kt -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/di/modules/NetworkModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/di/modules/NetworkModule.kt -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/di/modules/ViewInjectorModules.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/di/modules/ViewInjectorModules.kt -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/di/modules/ViewModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/di/modules/ViewModule.kt -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/.gitignore -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/feature_creator/__pycache__/feature_creator.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/feature_creator/__pycache__/feature_creator.cpython-37.pyc -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/feature_creator/__pycache__/feature_creator_helper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/feature_creator/__pycache__/feature_creator_helper.cpython-37.pyc -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/feature_creator/feature_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/feature_creator/feature_creator.py -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/feature_creator/feature_creator_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/feature_creator/feature_creator_helper.py -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/index.py -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/mvp_creator/__pycache__/mvp_creator.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/mvp_creator/__pycache__/mvp_creator.cpython-37.pyc -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/mvp_creator/__pycache__/mvp_creator_helper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/mvp_creator/__pycache__/mvp_creator_helper.cpython-37.pyc -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/mvp_creator/mvp_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/mvp_creator/mvp_creator.py -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/mvp_creator/mvp_creator_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/mvp_creator/mvp_creator_helper.py -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/mvvm_creator/__pycache__/mvvm_creator.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/mvvm_creator/__pycache__/mvvm_creator.cpython-37.pyc -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/mvvm_creator/__pycache__/mvvm_creator_helper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/mvvm_creator/__pycache__/mvvm_creator_helper.cpython-37.pyc -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/mvvm_creator/mvvm_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/mvvm_creator/mvvm_creator.py -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/mvvm_creator/mvvm_creator_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/mvvm_creator/mvvm_creator_helper.py -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/util/__pycache__/utility.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/util/__pycache__/utility.cpython-37.pyc -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/util/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/feature_mvp_mvvm_generator/util/utility.py -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/ui/category/CategoryActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/ui/category/CategoryActivity.kt -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/ui/category/CategoryViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/ui/category/CategoryViewModel.kt -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/ui/komut/KomutActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/ui/komut/KomutActivity.kt -------------------------------------------------------------------------------- /TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/ui/komut/KomutViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/java/com/hsmnzaydn/testmvvm/ui/komut/KomutViewModel.kt -------------------------------------------------------------------------------- /TestMvvm/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /TestMvvm/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /TestMvvm/app/src/main/res/layout/activity_category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/res/layout/activity_category.xml -------------------------------------------------------------------------------- /TestMvvm/app/src/main/res/layout/activity_komut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/res/layout/activity_komut.xml -------------------------------------------------------------------------------- /TestMvvm/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /TestMvvm/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /TestMvvm/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /TestMvvm/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TestMvvm/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TestMvvm/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /TestMvvm/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TestMvvm/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TestMvvm/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TestMvvm/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TestMvvm/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TestMvvm/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TestMvvm/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TestMvvm/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /TestMvvm/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /TestMvvm/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /TestMvvm/app/src/test/java/com/hsmnzaydn/testmvvm/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/app/src/test/java/com/hsmnzaydn/testmvvm/ExampleUnitTest.kt -------------------------------------------------------------------------------- /TestMvvm/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/build.gradle -------------------------------------------------------------------------------- /TestMvvm/dependencies.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/dependencies.gradle -------------------------------------------------------------------------------- /TestMvvm/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/gradle.properties -------------------------------------------------------------------------------- /TestMvvm/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /TestMvvm/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /TestMvvm/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/gradlew -------------------------------------------------------------------------------- /TestMvvm/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/TestMvvm/gradlew.bat -------------------------------------------------------------------------------- /TestMvvm/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='TestMvvm' 3 | -------------------------------------------------------------------------------- /feature_mvp_mvvm_generator/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/feature_mvp_mvvm_generator/.DS_Store -------------------------------------------------------------------------------- /feature_mvp_mvvm_generator/feature_creator/__pycache__/feature_creator.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/feature_mvp_mvvm_generator/feature_creator/__pycache__/feature_creator.cpython-37.pyc -------------------------------------------------------------------------------- /feature_mvp_mvvm_generator/feature_creator/__pycache__/feature_creator_helper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/feature_mvp_mvvm_generator/feature_creator/__pycache__/feature_creator_helper.cpython-37.pyc -------------------------------------------------------------------------------- /feature_mvp_mvvm_generator/feature_creator/clean_architecture_creator.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/feature_mvp_mvvm_generator/feature_creator/clean_architecture_creator.code-workspace -------------------------------------------------------------------------------- /feature_mvp_mvvm_generator/feature_creator/feature_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/feature_mvp_mvvm_generator/feature_creator/feature_creator.py -------------------------------------------------------------------------------- /feature_mvp_mvvm_generator/feature_creator/feature_creator_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/feature_mvp_mvvm_generator/feature_creator/feature_creator_helper.py -------------------------------------------------------------------------------- /feature_mvp_mvvm_generator/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/feature_mvp_mvvm_generator/index.py -------------------------------------------------------------------------------- /feature_mvp_mvvm_generator/mvp_creator/__pycache__/mvp_creator.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/feature_mvp_mvvm_generator/mvp_creator/__pycache__/mvp_creator.cpython-37.pyc -------------------------------------------------------------------------------- /feature_mvp_mvvm_generator/mvp_creator/__pycache__/mvp_creator_helper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/feature_mvp_mvvm_generator/mvp_creator/__pycache__/mvp_creator_helper.cpython-37.pyc -------------------------------------------------------------------------------- /feature_mvp_mvvm_generator/mvp_creator/mvp_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/feature_mvp_mvvm_generator/mvp_creator/mvp_creator.py -------------------------------------------------------------------------------- /feature_mvp_mvvm_generator/mvp_creator/mvp_creator_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/feature_mvp_mvvm_generator/mvp_creator/mvp_creator_helper.py -------------------------------------------------------------------------------- /feature_mvp_mvvm_generator/mvvm_creator/mvvm_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/feature_mvp_mvvm_generator/mvvm_creator/mvvm_creator.py -------------------------------------------------------------------------------- /feature_mvp_mvvm_generator/mvvm_creator/mvvm_creator_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/feature_mvp_mvvm_generator/mvvm_creator/mvvm_creator_helper.py -------------------------------------------------------------------------------- /feature_mvp_mvvm_generator/util/__pycache__/utility.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/feature_mvp_mvvm_generator/util/__pycache__/utility.cpython-37.pyc -------------------------------------------------------------------------------- /feature_mvp_mvvm_generator/util/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/feature_mvp_mvvm_generator/util/utility.py -------------------------------------------------------------------------------- /img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/img/.DS_Store -------------------------------------------------------------------------------- /img/component_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/img/component_module.png -------------------------------------------------------------------------------- /img/dizin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/img/dizin.png -------------------------------------------------------------------------------- /img/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/img/feature.png -------------------------------------------------------------------------------- /img/feature_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/img/feature_folder.png -------------------------------------------------------------------------------- /img/feature_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/img/feature_module.png -------------------------------------------------------------------------------- /img/presenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/img/presenter.png -------------------------------------------------------------------------------- /img/presenter_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/img/presenter_module.png -------------------------------------------------------------------------------- /img/presenter_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/img/presenter_view.png -------------------------------------------------------------------------------- /img/view_injector_presenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/img/view_injector_presenter.png -------------------------------------------------------------------------------- /img/view_injector_viewmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/img/view_injector_viewmodel.png -------------------------------------------------------------------------------- /img/view_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/img/view_module.png -------------------------------------------------------------------------------- /img/view_module_injector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/img/view_module_injector.png -------------------------------------------------------------------------------- /img/view_module_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/img/view_module_view.png -------------------------------------------------------------------------------- /reads/ENG-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/reads/ENG-README.md -------------------------------------------------------------------------------- /reads/TR-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsmnzaydn/android-clean-feature-creator/HEAD/reads/TR-README.md --------------------------------------------------------------------------------