Skip to content

Commit 4d4c412

Browse files
committed
feat: update compile sdk version to API 34
1 parent e601fb0 commit 4d4c412

File tree

11 files changed

+14
-14
lines changed

11 files changed

+14
-14
lines changed

Adjust/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ subprojects {
77
ext {
88
// Android config.
99
coreMinSdkVersion = 9
10-
coreCompileSdkVersion = 33
11-
coreTargetSdkVersion = 33
10+
coreCompileSdkVersion = 34
11+
coreTargetSdkVersion = 34
1212
coreVersionName = '4.37.0'
1313
defaultVersionCode = 1
1414
webbridgeMinSdkVersion = 17
@@ -27,7 +27,7 @@ buildscript {
2727
google()
2828
}
2929
dependencies {
30-
classpath 'com.android.tools.build:gradle:8.1.1'
30+
classpath 'com.android.tools.build:gradle:8.1.4'
3131

3232
// NOTE: Do not place your application dependencies here; they belong
3333
// in the individual module build.gradle files.

Adjust/example-app-keyboard/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ repositories {
77
}
88

99
android {
10-
compileSdkVersion 33
10+
compileSdk 34
1111

1212
defaultConfig {
1313
applicationId "com.adjust.examples.keyboard"
1414
minSdkVersion 14
15-
targetSdkVersion 33
15+
targetSdkVersion 34
1616
versionCode 1
1717
versionName "1.0"
1818
}

Adjust/sdk-core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'maven-publish'
33
apply plugin: 'signing'
44

55
android {
6-
compileSdkVersion rootProject.ext.coreCompileSdkVersion
6+
compileSdk rootProject.ext.coreCompileSdkVersion
77

88
publishing {
99
multipleVariants {

Adjust/sdk-plugin-criteo/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
}
1010

1111
android {
12-
compileSdkVersion rootProject.ext.coreCompileSdkVersion
12+
compileSdk rootProject.ext.coreCompileSdkVersion
1313

1414
publishing {
1515
multipleVariants {

Adjust/sdk-plugin-imei/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
}
1010

1111
android {
12-
compileSdkVersion rootProject.ext.coreCompileSdkVersion
12+
compileSdk rootProject.ext.coreCompileSdkVersion
1313

1414
publishing {
1515
multipleVariants {

Adjust/sdk-plugin-oaid/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ repositories {
1212
}
1313

1414
android {
15-
compileSdkVersion rootProject.ext.coreCompileSdkVersion
15+
compileSdk rootProject.ext.coreCompileSdkVersion
1616

1717
publishing {
1818
multipleVariants {

Adjust/sdk-plugin-sociomantic/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
}
1010

1111
android {
12-
compileSdkVersion rootProject.ext.coreCompileSdkVersion
12+
compileSdk rootProject.ext.coreCompileSdkVersion
1313
publishing {
1414
multipleVariants {
1515
allVariants()

Adjust/sdk-plugin-trademob/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
}
1010

1111
android {
12-
compileSdkVersion rootProject.ext.coreCompileSdkVersion
12+
compileSdk rootProject.ext.coreCompileSdkVersion
1313
publishing {
1414
multipleVariants {
1515
allVariants()

Adjust/sdk-plugin-vivo-referrer/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
}
1010

1111
android {
12-
compileSdkVersion rootProject.ext.coreCompileSdkVersion
12+
compileSdk rootProject.ext.coreCompileSdkVersion
1313

1414
publishing {
1515
multipleVariants {

Adjust/sdk-plugin-webbridge/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
}
1010

1111
android {
12-
compileSdkVersion rootProject.ext.coreCompileSdkVersion
12+
compileSdk rootProject.ext.coreCompileSdkVersion
1313

1414
publishing {
1515
multipleVariants {

0 commit comments

Comments
 (0)