Skip to content

Commit

Permalink
Bump gradle from 7.2.2 to 7.3.0 (#357)
Browse files Browse the repository at this point in the history
* Bump gradle from 7.2.2 to 7.3.0

Bumps gradle from 7.2.2 to 7.3.0.

---
updated-dependencies:
- dependency-name: com.android.tools.build:gradle
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* set target sdk to 33

* bump roboelectric

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Mateusz Rzeszutek <[email protected]>
  • Loading branch information
dependabot[bot] and Mateusz Rzeszutek authored Oct 3, 2022
1 parent 31b481d commit cc0853f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}
dependencies {
// keep this version in sync with /buildSrc/build.gradle.kts
classpath("com.android.tools.build:gradle:7.2.2")
classpath("com.android.tools.build:gradle:7.3.0")
}
}

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repositories {

dependencies {
// keep this version in sync with /build.gradle.kts
implementation("com.android.tools.build:gradle:7.2.2")
implementation("com.android.tools.build:gradle:7.3.0")

implementation("com.diffplug.spotless:spotless-plugin-gradle:6.9.0")
implementation("net.ltgt.gradle:gradle-errorprone-plugin:2.0.2")
Expand Down
4 changes: 2 additions & 2 deletions sample-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ val localProperties = Properties()
localProperties.load(FileInputStream(rootProject.file("local.properties")))

android {
compileSdk = 32
compileSdk = 33
buildToolsVersion = "30.0.3"

defaultConfig {
applicationId = "com.splunk.android.sample"
minSdk = 21
targetSdk = 32
targetSdk = 33
versionCode = 1
versionName = "1.0"

Expand Down
6 changes: 3 additions & 3 deletions splunk-otel-android-volley/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ plugins {
}

android {
compileSdk = 32
compileSdk = 33
buildToolsVersion = "30.0.3"

defaultConfig {
minSdk = 21
targetSdk = 32
targetSdk = 33

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles("consumer-rules.pro")
Expand Down Expand Up @@ -66,7 +66,7 @@ dependencies {
testImplementation("junit:junit:4.13.2")
testImplementation("org.assertj:assertj-core:3.23.1")
testImplementation("io.opentelemetry:opentelemetry-sdk-testing")
testImplementation("org.robolectric:robolectric:4.8.2")
testImplementation("org.robolectric:robolectric:4.9")
testImplementation("org.mockito:mockito-core:4.8.0")
testImplementation("androidx.test:core:1.4.0")
testImplementation("com.google.mockwebserver:mockwebserver:20130706")
Expand Down
8 changes: 4 additions & 4 deletions splunk-otel-android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ plugins {
}

android {
compileSdk = 32
compileSdk = 33
buildToolsVersion = "30.0.3"

defaultConfig {
minSdk = 21
targetSdk = 32
targetSdk = 33

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles("consumer-rules.pro")
Expand Down Expand Up @@ -45,7 +45,7 @@ val otelAlphaVersion = "$otelVersion-alpha"

dependencies {
implementation("androidx.appcompat:appcompat:1.5.1")
implementation("androidx.core:core:1.8.0")
implementation("androidx.core:core:1.9.0")
implementation("androidx.navigation:navigation-fragment:2.5.2")

api(platform("io.opentelemetry:opentelemetry-bom:$otelVersion"))
Expand All @@ -64,7 +64,7 @@ dependencies {
testImplementation("junit:junit:4.13.2")
testImplementation("org.mockito:mockito-core:4.8.0")
testImplementation("io.opentelemetry:opentelemetry-sdk-testing")
testImplementation("org.robolectric:robolectric:4.8.2")
testImplementation("org.robolectric:robolectric:4.9")
testImplementation("androidx.test:core:1.4.0")
testImplementation("org.assertj:assertj-core:3.23.1")

Expand Down

0 comments on commit cc0853f

Please sign in to comment.