Skip to content

Commit

Permalink
Creating the benchmark build type on the modules as well.
Browse files Browse the repository at this point in the history
  • Loading branch information
vitorpamplona committed Jan 6, 2024
1 parent f5f43c5 commit f877b6f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions benchmark/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,12 @@ android {
proguardFiles getDefaultProguardFile("proguard-android-optimize.txt"), "benchmark-proguard-rules.pro"
}
release {
minifyEnabled true
}
create("benchmark") {
isDefault = true
initWith(getByName("release"))
signingConfig signingConfigs.debug
}
}
}
Expand Down
6 changes: 5 additions & 1 deletion quartz/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,13 @@ android {

buildTypes {
release {
minifyEnabled false
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
create("benchmark") {
initWith(getByName("release"))
signingConfig signingConfigs.debug
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
Expand Down

0 comments on commit f877b6f

Please sign in to comment.