1
0
mirror of https://github.com/tateisu/SubwayTooter synced 2024-12-24 16:11:12 +01:00
SubwayTooter-Android-App/exif/build.gradle
tateisu b2e09f2b24 change codes from .java to .kt, also many codes refactored.
emoji data is moved to its own modlule.
2018-01-09 13:43:05 +09:00

26 lines
549 B
Groovy

apply plugin: 'com.android.library'
android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
defaultConfig {
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'commons-io:commons-io:2.6'
}