Flax
Flax copied to clipboard
Flax is another way to build Android applications.
Add unit tests for the Flax module to ensure the module works as intended.
We aren't savages, so add JavaDoc to the Flax module. This will include class and method documentation.
Completely remove Rx from the Flax module. Updating sample apps will be a separate issue.
Currently the Model emits itself when changes are made, this isn't ideal for a number of reasons: 1. The model state could change inbetween onNext calls causing the renderer to...
Currently the FlaxAction types are fairly primitive and should be updated to support a wider range of default Action types. These actions include callbacks from View, TextView, EditText, System (Activity,...
Flax needs to be properly released to jCenter so that it can be easier to include in projects.
05-02 18:48:54.869 1956-1956/com.codyengel.simplenetworking E/AndroidRuntime: FATAL EXCEPTION: main Process: com.codyengel.simplenetworking, PID: 1956 java.lang.RuntimeException: Unable to resume activity {com.codyengel.simplenetworking/com.codyengel.simplenetworking.ui.list.ListActivity}: java.lang.NullPointerException: Attempt to invoke virtual method 'io.reactivex.Observable com.codyengel.flax.FlaxModel.getObservable()' on a null object reference...
Since Android is unpredictable it would probably be a good idea to allow the Store to survive process death: https://medium.com/inloop/android-process-kill-and-the-big-implications-for-your-app-1ecbed4921cb Currently device rotation works fine, however if the application is...