xref: /aosp_15_r20/frameworks/base/tests/TouchLatency/app/build.gradle (revision d57664e9bc4670b3ecf6748a746a57c557b6bc9e)
1apply plugin: 'com.android.application'
2
3android {
4    compileSdkVersion 33
5
6    defaultConfig {
7        applicationId "com.prefabulated.touchlatency"
8        minSdkVersion 30
9        targetSdkVersion 33
10        versionCode 1
11        versionName "1.0"
12    }
13    buildTypes {
14        release {
15            minifyEnabled false
16            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
17        }
18    }
19
20    dependencies {
21        implementation 'androidx.appcompat:appcompat:1.5.1'
22        implementation 'com.google.android.material:material:1.6.0'
23    }
24}
25