All Projects → general-mobile → Kotlin Android Mvp Starter

general-mobile / Kotlin Android Mvp Starter

Licence: mit
Create/Generate your kotlin MVP projects easily

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Kotlin Android Mvp Starter

Kotlin Android Mvvm Starter
Android Kotlin Starter is a starter project which implements MVVM Pattern.
Stars: ✭ 276 (+2.22%)
Mutual labels:  rxjava2, starter, starter-template, cookiecutter, dagger2, picasso, crashlytics, retrofit2
Clean Marvel Kotlin
This repository contains a detailed sample app that implements Clean architecture and MVP in Kotlin using RxJava2, Retrofit
Stars: ✭ 27 (-90%)
Mutual labels:  mvp, realm, dagger2, retrofit2, rxkotlin
Moviehub
Showcases popular movies, tv shows, and people from The Movie Database
Stars: ✭ 325 (+20.37%)
Mutual labels:  rxjava2, realm, dagger2, picasso, retrofit2
Bigbang
Android base project used by Xmartlabs team
Stars: ✭ 47 (-82.59%)
Mutual labels:  rxjava2, dagger2, mvp, crashlytics, retrofit2
Android Mvp Starter
Create/Generate your MVP projects easily
Stars: ✭ 72 (-73.33%)
Mutual labels:  realm, picasso, mvp, scaffold, crashlytics
Business Search App Java
Showcases object oriented programming in Java, Java Swing, Kotlin, and Android
Stars: ✭ 53 (-80.37%)
Mutual labels:  rxjava2, rxandroid2, dagger2, mvp, retrofit2
Wanandroid
WanAndroid客户端,项目基于 Material Design + MVP +dagger2 + RxJava + Retrofit + Glide + greendao 等架构进行设计实现,极力打造一款 优秀的玩Android https://www.wanandroid.com 客户端,是一个不错的Android应用开发学习参考项目
Stars: ✭ 223 (-17.41%)
Mutual labels:  rxjava2, dagger2, mvp, retrofit2
Android-Starter-Kit
This is up-to-date android studio project for native android application, that is using modern tools and libraries.
Stars: ✭ 16 (-94.07%)
Mutual labels:  mvp, dagger2, rxjava2, retrofit2
Weather-Guru-MVP
Sample Material-design Android weather application build with MVP architectural approach using Dagger2, RxJava2, Retrofit2, Event-Bus, GreenDao, Butterknife, Lottie etc.
Stars: ✭ 15 (-94.44%)
Mutual labels:  mvp, dagger2, rxjava2, retrofit2
KotlinMvpTemplateGenerator
Android Studio template for Kotlin with MVP + Dagger2 + Retrofit2
Stars: ✭ 65 (-75.93%)
Mutual labels:  mvp, starter-template, starter, dagger2
Aiyagirl
🔥 爱吖妹纸(含 Kotlin 分支版本)——Retrofit + RxJava + MVP 架构 APP 体验代码家的干货集中营 Gank.io,福利多多,不容错过
Stars: ✭ 1,109 (+310.74%)
Mutual labels:  rxjava2, dagger2, mvp, retrofit2
AndroidStarterAlt
A sample View-based Android app using the MVP architecture. It uses Mosby, Dagger2, RxJava, retrofit, LoganSquare, requery, EventBus, Conductor.
Stars: ✭ 27 (-90%)
Mutual labels:  mvp, picasso, dagger2, retrofit2
Pursuit-Core-Android
Pursuit Core Android
Stars: ✭ 45 (-83.33%)
Mutual labels:  picasso, dagger2, rxjava2, retrofit2
Dagger2
Kotlin Dagger2 example project
Stars: ✭ 145 (-46.3%)
Mutual labels:  rxjava2, rxandroid2, dagger2, retrofit2
Armscomponent
📦 A complete android componentization solution, powered by MVPArms (MVPArms 官方快速组件化方案).
Stars: ✭ 1,664 (+516.3%)
Mutual labels:  rxjava2, dagger2, mvp, retrofit2
Mvpframes
整合大量主流开源项目并且可高度配置化的 Android MVP 快速集成框架,支持 AndroidX
Stars: ✭ 100 (-62.96%)
Mutual labels:  rxjava2, dagger2, mvp, retrofit2
wikilight
A lightweight Wikipedia Client
Stars: ✭ 50 (-81.48%)
Mutual labels:  mvp, realm, dagger2, retrofit2
mvp-android-template
MVP Android Template to give you a Quick Head Start for your next Android Project. It implements MVP Architecture using Dagger2, Room, RxJava2 , Retrofit2
Stars: ✭ 20 (-92.59%)
Mutual labels:  mvp, dagger2, rxjava2, retrofit2
AndroidMultiModuleCleanArchTemplate
An Android kotlin project template with Dagger2, Rx and Architecture Components
Stars: ✭ 33 (-87.78%)
Mutual labels:  starter-template, dagger2, rxjava2, retrofit2
searchi
Demo of PagedListAdapter, PageKeyedDataSource, LiveData, ViewModel in Kotlin
Stars: ✭ 13 (-95.19%)
Mutual labels:  picasso, dagger2, rxjava2, retrofit2

