25 lines
592 B
Groovy
25 lines
592 B
Groovy
|
|
apply plugin: 'com.android.application'
|
||
|
|
|
||
|
|
android {
|
||
|
|
compileSdkVersion 33
|
||
|
|
|
||
|
|
defaultConfig {
|
||
|
|
applicationId "com.prefabulated.touchlatency"
|
||
|
|
minSdkVersion 30
|
||
|
|
targetSdkVersion 33
|
||
|
|
versionCode 1
|
||
|
|
versionName "1.0"
|
||
|
|
}
|
||
|
|
buildTypes {
|
||
|
|
release {
|
||
|
|
minifyEnabled false
|
||
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
implementation 'androidx.appcompat:appcompat:1.5.1'
|
||
|
|
implementation 'com.google.android.material:material:1.6.0'
|
||
|
|
}
|
||
|
|
}
|