Files
StackLayoutManager/build.gradle
leafwai 046e67bf78 1.迁移到AndroidX
2.修改支持无限循环滑动
2022-02-17 15:43:46 +08:00

33 lines
812 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.6.10'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.2'
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