Skip to content

Commit c6a2a8a

Browse files
authored
Bump Android SDK version (#258)
* Bump Android SDK version * update readme
1 parent 5364469 commit c6a2a8a

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

Diff for: README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -94,16 +94,16 @@ public void onCreate() {
9494
}
9595
```
9696

97-
- Open `android/build.gradle` and change `minSdkVersion` to **23**, `compileSdkVersion` to at least **34** and `targetSdkVersion` to at least **33**
97+
- Open `android/build.gradle` and change `minSdkVersion` to **23**, `compileSdkVersion` and `targetSdkVersion` to **35**
9898

9999
```Gradle
100100
buildscript {
101101
// ...
102102
ext {
103-
buildToolsVersion = "29.0.2"
103+
buildToolsVersion = "35.0.0"
104104
minSdkVersion = 23 // <-- Here
105-
compileSdkVersion = 34 // <-- Here
106-
targetSdkVersion = 33 // <-- Here
105+
compileSdkVersion = 35 // <-- Here
106+
targetSdkVersion = 35 // <-- Here
107107
}
108108
// ...
109109
}

Diff for: android/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ def packageVersion = '"' + packageJson.version + '"'
55

66
buildscript {
77
ext {
8-
buildToolsVersion = "34.0.0"
8+
buildToolsVersion = "35.0.0"
99
minSdkVersion = 23
10-
compileSdkVersion = 34
11-
targetSdkVersion = 34
10+
compileSdkVersion = 35
11+
targetSdkVersion = 35
1212
ndkVersion = "26.1.10909125"
1313
kotlinVersion = "1.9.22"
1414
}
@@ -69,5 +69,5 @@ dependencies {
6969
//noinspection GradleDynamicVersion
7070
implementation "com.facebook.react:react-native:+" // From node_modules
7171
implementation "com.google.firebase:firebase-messaging:${safeExtGet('firebaseMessagingVersion', '20.2.+')}"
72-
implementation 'io.intercom.android:intercom-sdk:15.11.+'
72+
implementation 'io.intercom.android:intercom-sdk:15.13.+'
7373
}

Diff for: example/android/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
buildscript {
22
ext {
3-
buildToolsVersion = "34.0.0"
3+
buildToolsVersion = "35.0.0"
44
minSdkVersion = 23
5-
compileSdkVersion = 34
6-
targetSdkVersion = 34
5+
compileSdkVersion = 35
6+
targetSdkVersion = 35
77
ndkVersion = "26.1.10909125"
88
kotlinVersion = "1.9.22"
99
}

0 commit comments

Comments
 (0)