Skip to content

Commit c43a7be

Browse files
committed
feat: update compile sdk version to API 34 for example apps
1 parent c73a81c commit c43a7be

File tree

11 files changed

+22
-24
lines changed

11 files changed

+22
-24
lines changed

Adjust/example-app-fbpixel/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 33
4+
compileSdk 34
55

66
defaultConfig {
77
applicationId "com.adjust.examples"
88
minSdkVersion 17
9-
targetSdkVersion 33
9+
targetSdkVersion 34
1010
versionCode 1
1111
versionName "1.0"
1212
}

Adjust/example-app-java/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"
1414
minSdkVersion 14
15-
targetSdkVersion 33
15+
targetSdkVersion 34
1616
versionCode 1
1717
versionName "1.0"
1818
}

Adjust/example-app-kotlin/build.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
apply plugin: 'com.android.application'
22
apply plugin: 'kotlin-android'
33
android {
4-
compileSdkVersion 33
5-
6-
4+
compileSdk 34
75

86
defaultConfig {
97
applicationId "com.adjust.examples"
108
minSdkVersion 14
11-
targetSdkVersion 33
9+
targetSdkVersion 34
1210
versionCode 1
1311
versionName "1.0"
1412

Adjust/example-app-tv/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"
1414
minSdkVersion 21
15-
targetSdkVersion 33
15+
targetSdkVersion 34
1616
versionCode 1
1717
versionName "1.0"
1818
}

Adjust/example-app-webbridge/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 33
4+
compileSdk 34
55

66
defaultConfig {
77
applicationId "com.example.examples"
88
minSdkVersion 17
9-
targetSdkVersion 33
9+
targetSdkVersion 34
1010
versionCode 1
1111
versionName "1.0"
1212
}

Adjust/test-app-core/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 33
4+
compileSdk 34
55

66
defaultConfig {
77
applicationId "com.adjust.testapp"
88
minSdkVersion 14
9-
targetSdkVersion 33
9+
targetSdkVersion 34
1010
versionCode 1
1111
versionName "1.0"
1212
}

Adjust/test-app-webbridge/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 33
4+
compileSdk 34
55

66
defaultConfig {
77
applicationId "com.example.testappwebbridge"
88
minSdkVersion 17
9-
targetSdkVersion 33
9+
targetSdkVersion 34
1010
versionCode 1
1111
versionName "1.0"
1212
}

Adjust/test-kotlin/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
apply plugin: 'com.android.application'
22
apply plugin: 'kotlin-android'
33
android {
4-
compileSdkVersion 33
4+
compileSdk 34
55

66
defaultConfig {
77
applicationId "com.adjust.sdk.test"
8-
targetSdkVersion 33
8+
targetSdkVersion 34
99
minSdkVersion 9
1010

1111
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Adjust/test-library/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 33
4+
compileSdk 34
55

66
defaultConfig {
77
minSdkVersion 9
8-
targetSdkVersion 33
8+
targetSdkVersion 34
99
}
1010
namespace 'com.adjust.test_library'
1111
}

Adjust/test-options/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ plugins {
33
}
44

55
android {
6-
compileSdkVersion 33
6+
compileSdk 34
77

88
defaultConfig {
99
minSdkVersion 9
10-
targetSdkVersion 33
10+
targetSdkVersion 34
1111
}
1212
namespace 'com.adjust.test_options'
1313
}

0 commit comments

Comments
 (0)