Skip to content

Latest commit

 

History

History
47 lines (41 loc) · 1.51 KB

README.md

File metadata and controls

47 lines (41 loc) · 1.51 KB

sc-feature-module-cookie

CookieCutter template for sharechat android feature module

Usage

  1. Install the latest CookieCutter
    pip install -U cookiecutter
    
  2. Generate android module using the template
    cookiecutter https://github.com/Kshitij09-sc/sc-feature-module-cookie
    
  3. Enter module name & package name as per given format
  4. CookieCutter will generate required module files and update settings.gradle.kts with given module name (if exists)

Example Directory Structure

Example directory structure for module name :feature:awesome and package name sharechat.feature.awesome

feature
└── awesome
    ├── build.gradle.kts
    ├── consumer-rules.pro
    ├── proguard-rules.pro
    └── src
        ├── androidTest
        │   └── java
        │       └── sharechat
        │           └── feature
        │               └── awesome
        │                   └── ExampleInstrumentedTest.kt
        ├── main
        │   ├── AndroidManifest.xml
        │   └── java
        │       └── sharechat
        │           └── feature
        │               └── awesome
        └── test
            └── java
                └── sharechat
                    └── feature
                        └── awesome
                            └── ExampleUnitTest.kt