Skip to content

Commit eea053a

Browse files
Merge pull request #155 from backtrace-labs/bump-sdk-34
Bump Android SDK to v34
2 parents bafe650 + 31be646 commit eea053a

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

backtrace-library/build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,11 @@ androidGitVersion {
1010
}
1111

1212
android {
13-
14-
compileSdkVersion 33
1513
namespace "backtraceio.library"
1614
defaultConfig {
1715
minSdkVersion 21
18-
targetSdkVersion 33
16+
compileSdk 34
17+
targetSdkVersion 34
1918
versionName androidGitVersion.name()
2019
versionCode androidGitVersion.code()
2120
buildConfigField("String", "VERSION_NAME", "\"${versionName}\"")
@@ -88,8 +87,8 @@ dependencies {
8887
androidTestImplementation 'androidx.test:rules:1.6.1'
8988
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
9089
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
91-
androidTestImplementation 'org.mockito:mockito-core:5.2.0'
92-
androidTestImplementation "org.mockito:mockito-android:2.28.2"
90+
androidTestImplementation 'org.mockito:mockito-core:5.12.0'
91+
androidTestImplementation "org.mockito:mockito-android:5.12.0"
9392
}
9493

9594
apply from: 'publish.gradle'

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
mavenCentral()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:8.3.0'
10+
classpath 'com.android.tools.build:gradle:8.3.2'
1111
// NOTE: Do not place your application dependencies here; they belong
1212
// in the individual module build.gradle files
1313
}

coroner-client/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ dependencies {
1111
implementation fileTree(dir: 'libs', include: ['*.jar'])
1212
implementation 'com.google.code.gson:gson:2.11.0'
1313
testImplementation 'junit:junit:4.13.2'
14-
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.2.0'
15-
}
14+
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.12.0'
15+
}

example-app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 34
54
namespace "backtraceio.backtraceio"
65
defaultConfig {
6+
compileSdk 34
77
applicationId "backtraceio.backtraceio"
88
minSdkVersion 21
99
targetSdkVersion 34

0 commit comments

Comments
 (0)