-
Notifications
You must be signed in to change notification settings - Fork 38
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:
- Setup Actions.
- Setup Store.
- Setup View.
- Using and understanding RxFlux class.