Skip to content

Commit

Permalink
Remove benchmark build type (#272)
Browse files Browse the repository at this point in the history
This build type is no longer needed when using the Baseline Profile
Gradle plugin so we're removing it.
  • Loading branch information
keyboardsurfer committed Mar 5, 2024
1 parent e6877a6 commit ebafa50
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 22 deletions.
10 changes: 0 additions & 10 deletions MacrobenchmarkSample/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,6 @@ android {
// In real app, this would use its own release keystore
signingConfig = signingConfigs.getByName("debug")
}

create("benchmark") {
initWith(release)
signingConfig = signingConfigs.getByName("debug")
// [START_EXCLUDE silent]
// Selects release buildType if the benchmark buildType not available in other modules.
matchingFallbacks.add("release")
// [END_EXCLUDE]
proguardFiles("benchmark-rules.pro")
}
}
// [END macrobenchmark_setup_app_build_type]

Expand Down
12 changes: 0 additions & 12 deletions MacrobenchmarkSample/macrobenchmark/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -60,18 +60,6 @@ android {
targetProjectPath = ":app"
// Enable the benchmark to run separately from the app process
experimentalProperties["android.experimental.self-instrumenting"] = true

buildTypes {
// declare a build type to match the target app"s build type
create("benchmark") {
isDebuggable = true
signingConfig = signingConfigs.getByName("debug")
// [START_EXCLUDE silent]
// Selects release buildType if the benchmark buildType not available in other modules.
matchingFallbacks.add("release")
// [END_EXCLUDE]
}
}
}
// [END macrobenchmark_setup_android]

Expand Down

0 comments on commit ebafa50

Please sign in to comment.