Android Kotlin MVP Starter

GitHub license Platform Android Arsenal

Android Kotlin Starter is a starter project which implements MVP Pattern.

Thanks

This project extends from Deniz Tunç Tuncer's Android Starter project

Libraries

It includes libraries

You can choose which library you want to include in your project

Terminal

Requirements

python
pip
cookiecutter

Install

1. Install python
2. Install pip
3. pip install cookiecutter

Scaffold your project:

cookiecutter https://github.com/general-mobile/kotlin-android-mvp-starter.git
Project Tree After Scaffold
.
├── app
│   ├── app.iml
│   ├── build.gradle
│   ├── proguard-rules.pro
│   └── src
│       ├── androidTest
│       │   └── java
│       │       └── com
│       │           └── generalmobile
│       │               └── app
│       │                   └── test
│       │                       └── ApplicationTest.java
│       ├── main
│       │   ├── AndroidManifest.xml
│       │   ├── kotlin
│       │   │   └── com
│       │   │       └── generalmobile
│       │   │           └── app
│       │   │               └── test
│       │   │                   ├── Application.kt
│       │   │                   ├── base
│       │   │                   │   ├── BaseActivity.kt
│       │   │                   │   └── IBaseView.kt
│       │   │                   ├── di
│       │   │                   │   ├── component
│       │   │                   │   │   └── ApplicationComponent.kt
│       │   │                   │   ├── module
│       │   │                   │   │   ├── ApplicationModule.kt
│       │   │                   │   │   ├── DatabaseModule.kt
│       │   │                   │   │   └── NetModule.kt
│       │   │                   │   └── scope
│       │   │                   │       └── ActivityScope.kt
│       │   │                   ├── main
│       │   │                   │   ├── IMainView.kt
│       │   │                   │   ├── MainActivity.kt
│       │   │                   │   ├── MainComponent.kt
│       │   │                   │   ├── MainModule.kt
│       │   │                   │   └── MainPresenter.kt
│       │   │                   ├── splash
│       │   │                   │   └── SplashActivity.kt
│       │   │                   └── utils
│       │   │                       ├── RxBus.kt
│       │   │                       └── timber
│       │   │                           └── CrashReportTree.kt
│       │   └── res
│       │       ├── drawable
│       │       │   ├── android_starter.png
│       │       │   └── splash_logo.xml
│       │       ├── layout
│       │       │   └── activity_main.xml
│       │       ├── menu
│       │       │   └── menu_main.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
│       │       │   ├── dimens.xml
│       │       │   ├── strings.xml
│       │       │   └── styles.xml
│       │       ├── values-v21
│       │       │   └── styles.xml
│       │       └── values-w820dp
│       │           └── dimens.xml
│       └── test
│           └── java
│               └── com
│                   └── generalmobile
│                       └── app
│                           └── test
│                               └── ExampleUnitTest.java
├── build.gradle
├── gradle
│   └── wrapper
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── local.properties
├── settings.gradle
└── test.iml

43 directories, 51 files

License

The MIT License (MIT)

Copyright (c) 2017 General Mobile

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].