blob: 88f163a2251039e2d6c54b70b8d1756971f18bab [file] [log] [blame]
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
}
android {
namespace 'com.android.tools.screensharing.benchmark'
compileSdk 33
defaultConfig {
applicationId "com.android.tools.screensharing.benchmark"
minSdk 21
targetSdk 33
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
debuggable false
// We use the debug signing config here because we want to be able
// to install this anywhere but we still want all of the shrinking,
// etc. This app won't ever be distributed via the Play Store, so
// we don't need a "release" signing config.
signingConfig signingConfigs.debug
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
buildFeatures {
viewBinding true
}
}
dependencies {
implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.5.0'
}