Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit af4a3bf

Browse files
authoredJan 7, 2025··
chore: bump Android API versions (#145)
* chore: bump Android API versions * chore: clean up unneeded config entries
1 parent 4bd84f5 commit af4a3bf

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed
 

‎android/build.gradle

+2-4
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,12 @@ apply plugin: 'com.android.library'
2020

2121
apply plugin: 'kotlin-android'
2222

23-
def DEFAULT_COMPILE_SDK_VERSION = 34
24-
def DEFAULT_BUILD_TOOLS_VERSION = "28.0.3"
23+
def DEFAULT_COMPILE_SDK_VERSION = 35
2524
def DEFAULT_MIN_SDK_VERSION = 26
26-
def DEFAULT_TARGET_SDK_VERSION = 34
25+
def DEFAULT_TARGET_SDK_VERSION = 35
2726

2827
android {
2928
compileSdkVersion safeExtGet('compileSdkVersion', DEFAULT_COMPILE_SDK_VERSION)
30-
buildToolsVersion safeExtGet('buildToolsVersion', DEFAULT_BUILD_TOOLS_VERSION)
3129

3230
defaultConfig {
3331
minSdkVersion safeExtGet('minSdkVersion', DEFAULT_MIN_SDK_VERSION)

‎example/android/app/build.gradle

-2
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,6 @@ def enableProguardInReleaseBuilds = false
7070
def jscFlavor = 'org.webkit:android-jsc:+'
7171

7272
android {
73-
ndkVersion rootProject.ext.ndkVersion
74-
buildToolsVersion rootProject.ext.buildToolsVersion
7573
compileSdk rootProject.ext.compileSdkVersion
7674

7775
namespace "com.linkreactnative"

‎example/android/build.gradle

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
buildscript {
22
ext {
3-
buildToolsVersion = "34.0.0"
43
minSdkVersion = 26
5-
compileSdkVersion = 34
6-
targetSdkVersion = 34
7-
ndkVersion = "25.1.8937393"
4+
compileSdkVersion = 35
5+
targetSdkVersion = 35
86
kotlinVersion = "1.8.0"
97
}
108
repositories {

0 commit comments

Comments
 (0)
Please sign in to comment.