Skip to content

Commit 320657a

Browse files
authored
Bump Android SDK to 15.2.3 (#128)
1 parent 919f6fe commit 320657a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,15 @@ public void onCreate() {
8989
}
9090
```
9191

92-
- Open `android/build.gradle` and change `minSdkVersion` to **21**, `compileSdkVersion` and `targetSdkVersion` to at least **33**
92+
- Open `android/build.gradle` and change `minSdkVersion` to **21**, `compileSdkVersion` to at least **34** and `targetSdkVersion` to at least **33**
9393

9494
```Gradle
9595
buildscript {
9696
// ...
9797
ext {
9898
buildToolsVersion = "29.0.2"
9999
minSdkVersion = 21 // <-- Here
100-
compileSdkVersion = 33 // <-- Here
100+
compileSdkVersion = 34 // <-- Here
101101
targetSdkVersion = 33 // <-- Here
102102
}
103103
// ...

android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def safeExtGet(prop, fallback) {
2323
}
2424

2525
android {
26-
compileSdkVersion safeExtGet('IntercomReactNative_compileSdkVersion', 33)
26+
compileSdkVersion safeExtGet('IntercomReactNative_compileSdkVersion', 34)
2727
defaultConfig {
2828
minSdkVersion safeExtGet('IntercomReactNative_minSdkVersion', 21)
2929
targetSdkVersion safeExtGet('IntercomReactNative_targetSdkVersion', 33)
@@ -60,5 +60,5 @@ dependencies {
6060
//noinspection GradleDynamicVersion
6161
implementation "com.facebook.react:react-native:+" // From node_modules
6262
implementation "com.google.firebase:firebase-messaging:${safeExtGet('firebaseMessagingVersion', '20.2.+')}"
63-
implementation 'io.intercom.android:intercom-sdk:15.2.0'
63+
implementation 'io.intercom.android:intercom-sdk:15.2.3'
6464
}

example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
ext {
88
buildToolsVersion = "30.0.2"
99
minSdkVersion = 21
10-
compileSdkVersion = 33
10+
compileSdkVersion = 34
1111
targetSdkVersion = 33
1212
ndkVersion = "20.1.5948944"
1313
}

0 commit comments

Comments
 (0)