• Stars
    star
    328
  • Rank 128,352 (Top 3 %)
  • Language
    Java
  • License
    MIT License
  • Created about 9 years ago
  • Updated over 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

The java version of Redux : a predictable state container for apps.

// This project is unmaintained //

▲▲▲ Redux-java ▲▲▲

A java implementation of jvm-redux-api

Integration

Gradle

allprojects {
  repositories {
    ...
    maven { url 'https://jitpack.io' }
  }
}
dependencies {
  compile 'com.github.glung:redux-java:1.0'
}

Maven

<repositories>
  <repository>
      <id>jitpack.io</id>
      <url>https://jitpack.io</url>
  </repository>
</repositories>
<dependency>
  <groupId>com.github.glung</groupId>
  <artifactId>redux-java</artifactId>
  <version>1.0</version>
</dependency>