├── LICENSE ├── README.md ├── install.sh ├── template-mvvm-fragment-list ├── README.md ├── globals.xml.ftl ├── recipe.xml.ftl ├── root │ ├── res │ │ ├── layout │ │ │ ├── base_fragment_layout.xml.ftl │ │ │ └── base_item_layout.xml.ftl │ │ └── values │ │ │ └── manifest_strings.xml.ftl │ └── src │ │ └── app_package │ │ ├── BaseAdapter.kt.ftl │ │ ├── BaseFragment.kt.ftl │ │ ├── BaseModel.kt.ftl │ │ ├── BaseNavigator.kt.ftl │ │ ├── BaseUserActionListener.kt.ftl │ │ └── BaseViewModel.kt.ftl └── template.xml ├── template-mvvm-fragment ├── README.md ├── globals.xml.ftl ├── recipe.xml.ftl ├── root │ ├── res │ │ ├── layout │ │ │ └── base_fragment_layout.xml.ftl │ │ └── values │ │ │ └── manifest_strings.xml.ftl │ └── src │ │ └── app_package │ │ ├── BaseFragment.kt.ftl │ │ ├── BaseNavigator.kt.ftl │ │ ├── BaseUserActionListener.kt.ftl │ │ └── BaseViewModel.kt.ftl └── template.xml ├── template-mvvm-kotlin-page-list ├── README.md ├── globals.xml.ftl ├── recipe.xml.ftl ├── root │ ├── res │ │ ├── layout │ │ │ ├── base_fragment_layout.xml.ftl │ │ │ ├── base_item_layout.xml.ftl │ │ │ └── base_layout.xml.ftl │ │ └── values │ │ │ └── manifest_strings.xml.ftl │ └── src │ │ └── app_package │ │ ├── BaseActivity.kt.ftl │ │ ├── BaseAdapter.kt.ftl │ │ ├── BaseFragment.kt.ftl │ │ ├── BaseModel.kt.ftl │ │ ├── BaseNavigator.kt.ftl │ │ ├── BaseUserActionListener.kt.ftl │ │ └── BaseViewModel.kt.ftl └── template.xml └── template-mvvm-kotlin-page ├── README.md ├── globals.xml.ftl ├── recipe.xml.ftl ├── root ├── res │ ├── layout │ │ ├── base_fragment_layout.xml.ftl │ │ └── base_layout.xml.ftl │ └── values │ │ └── manifest_strings.xml.ftl └── src │ └── app_package │ ├── BaseActivity.kt.ftl │ ├── BaseFragment.kt.ftl │ ├── BaseModel.kt.ftl │ ├── BaseNavigator.kt.ftl │ ├── BaseUserActionListener.kt.ftl │ └── BaseViewModel.kt.ftl └── template.xml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/README.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/install.sh -------------------------------------------------------------------------------- /template-mvvm-fragment-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment-list/README.md -------------------------------------------------------------------------------- /template-mvvm-fragment-list/globals.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment-list/globals.xml.ftl -------------------------------------------------------------------------------- /template-mvvm-fragment-list/recipe.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment-list/recipe.xml.ftl -------------------------------------------------------------------------------- /template-mvvm-fragment-list/root/res/layout/base_fragment_layout.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment-list/root/res/layout/base_fragment_layout.xml.ftl -------------------------------------------------------------------------------- /template-mvvm-fragment-list/root/res/layout/base_item_layout.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment-list/root/res/layout/base_item_layout.xml.ftl -------------------------------------------------------------------------------- /template-mvvm-fragment-list/root/res/values/manifest_strings.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment-list/root/res/values/manifest_strings.xml.ftl -------------------------------------------------------------------------------- /template-mvvm-fragment-list/root/src/app_package/BaseAdapter.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment-list/root/src/app_package/BaseAdapter.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-fragment-list/root/src/app_package/BaseFragment.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment-list/root/src/app_package/BaseFragment.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-fragment-list/root/src/app_package/BaseModel.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment-list/root/src/app_package/BaseModel.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-fragment-list/root/src/app_package/BaseNavigator.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment-list/root/src/app_package/BaseNavigator.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-fragment-list/root/src/app_package/BaseUserActionListener.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment-list/root/src/app_package/BaseUserActionListener.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-fragment-list/root/src/app_package/BaseViewModel.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment-list/root/src/app_package/BaseViewModel.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-fragment-list/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment-list/template.xml -------------------------------------------------------------------------------- /template-mvvm-fragment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment/README.md -------------------------------------------------------------------------------- /template-mvvm-fragment/globals.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment/globals.xml.ftl -------------------------------------------------------------------------------- /template-mvvm-fragment/recipe.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment/recipe.xml.ftl -------------------------------------------------------------------------------- /template-mvvm-fragment/root/res/layout/base_fragment_layout.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment/root/res/layout/base_fragment_layout.xml.ftl -------------------------------------------------------------------------------- /template-mvvm-fragment/root/res/values/manifest_strings.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment/root/res/values/manifest_strings.xml.ftl -------------------------------------------------------------------------------- /template-mvvm-fragment/root/src/app_package/BaseFragment.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment/root/src/app_package/BaseFragment.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-fragment/root/src/app_package/BaseNavigator.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment/root/src/app_package/BaseNavigator.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-fragment/root/src/app_package/BaseUserActionListener.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment/root/src/app_package/BaseUserActionListener.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-fragment/root/src/app_package/BaseViewModel.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment/root/src/app_package/BaseViewModel.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-fragment/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-fragment/template.xml -------------------------------------------------------------------------------- /template-mvvm-kotlin-page-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page-list/README.md -------------------------------------------------------------------------------- /template-mvvm-kotlin-page-list/globals.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page-list/globals.xml.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page-list/recipe.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page-list/recipe.xml.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page-list/root/res/layout/base_fragment_layout.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page-list/root/res/layout/base_fragment_layout.xml.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page-list/root/res/layout/base_item_layout.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page-list/root/res/layout/base_item_layout.xml.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page-list/root/res/layout/base_layout.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page-list/root/res/layout/base_layout.xml.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page-list/root/res/values/manifest_strings.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page-list/root/res/values/manifest_strings.xml.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page-list/root/src/app_package/BaseActivity.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page-list/root/src/app_package/BaseActivity.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page-list/root/src/app_package/BaseAdapter.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page-list/root/src/app_package/BaseAdapter.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page-list/root/src/app_package/BaseFragment.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page-list/root/src/app_package/BaseFragment.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page-list/root/src/app_package/BaseModel.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page-list/root/src/app_package/BaseModel.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page-list/root/src/app_package/BaseNavigator.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page-list/root/src/app_package/BaseNavigator.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page-list/root/src/app_package/BaseUserActionListener.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page-list/root/src/app_package/BaseUserActionListener.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page-list/root/src/app_package/BaseViewModel.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page-list/root/src/app_package/BaseViewModel.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page-list/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page-list/template.xml -------------------------------------------------------------------------------- /template-mvvm-kotlin-page/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page/README.md -------------------------------------------------------------------------------- /template-mvvm-kotlin-page/globals.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page/globals.xml.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page/recipe.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page/recipe.xml.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page/root/res/layout/base_fragment_layout.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page/root/res/layout/base_fragment_layout.xml.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page/root/res/layout/base_layout.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page/root/res/layout/base_layout.xml.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page/root/res/values/manifest_strings.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page/root/res/values/manifest_strings.xml.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page/root/src/app_package/BaseActivity.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page/root/src/app_package/BaseActivity.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page/root/src/app_package/BaseFragment.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page/root/src/app_package/BaseFragment.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page/root/src/app_package/BaseModel.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page/root/src/app_package/BaseModel.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page/root/src/app_package/BaseNavigator.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page/root/src/app_package/BaseNavigator.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page/root/src/app_package/BaseUserActionListener.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page/root/src/app_package/BaseUserActionListener.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page/root/src/app_package/BaseViewModel.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page/root/src/app_package/BaseViewModel.kt.ftl -------------------------------------------------------------------------------- /template-mvvm-kotlin-page/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radhikayusuf/android-template/HEAD/template-mvvm-kotlin-page/template.xml --------------------------------------------------------------------------------