benchmark: init

This commit is contained in:
Harsh Shandilya 2022-06-21 11:17:37 +05:30
parent d8d43a4c88
commit a66a915e16
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
12 changed files with 189 additions and 1 deletions

View file

@ -17,6 +17,20 @@ android {
versionCode = 1
versionName = "1.0"
}
buildTypes {
create("benchmark") {
signingConfig = signingConfigs.getByName("debug")
matchingFallbacks += listOf("release")
isDebuggable = false
setProguardFiles(
listOf(
"proguard-android-optimize.pro",
"proguard-rules.pro",
"proguard-rules-missing-classes.pro",
)
)
}
}
}
dependencies {