Skip to content

Getting started

Marcel Pintó Biescas edited this page Dec 26, 2015 · 7 revisions

First add RxFlux to your build gradle file:

dependencies {
  compile 'com.hardsoftstudio:rxflux:0.3.1'
}

Init RxFlux on your Application class, save the variable to use it later. (Tip: use DI frameworks)

public void onCreate() {
    super.onCreate();
    rxFlux = RxFlux.init();
}

Next steps:

  1. Setup Actions.
  2. Setup Store.
  3. Setup View.
  4. Using and understanding RxFlux class.
Clone this wiki locally