lightcontrol/app/build.gradle

36 lines
1.1 KiB
Groovy
Raw Permalink Normal View History

2018-12-21 17:52:39 +08:00
apply plugin: 'com.android.application'
android {
2021-12-11 18:58:07 +08:00
compileSdkVersion 29
2018-12-21 17:52:39 +08:00
defaultConfig {
applicationId "aixiao.lightcontrol"
minSdkVersion 14
2021-12-11 18:58:07 +08:00
targetSdkVersion 29
2018-12-21 17:52:39 +08:00
versionCode 1
2021-12-11 18:58:07 +08:00
versionName "1.1"
2018-12-21 17:52:39 +08:00
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2021-12-11 18:58:07 +08:00
buildToolsVersion = '28.0.3'
2018-12-21 17:52:39 +08:00
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
2021-12-11 18:58:07 +08:00
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.13'
2018-12-21 17:52:39 +08:00
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
2021-12-11 18:58:07 +08:00
2018-12-21 17:52:39 +08:00
implementation 'com.android.support:cardview-v7:28.0.0'
implementation group: 'commons-io', name: 'commons-io', version: '2.6'
}
2021-12-11 18:58:07 +08:00