From 8142ef65e6786b698227882cacee1e2834ffa25d Mon Sep 17 00:00:00 2001 From: Irena Szukala Date: Thu, 30 Jan 2025 17:13:40 +0100 Subject: [PATCH 1/2] Bump Android SDK version --- android/build.gradle | 8 ++++---- example/android/build.gradle | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index df4d7263..a06f6aae 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -5,10 +5,10 @@ def packageVersion = '"' + packageJson.version + '"' buildscript { ext { - buildToolsVersion = "34.0.0" + buildToolsVersion = "35.0.0" minSdkVersion = 23 - compileSdkVersion = 34 - targetSdkVersion = 34 + compileSdkVersion = 35 + targetSdkVersion = 35 ndkVersion = "26.1.10909125" kotlinVersion = "1.9.22" } @@ -69,5 +69,5 @@ dependencies { //noinspection GradleDynamicVersion implementation "com.facebook.react:react-native:+" // From node_modules implementation "com.google.firebase:firebase-messaging:${safeExtGet('firebaseMessagingVersion', '20.2.+')}" - implementation 'io.intercom.android:intercom-sdk:15.11.+' + implementation 'io.intercom.android:intercom-sdk:15.13.+' } diff --git a/example/android/build.gradle b/example/android/build.gradle index ced80b71..9ba55da7 100644 --- a/example/android/build.gradle +++ b/example/android/build.gradle @@ -1,9 +1,9 @@ buildscript { ext { - buildToolsVersion = "34.0.0" + buildToolsVersion = "35.0.0" minSdkVersion = 23 - compileSdkVersion = 34 - targetSdkVersion = 34 + compileSdkVersion = 35 + targetSdkVersion = 35 ndkVersion = "26.1.10909125" kotlinVersion = "1.9.22" } From 44ec87bff12fe7557823f3343bc108a9acae6d93 Mon Sep 17 00:00:00 2001 From: Irena Szukala Date: Thu, 30 Jan 2025 17:17:06 +0100 Subject: [PATCH 2/2] update readme --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8a092712..90ddb560 100644 --- a/README.md +++ b/README.md @@ -94,16 +94,16 @@ public void onCreate() { } ``` -- Open `android/build.gradle` and change `minSdkVersion` to **23**, `compileSdkVersion` to at least **34** and `targetSdkVersion` to at least **33** +- Open `android/build.gradle` and change `minSdkVersion` to **23**, `compileSdkVersion` and `targetSdkVersion` to **35** ```Gradle buildscript { // ... ext { - buildToolsVersion = "29.0.2" + buildToolsVersion = "35.0.0" minSdkVersion = 23 // <-- Here - compileSdkVersion = 34 // <-- Here - targetSdkVersion = 33 // <-- Here + compileSdkVersion = 35 // <-- Here + targetSdkVersion = 35 // <-- Here } // ... }