Giter Club home page Giter Club logo

android-studio-cleanarchitecture-template-forkotlin's Introduction

Android-Studio-CleanArchitecture-template-forKotlin

This is an Android-Studio Template for CleanArchitecture Template & Kotlin

This repository is made with reference to Android-Studio-MVP-template. So, the repository configuration is similar.

It is inspired Android-CleanArchitecture and android-architecture-component

Support androidX ONLY

V2.X is supported androidX ONLY!!.

So, if your project don't migrate to androidX,please do it first!!

Or,please use V1.X templates

Hierarchy

Here's the hierarchy it follows:

com.company.app
    +--- data
    |     - datasource
    |     - entity
    |
    +--- domain
    |
    +--- presenter
    |
    +--- utils
    |     +--- annotations
    |     |     - ActivityScope
    |     |     - ViewModelKey
    |     |
    |     +--- commons
    |     |     - BasePresenter
    |     |     - BaseView
    |     |     - DefaultDisposableObserver
    |     |     - ExecutionThreads
    |     |     - InputOnlyUseCase
    |     |     - IoUseCase
    |     |     - OutputOnlyUseCase
    |     |     - SimpleUseCase
    |     |     - UseCase
    |     +--- di
    |     |     - ApiModules
    |     |     - ApplicationModule
    |     |     - BindingModules
    |     |     - Injectable
    |     |     - RepositoryModules
    |     |     - RootComponent
    |     |     - ViewModelFactory
    |     |
    |     +--- exceptions
    |     |
    |     +--- extensions
    |           - Observable
    |
    | - MainApplication

res
 +--- layout
 |    - base_activity.xml

Prerequisites

You must satisfy the following conditions.

Support Main Libraries, Service, Layout,

Installation

For Mac:

  • If you have a standard Android Studio installation:

Just run the install script at the root of this repository:

./install.sh
  • Manual installation:

Just copy all 5 directories

  • BaseCleanArchitectureTemplateKotlin
  • DataTemplateKotlin
  • DomainTemplateKotlin
  • PresenterActivityTemplateKotlin
  • PresenterFragmentTemplateKotlin
  • PresenterServiceTemplateKotlin
  • PresenterBroadcastReceiverTemplateKotlin

and paste to $ANDROID_STUDIO_FOLDER$/Contents/plugins/android/lib/templates/activities/

For Windows:

Just copy all 5 directories

  • BaseCleanArchitectureTemplateKotlin
  • DataTemplateKotlin
  • DomainTemplateKotlin
  • PresenterActivityTemplateKotlin
  • PresenterFragmentTemplateKotlin
  • PresenterServiceTemplateKotlin
  • PresenterBroadcastReceiverTemplateKotlin

and paste to $ANDROID_STUDIO_FOLDER$\plugins\android\lib\templates\activities\

How to Use

1. Generate Base template

First of all, create the base hierarchy and classes using CleanArchitectureTemplate from the root package folder. This needs to be done only once per project: CleanArchitectureTemplate

Or if you create a new project, please select CleanArchitectureTemplate on this screen.

Android Studio 3.3 maybe unsupport to add original Template to Create a new Project Selection..

Next, you set project config.

  • Application Class Name -> Set Root ApplicationClass Name
  • Create kotlin src dir? -> Please check if you have not previously created the kotlin folder
  • Need Realm? -> Please check this when using Realm
  • Need Retrofit2? -> Please check this when using Retrofit2
  • Use Swagger? -> Please check this if the Retrofit API was created by Swagger(RxJava2 used)

Project Config

When all settings are completed click the Finish button!!

2.FIX build.gradles!!

Completed to generate Base classes, it will added FIXME_merge_to_build.gradle files. FIXME_merge_to_build

Open these files and merge to original build.gradle files.

End of merge, execute gradle sync!!

Use CleanArchitecture Template

Some templates need your work.

DataTemplateKotlin

This template create data-layer template. dataLayerTemplate

This template will add DataSourceClass and DataRepositoryClass.

And then, please see DataSourceClass.The following notice is written there.

