Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove benchmark build type #272

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading