Files
StackLayoutManager/build.gradle
LittleMango 1f0a4abfc8 Update Sample
change toobar title when recyclerview scroll to new item.
2018-09-03 19:59:51 +08:00

33 lines
810 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.2.60'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.4'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.novoda:bintray-release:0.8.1'
}
}
allprojects {
repositories {
google()
jcenter()
}
tasks.withType(Javadoc) {
options{ encoding "UTF-8"
charSet 'UTF-8'
links "http://docs.oracle.com/javase/7/docs/api"
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
tasks.getByPath(":StackLayoutManager:releaseAndroidJavadocs").enabled = false