/*    FIXME MUST add below method to RepositoryModules */
//    @Binds abstract fun bindSomeDataSource(repository: SomeRepository):SomeDataSource

So, Copy @Binds abstract fun bindSomeDataSource(repository: SomeRepository):SomeDataSource to RepositoryModules

This Layer Provide Interface to domain.

DomainTemplateKotlin

This template create domain-layer template. domainUsecaseTemplate

This template will add IoUsecaseClass or InputOnlyUseCaseClass or OutputOnlyUseCaseClass or SimpleUseCaseClass.

This Layer Provide Bussiness Logic and connect DataLayer to PresentationLayer.

PresenterActivityTemplateKotlin

This template create presenter-layer template. presenterActivityTemplate

This template will add ContractClass, ModuleClass, PresenterViewModelClass, ActivityClass, FragmentClass and fragment.xml.

And then, please see ModuleClass. The following notice is written there.

/* FIXME MUST add below method to BindingModules */
// @ContributesAndroidInjector(modules = [SomeModule::class]) @ActivityScope abstract fun contributeSomeActivityInjector(): SomeActivity

So, Copy @ContributesAndroidInjector(modules = [SomeModule::class]) @ActivityScope abstract fun contributeSomeActivityInjector(): SomeActivity to BindingModules.

This Layer Provides UserInterface(Activity & Fragment). And presenterClass communicate domain-layer.

PresenterFragmentTemplateKotlin

This template create presenter-layer template. presenterFragmentTemplate

This template will add ContractClass, PresenterViewModelClass, FragmentClass and fragment.xml.

And then, please see FragmentClass. The following notice is written there.

/* FIXME MUST add below method to Parent Activity's Module */
//    @Binds @IntoMap @ViewModelKey(SomePresenterViewModel::class) abstract fun bindSomePresenterViewModel(viewModel: SomePresenterViewModel): ViewModel
//    @ContributesAndroidInjector abstract fun contributeSomeFragment():SomeFragment

So, Copy @Binds @IntoMap @ViewModelKey(SomePresenterViewModel::class) abstract fun bindSomePresenterViewModel(viewModel: SomePresenterViewModel): ViewModel and @ContributesAndroidInjector abstract fun contributeSomeFragment():SomeFragment to Parent activity's module.

This Layer Provides UserInterface(Fragment). And presenterClass communicate domain-layer.

PresenterServiceTemplateKotlin

This template create presenter-layer template. presenterServiceTemplate

This template will add ContractClass, ModuleClass, PresenterClass and ServiceClass.

And then, please see ModuleClass. The following notice is written there.

/* FIXME MUST add below method to BindingModules */
// @ContributesAndroidInjector(modules = [SomeServiceModule::class]) abstract fun contributeSomeServiceServiceInjector(): SomeServiceService

So, Copy @ContributesAndroidInjector(modules = [SomeServiceModule::class]) abstract fun contributeSomeServiceServiceInjector(): SomeServiceService to BindingModules.

This Layer Provides UserInterface(Service). And presenterClass communicate domain-layer.

PresenterBroadCastReceiverTemplateKotlin

This template create presenter-layer template. presenterBroadCastReceiverTemplate

This template will add ContractClass, ModuleClass, PresenterClass and ReceiverClass.

And then, please see ModuleClass. The following notice is written there.

/* FIXME MUST add below method to BindingModules */
// @ContributesAndroidInjector(modules = [SomeReceiverModule::class]) abstract fun contributeSomeReceiverReceiverInjector(): SomeReceiverReceiver

So, Copy @ContributesAndroidInjector(modules = [SomeReceiverModule::class]) abstract fun contributeSomeReceiverReceiverInjector(): SomeReceiverReceiver to BindingModules.

This Layer Provides UserInterface(BroadCastReceiver). And presenterClass communicate domain-layer.

Example

Very simple example is in the Example folder.

日本語の説明

Qiitaに以下の記事を公開したのでそちらを参照

Kotlin用のCleanArchitectureのテンプレート作ったよ!

Reference URL

Licence

Copyright 2017- kiuchi keisuke

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

android-studio-cleanarchitecture-template-forkotlin's People

Contributors

kiuchikeisuke avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.