All Projects → dtunctuncer → Android Mvp Starter

dtunctuncer / Android Mvp Starter

Licence: mit
Create/Generate your MVP projects easily

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Android Mvp Starter

Marvel
Marvel Characters Android Application Assigned by smava GmbH
Stars: ✭ 227 (+215.28%)
Mutual labels:  timber, rxjava, picasso, mvp, dagger, butterknife
Foodsearch
Showcase project of MVP+Dagger+RxJava+StorIO
Stars: ✭ 117 (+62.5%)
Mutual labels:  timber, rxjava, picasso, dagger, butterknife
Bigbang
Android base project used by Xmartlabs team
Stars: ✭ 47 (-34.72%)
Mutual labels:  timber, rxjava, mvp, dagger, crashlytics
Kotlin Android Mvp Starter
Create/Generate your kotlin MVP projects easily
Stars: ✭ 270 (+275%)
Mutual labels:  realm, picasso, mvp, scaffold, crashlytics
Mvpframes
整合大量主流开源项目并且可高度配置化的 Android MVP 快速集成框架,支持 AndroidX
Stars: ✭ 100 (+38.89%)
Mutual labels:  rxjava, mvp, dagger, butterknife
Androidstarter
A sample Android app using the MVP architecture.
Stars: ✭ 140 (+94.44%)
Mutual labels:  rxjava, picasso, mvp, butterknife
Just Another Android App
An Android base app with loads of cool libraries/configuration NOT MAINTAINED
Stars: ✭ 1,654 (+2197.22%)
Mutual labels:  timber, rxjava, crashlytics, butterknife
Moviehub
Showcases popular movies, tv shows, and people from The Movie Database
Stars: ✭ 325 (+351.39%)
Mutual labels:  timber, realm, picasso, butterknife
AndroidMVPArchitecture
Android MVP architecture sample project with or without RxJava and Dagger2 and Kotlin
Stars: ✭ 78 (+8.33%)
Mutual labels:  rxjava, mvp, dagger
WanAndroid
💪 WanAndroid应用,持续更新,不断打造成一款持续稳定, 功能完善的应用
Stars: ✭ 50 (-30.56%)
Mutual labels:  rxjava, mvp, dagger
Androidall
Android 程序员需要掌握的技术栈:数据结构算法、程序架构、设计模式、性能优化、插件化、热更新、Kotlin、NDK、Jetpack,以及常用的开源框架源码分析如 Flutter、Router、RxJava、Glide、LeakCanary、Dagger2、Retrofit、OkHttp、ButterKnife 等
Stars: ✭ 849 (+1079.17%)
Mutual labels:  rxjava, dagger, butterknife
Fineract-CN-mobile
DEPRECATED project - Check the Apache fineract-cn-mobile project instead
Stars: ✭ 17 (-76.39%)
Mutual labels:  rxjava, mvp, butterknife
BaseDevelop
an android project for now fashion open source framework
Stars: ✭ 24 (-66.67%)
Mutual labels:  rxjava, picasso, butterknife
AndroidStarterAlt
A sample View-based Android app using the MVP architecture. It uses Mosby, Dagger2, RxJava, retrofit, LoganSquare, requery, EventBus, Conductor.
Stars: ✭ 27 (-62.5%)
Mutual labels:  mvp, picasso, butterknife
T Mvp
Android AOP Architecture by Apt, AspectJ, Javassisit, based on Realm+Databinding+MVP+Retrofit+Rxjava2
Stars: ✭ 2,740 (+3705.56%)
Mutual labels:  rxjava, realm, mvp
Android-Starter-Kit
This is up-to-date android studio project for native android application, that is using modern tools and libraries.
Stars: ✭ 16 (-77.78%)
Mutual labels:  mvp, butterknife, timber
Android-Learning-Resources
My curated list of resources for learning Android Development.
Stars: ✭ 24 (-66.67%)
Mutual labels:  rxjava, mvp, dagger
Kotlin Android Mvvm Starter
Android Kotlin Starter is a starter project which implements MVVM Pattern.
Stars: ✭ 276 (+283.33%)
Mutual labels:  timber, picasso, crashlytics
Firebucket
Glimpse into Firebase, with a simple TODO list app built around Dagger, RxJava 2, Clean architecture and of course, Firebase.
Stars: ✭ 376 (+422.22%)
Mutual labels:  rxjava, mvp, dagger
Geeknews
📚A pure reading App based on Material Design + MVP + RxJava2 + Retrofit + Dagger2 + Realm + Glide
Stars: ✭ 3,496 (+4755.56%)
Mutual labels:  rxjava, realm, butterknife

Android Starter

Android Arsenal GitHub license Platform

Android Starter is a starter project which implements MVP Pattern.

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/dtunctuncer/android-mvp-starter.git
Project Tree After Scaffold
.
├── app
│   ├── build.gradle
│   ├── proguard-rules.pro
│   └── src
│       ├── androidTest
│       │   └── java
│       │       └── com
│       │           └── dtunctuncer
│       │               └── example
│       │                   └── ApplicationTest.java
│       ├── main
│       │   ├── AndroidManifest.xml
│       │   ├── java
│       │   │   └── com
│       │   │       └── dtunctuncer
│       │   │           └── example
│       │   │               ├── Application.java
│       │   │               ├── base
│       │   │               │   ├── BaseActivity.java
│       │   │               │   └── IBaseView.java
│       │   │               ├── db
│       │   │               │   └── Example.java
│       │   │               ├── di
│       │   │               │   ├── ActivityScope.java
│       │   │               │   ├── ApplicationComponent.java
│       │   │               │   ├── ApplicationModule.java
│       │   │               │   ├── DatabaseModule.java
│       │   │               │   └── NetModule.java
│       │   │               ├── main
│       │   │               │   ├── IMainView.java
│       │   │               │   ├── MainActivity.java
│       │   │               │   ├── MainComponent.java
│       │   │               │   ├── MainModule.java
│       │   │               │   └── MainPresenter.java
│       │   │               ├── splash
│       │   │               │   └── SplashActivity.java
│       │   │               └── utils
│       │   │                   ├── DaoMigrationHelper.java
│       │   │                   ├── DaoUpdateHelper.java
│       │   │                   ├── RxBus.java
│       │   │                   └── timber
│       │   │                       └── CrashReportTree.java
│       │   └── res
│       │       ├── drawable
│       │       │   ├── android_starter.png
│       │       │   └── splash_logo.xml
│       │       ├── layout
│       │       │   └── activity_main.xml
│       │       ├── menu
│       │       │   └── menu_main.xml
│       │       ├── mipmap-hdpi
│       │       │   └── ic_launcher.png
│       │       ├── mipmap-mdpi
│       │       │   └── ic_launcher.png
│       │       ├── mipmap-xhdpi
│       │       │   └── ic_launcher.png
│       │       ├── mipmap-xxhdpi
│       │       │   └── ic_launcher.png
│       │       ├── mipmap-xxxhdpi
│       │       │   └── ic_launcher.png
│       │       ├── values
│       │       │   ├── colors.xml
│       │       │   ├── dimens.xml
│       │       │   ├── strings.xml
│       │       │   └── styles.xml
│       │       ├── values-v21
│       │       │   └── styles.xml
│       │       └── values-w820dp
│       │           └── dimens.xml
│       └── test
│           └── java
│               └── com
│                   └── dtunctuncer
│                       └── example
│                           └── ExampleUnitTest.java
├── build.gradle
├── gradle
│   └── wrapper
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── local.properties
└── settings.gradle

38 directories, 47 files

License

The MIT License (MIT)

Copyright (c) 2017 Deniz Tunç Tuncer

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].