i3control/app/build.gradle

27 lines
659 B
Groovy
Raw Normal View History

2018-03-21 02:26:26 +01:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
2018-04-13 03:03:27 +02:00
defaultConfig {
applicationId "com.theedgeofrage.i3control"
minSdkVersion 27
targetSdkVersion 28
2019-01-26 02:43:33 +01:00
versionCode 5
versionName "1.1.0"
2018-04-13 03:03:27 +02:00
vectorDrawables.useSupportLibrary true
}
buildTypes {
release {
minifyEnabled true
2018-04-13 03:03:27 +02:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2018-03-21 02:26:26 +01:00
}
dependencies {
2018-04-13 03:03:27 +02:00
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
2018-04-13 03:03:27 +02:00
implementation 'com.android.volley:volley:1.1.0'
2018-03-21 02:26:26 +01:00
}