mirror of
https://github.com/tateisu/SubwayTooter
synced 2025-01-11 08:53:54 +01:00
9707364bb0
- com.android.tools.build:gradle:3.1.0 - Gradle 4.4 - Kotlin 1.2.31-release-Studio3.1-1 - firebase-core:12.0.0 - firebase-messaging:12.0.0
26 lines
563 B
Groovy
26 lines
563 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 {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'commons-io:commons-io:2.6'
|
|
}
|