An open API service indexing awesome lists of open source software.

https://github.com/kittinunf/remote-redux-devtools-android

Redux Devtools for Android on Android Studio - Intellij plugin & lib
https://github.com/kittinunf/remote-redux-devtools-android

android android-studio intellij-plugin redux

Last synced: 7 months ago
JSON representation

Redux Devtools for Android on Android Studio - Intellij plugin & lib

Awesome Lists containing this project

README

          

# Remote-Redux-Devtools-Android

Remote Redux Devtools for Android on Android Studio - Intellij plugin & lib, it is heavily inspired by [remote-redux-devtools](https://github.com/zalmoxisus/remote-redux-devtools)

## TLDR;
![](https://github.com/kittinunf/remote-redux-devtools-android/blob/master/assets/remote-redux-devtools.gif)

## Installation

### There are 2 main components of remote-redux-devtools-android
In order to make the devTools work, one needs to install 2 components (plugin support & library support).
Plugin will act as a Server and Library will act as a client in communication.

### Plugin
You could download zip file contain plugin at [release](https://github.com/kittinunf/remote-redux-devtools-android/releases) page

### Library
Install via jitpack.io

### Gradle
```Groovy
repositories {
jcenter()
maven { url "https://jitpack.io" }
}

dependencies {
implementation "com.github.kittinunf.remote-redux-devtools-android:core:1.0.0.alpha8"
}
```