blob: d7a62e11140f8b21480257cf1705a485eaba1391 [file] [log] [blame]
Hyunyoung Song719eee22018-11-01 23:12:54 -07001apply plugin: 'com.android.library'
2
3android {
Sunny Goyala5de7c72019-01-30 11:40:38 -08004 compileSdkVersion COMPILE_SDK
Hyunyoung Song719eee22018-11-01 23:12:54 -07005 buildToolsVersion BUILD_TOOLS_VERSION
Hyunyoung Song719eee22018-11-01 23:12:54 -07006
7 defaultConfig {
Sunny Goyal8c48d8b2019-01-25 15:10:18 -08008 minSdkVersion 25
Hyunyoung Song719eee22018-11-01 23:12:54 -07009 targetSdkVersion 28
10 versionCode 1
11 versionName "1.0"
12 }
13
14 sourceSets {
15 main {
Sunny Goyal202fabf2018-11-09 11:13:10 -080016 java.srcDirs = ['src', 'src_full_lib']
Hyunyoung Song719eee22018-11-01 23:12:54 -070017 manifest.srcFile 'AndroidManifest.xml'
18 res.srcDirs = ['res']
19 }
20 }
21
22 lintOptions {
23 abortOnError false
24 }
25
26 tasks.withType(JavaCompile) {
27 options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
28 }
Sunny Goyal9a4c5be2018-11-07 13:15:46 -080029
30 compileOptions {
31 sourceCompatibility JavaVersion.VERSION_1_8
32 targetCompatibility JavaVersion.VERSION_1_8
33 }
Hyunyoung Song719eee22018-11-01 23:12:54 -070034}
35
Hyunyoung Song719eee22018-11-01 23:12:54 -070036dependencies {
37 implementation "androidx.core:core:${ANDROID_X_VERSION}"
38}