blob: 233711055eb807bbd9e65c00513dcb7065ea6056 [file] [log] [blame]
John Reckd136ce92016-08-08 12:25:59 -07001apply plugin: 'com.android.application'
2
3android {
4 compileSdkVersion 21
5 buildToolsVersion "21.1.2"
6
7 defaultConfig {
8 applicationId "com.prefabulated.touchlatency"
9 minSdkVersion 21
10 targetSdkVersion 21
11 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}