Skip to content
This repository was archived by the owner on Jan 29, 2024. It is now read-only.

Commit 37c4962

Browse files
committed
chore: bump version 2.4.7
1 parent 3ca5f2d commit 37c4962

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,22 +39,22 @@ Requestly Android SDK lets you debug your android apps without needing you to se
3939
<img width="250" alt="Try Now" src="https://user-images.githubusercontent.com/16779465/202981457-7c5f57fe-3216-4f9e-b55e-89c9f71c514a.png">
4040
</a>
4141

42-
### OR
42+
### OR
4343
- [Dowload CryptoDemo Apk](https://github.com/requestly/android-debugger-examples/releases/latest/download/cryptodemo-debug.apk)
4444
- [Download Infinity Reddit Apk](https://github.com/requestly/android-debugger-examples/releases/latest/download/infinity-reddit-debug.apk)
4545
- [Download Pokedex Apk](https://github.com/requestly/android-debugger-examples/releases/latest/download/pokedex-debug.apk)
46-
46+
4747
## Installation
4848
The best way to install the Requestly Android SDK is with a build system like Gradle. This ensures you can easily upgrade to the latest versions.
4949

5050
RQInterceptor is distributed through [Maven Central](https://search.maven.org/search?q=io.requestly%20-library). To use it you need to add the following Gradle dependency to your build.gradle file of you android app module (NOT the root file)
5151

5252
```
5353
dependencies {
54-
debugImplementation "io.requestly:requestly-android:2.4.3"
55-
releaseImplementation "io.requestly:requestly-android-noop:2.4.3"
56-
debugImplementation "io.requestly:requestly-android-okhttp:2.4.3"
57-
releaseImplementation "io.requestly:requestly-android-okhttp-noop:2.4.3"
54+
debugImplementation "io.requestly:requestly-android:2.4.7"
55+
releaseImplementation "io.requestly:requestly-android-noop:2.4.7"
56+
debugImplementation "io.requestly:requestly-android-okhttp:2.4.7"
57+
releaseImplementation "io.requestly:requestly-android-okhttp-noop:2.4.7"
5858
}
5959
```
6060

@@ -65,7 +65,7 @@ Initialize the Requestly SDK in your Application class onCreate method.
6565
class App : Application(){
6666
override fun onCreate() {
6767
super.onCreate()
68-
68+
6969
// Initialize Requestly SDK like this
7070
Requestly.Builder(this, [optional "<your-sdk-key>"])
7171
.build()
@@ -85,7 +85,7 @@ val collector = RQCollector(context=appContext)
8585
val rqInterceptor = RQInterceptor.Builder(appContext)
8686
.collector(collector)
8787
.build()
88-
88+
8989
val client = OkHttpClient.Builder()
9090
.addInterceptor(rqInterceptor)
9191
.build()

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ org.gradle.parallel=true
1919

2020
android.useAndroidX=true
2121

22-
VERSION_NAME=2.4.6
22+
VERSION_NAME=2.4.7
2323
# 1*100*100 + 0*100 + 0 => 10000
24-
VERSION_CODE=20406
24+
VERSION_CODE=20407
2525
GROUP=io.requestly
2626

2727
POM_REPO_NAME=Requestly Android SDK

0 commit comments

Comments
 (0)