Skip to content

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

Notifications You must be signed in to change notification settings

kittinunf/remote-redux-devtools-android

Repository files navigation

Remote-Redux-Devtools-Android

Remote Redux Devtools for Android on Android Studio - Intellij plugin & lib, it is heavily inspired by remote-redux-devtools

TLDR;

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 page

Library

Install via jitpack.io

Gradle

repositories {
  jcenter()
  maven { url "https://jitpack.io" }
}

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