2017-05-06 06:39:10 +09:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2018-01-05 03:52:25 +09:00
|
|
|
compileSdkVersion 27
|
|
|
|
buildToolsVersion '27.0.3'
|
2017-05-06 06:39:10 +09:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 21
|
2018-01-05 03:52:25 +09:00
|
|
|
targetSdkVersion 27
|
2017-05-06 06:39:10 +09:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2018-05-06 17:09:18 +09:00
|
|
|
|
2017-05-06 06:39:10 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-03-27 12:07:40 +09:00
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation 'commons-io:commons-io:2.6'
|
2017-05-06 06:39:10 +09:00
|
|
|
}
|