Skip to content

Commit

Permalink
Update rxjava2_support.md
Browse files Browse the repository at this point in the history
  • Loading branch information
amitshekhariitbhu authored Aug 18, 2024
1 parent 5bdfe03 commit 9f7bc2c
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions pages/doc/rxjava2_support.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,24 @@ folder: doc

## Using Fast Android Networking Library in your application with RxJava2

Add this in your build.gradle
Add this in your `settings.gradle`:
```groovy
maven { url 'https://jitpack.io' }
```

If you are using `settings.gradle.kts`, add the following:
```kotlin
maven { setUrl("https://jitpack.io") }
```

Add this in your `build.gradle`
```groovy
compile 'com.amitshekhar.android:rx2-android-networking:1.0.2'
implementation 'com.github.amitshekhariitbhu.Fast-Android-Networking:rx2-android-networking:1.0.4'
```

If you are using `build.gradle.kts`, add the following:
```kotlin
implementation("com.github.amitshekhariitbhu.Fast-Android-Networking:rx2-android-networking:1.0.4")
```

Do not forget to add internet permission in manifest if already not present
Expand Down

0 comments on commit 9f7bc2c

Please sign in to comment.