You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
780 B
39 lines
780 B
7 months ago
|
buildscript {
|
||
|
dependencies {
|
||
|
classpath "com.android.tools.build:gradle:$abt_plugin_version"
|
||
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$test_kotlin_version"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
plugins {
|
||
|
id 'org.jetbrains.dokka-android'
|
||
|
}
|
||
|
|
||
|
|
||
|
apply plugin: 'com.android.library'
|
||
|
apply plugin: 'kotlin-android'
|
||
|
apply plugin: 'org.jetbrains.dokka-android'
|
||
|
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion Integer.parseInt(sdk_version)
|
||
|
buildToolsVersion abt_version
|
||
|
|
||
|
sourceSets {
|
||
|
main.java.srcDirs += 'src/main/kotlin'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
api(project(":jlib"))
|
||
|
}
|
||
|
|
||
|
dokka {
|
||
|
dokkaFatJar = new File(dokka_fatjar)
|
||
|
|
||
|
externalDocumentationLink {
|
||
|
url = new URL("https://example.com")
|
||
|
packageListUrl = file("$rootDir/package-list").toURI().toURL()
|
||
|
}
|
||
|
}
|