All Projects → pakoito → Functionalandroidreference

pakoito / Functionalandroidreference

Licence: other
Showcase project of Functional Reactive Programming on Android, using RxJava.

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Functionalandroidreference

RxUploader
Uploader for Android using RxJava
Stars: ✭ 72 (-73.72%)
Mutual labels:  rxjava, functional-reactive-programming
Android Oss
Kickstarter for Android. Bring new ideas to life, anywhere.
Stars: ✭ 5,627 (+1953.65%)
Mutual labels:  rxjava, functional-reactive-programming
DaMaiProject
大麦界面,实现多种方式网络访问、数据缓存
Stars: ✭ 24 (-91.24%)
Mutual labels:  rxjava
Simpleeyes
🔥🔥🔥A Video app illustrating Android development best practices with Kotlin
Stars: ✭ 261 (-4.74%)
Mutual labels:  rxjava
RxPaper
NoSQL storage with RxJava bindings [STABLE]
Stars: ✭ 88 (-67.88%)
Mutual labels:  rxjava
Readhub
Readhub AndroidClient
Stars: ✭ 40 (-85.4%)
Mutual labels:  rxjava
Gank
gank.io unofficial client - RxJava2、Retrofit2 & MVP技术干货
Stars: ✭ 256 (-6.57%)
Mutual labels:  rxjava
furipota
(unmaintained) A discrete FRP DSL for describing better build pipelines.
Stars: ✭ 22 (-91.97%)
Mutual labels:  functional-reactive-programming
Kotlinwanandroid
Kotlin+模块化+响应式+MVVM 实现的风格简约、代码优雅的WanAndroid客户端
Stars: ✭ 265 (-3.28%)
Mutual labels:  rxjava
ProxerAndroid
The official Android App of Proxer.Me
Stars: ✭ 105 (-61.68%)
Mutual labels:  rxjava
Rxanime
Visualizer to understand RxJava operators
Stars: ✭ 261 (-4.74%)
Mutual labels:  rxjava
modern-android
Modern Android Project Skeleton
Stars: ✭ 17 (-93.8%)
Mutual labels:  rxjava
rx-property-android
Bindable and observable property for Android Data Binding
Stars: ✭ 76 (-72.26%)
Mutual labels:  rxjava
T Mvp
Android AOP Architecture by Apt, AspectJ, Javassisit, based on Realm+Databinding+MVP+Retrofit+Rxjava2
Stars: ✭ 2,740 (+900%)
Mutual labels:  rxjava
RxRetroAPICall
API call example using Retrofit and RxJava2
Stars: ✭ 16 (-94.16%)
Mutual labels:  rxjava
Rxkprefs
🛠 A small Kotlin library to make shared preferences easy + RxJava and Coroutines support
Stars: ✭ 264 (-3.65%)
Mutual labels:  rxjava
BihuDaily
高仿知乎日报
Stars: ✭ 75 (-72.63%)
Mutual labels:  rxjava
Binder
An Annotation processor that allows binding two classes with each other, where the first class can listen to the updates of the second class ... ideal for MVVM and similar patterns
Stars: ✭ 21 (-92.34%)
Mutual labels:  rxjava
Daggerandroidmvvm
Demonstrates using Dagger 2.11+ in MVVM app with Android Architecture Components, Clean Architecture, RxJava
Stars: ✭ 255 (-6.93%)
Mutual labels:  rxjava
Rxandroidble
An Android Bluetooth Low Energy (BLE) Library with RxJava2 interface
Stars: ✭ 3,025 (+1004.01%)
Mutual labels:  rxjava

FunctionalAndroidReference

FunctionalAndroidReference is a showcase project of Functional Reactive Programming on Android, using RxJava.

It's a companion app to the presentation "Fully Reactive Apps" at Droidcon UK 2016.

Build Status codecov

It is not meant to be a canonical reference, but as an example of how far functional programming can be taken. It's also a collection of patterns and ideas about how to express use cases, business features, and UX on a FRP paradigm.

The project has multiple self-imposed limitations:

Full separation between UI and business logic.

The project is split into several modules. Every module has its own README file.

app

The UI layer is written purely in Java 7 with Android dependencies.

It depends on all modules below.

liblogic

The business logic that controls the views. It doesn't contain any Android dependency.

It is written in Kotlin for convenience, but it could be rewritten in Java 7 with ease, although it will be a bit verbose without lambdas (see retrolambda).

It depends on the modules below.

libservices

Any network services, POJOs, and communications that aren't in the Android framework. Again, it's not dependent on any Android.

Written in Kotlin too.

It depends on the module below.

libcore

Helpers and common general types. No Android.

Written in Kotlin, with no Android dependencies.

Pragmatically functional

  • liblogic and libservices must contain as few classes as pragmatically possible. Favour functions instead.

  • Every function must be written as an expression body.

  • Every function must be as pure as possible.

  • Every parameter in a function must be passed explicitly. No globals, no fields.

  • Prefer encapsulating variables in closures rather than fields. If using fields, final fields will be mandated whenever possible.

  • Collections must be immutable.

  • No nullable types outside the UI and service layers.

  • Use functional patterns like unions, laziness, or higher order functions, instead of classic OOP Gang of Four patterns.

Fully reactive

The architecture is reminiscent of Flux, Redux, or Elm. This is no coincidence.

Every method in the UI layer is either:

  • a stream/signal, represented by a method returning an rx.Observable.

  • a new UI state: new text value, new element on a RecyclerView, show a dialog... represented by a void/Unit method.

Every function in the business layer is:

  • a rx.Subscription encompassing all the behaviour for one or many use cases.

Testable

Every use case must be accompanied of a test suite covering its complete behaviour.

Moderately documented

Every public function must be documented.

Inlined comments only when intent isn't clear.

No lifecycle

Separate the business logic from the Android lifecycle at the earliest layer possible.

No magic

Avoid DI frameworks like Dagger, and hand-roll injection instead.

Avoid code generation outside Kotlin helpers.

License

Copyright (c) pakoito 2016

The Apache Software License, Version 2.0

See LICENSE.md

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