blob: 07f6bcabb907ec3e1154111f4b6a35e7581eaa2f [file] [log] [blame]
John Reckd136ce92016-08-08 12:25:59 -07001apply plugin: 'com.android.application'
2
3android {
ramindani1a4ceb72022-07-26 16:47:24 +00004 compileSdkVersion 33
John Reckd136ce92016-08-08 12:25:59 -07005
6 defaultConfig {
7 applicationId "com.prefabulated.touchlatency"
Ady Abraham97ef90f2022-10-19 15:39:44 -07008 minSdkVersion 30
ramindani1a4ceb72022-07-26 16:47:24 +00009 targetSdkVersion 33
John Reckd136ce92016-08-08 12:25:59 -070010 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 }
Ady Abraham97ef90f2022-10-19 15:39:44 -070019
20 dependencies {
21 implementation 'androidx.appcompat:appcompat:1.5.1'
22 implementation 'com.google.android.material:material:1.6.0'
23 }
John Reckd136ce92016-08-08 12:25:59 -070024}