-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (32 loc) · 1.19 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'com.github.dcendents.android-maven'
group='com.github.lunxinfeng'
android {
compileSdkVersion rootProject.ext.build_version.compileSdkVersion
defaultConfig {
minSdkVersion rootProject.ext.build_version.minSdkVersion
targetSdkVersion rootProject.ext.build_version.targetSdkVersion
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
compileOnly rootProject.ext.dependencies.appcompatV7
// testImplementation rootProject.ext.dependencies.test_junit
// androidTestImplementation rootProject.ext.dependencies.test_runner
// androidTestImplementation rootProject.ext.dependencies.test_espresso
compileOnly "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
compileOnly rootProject.ext.dependencies.rxJava
}
repositories {
mavenCentral()
}