Skip to content

Commit 9da772e

Browse files
authored
Fix startup check failures (#6820)
Per [b/407077784](https://b.corp.google.com/issues/407077784), This bumps the `compileSdkVersion` and `targetSdkVersion` within our health metrics test app and benchmarks to match what our SDKs actually use. This also fixes the issue with our startup checks failing due to certain SDK dependencies requiring a higher compile target.
1 parent cf2b7a8 commit 9da772e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

health-metrics/benchmark/template/app/build.gradle.mustache

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ plugins {
2121
}
2222

2323
android {
24-
compileSdkVersion 32
24+
compileSdkVersion 34
2525
2626
namespace "com.google.firebase.benchmark"
2727
2828
defaultConfig {
2929
applicationId 'com.google.firebase.benchmark'
3030
minSdkVersion 29
31-
targetSdkVersion 32
31+
targetSdkVersion 34
3232
versionCode 1
3333
versionName '1.0'
3434

health-metrics/benchmark/template/macrobenchmark/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ android {
3333

3434
defaultConfig {
3535
minSdk 29
36-
targetSdk 32
36+
targetSdk 34
3737

3838
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
3939
}

0 commit comments

Comments
 (0)