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
- Host: GitHub
- URL: https://github.com/kittinunf/remote-redux-devtools-android
- Owner: kittinunf
- Created: 2016-08-19T10:56:29.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-02-21T09:13:46.000Z (over 6 years ago)
- Last Synced: 2025-03-20T01:03:24.211Z (7 months ago)
- Topics: android, android-studio, intellij-plugin, redux
- Language: Kotlin
- Homepage:
- Size: 2.7 MB
- Stars: 34
- Watchers: 6
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
## 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"
}
```