blob: 2594322e37271f66fb7452805b01135e62a26ffe [file] [log] [blame]
John Reckd136ce92016-08-08 12:25:59 -07001apply plugin: 'com.android.application'
2
3android {
Adrian Salidobeefecc2018-11-27 14:30:35 -08004 compileSdkVersion 28
5 buildToolsVersion '28.0.3'
John Reckd136ce92016-08-08 12:25:59 -07006
7 defaultConfig {
8 applicationId "com.prefabulated.touchlatency"
9 minSdkVersion 21
Adrian Salidobeefecc2018-11-27 14:30:35 -080010 targetSdkVersion 28
John Reckd136ce92016-08-08 12:25:59 -070011 versionCode 1
12 versionName "1.0"
13 }
14 buildTypes {
15 release {
16 minifyEnabled false
17 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18 }
19 }
20}