Start working on documentation.

This commit is contained in:
2020-05-13 13:36:32 -07:00
parent 55f0bec0b4
commit b18890851c
7 changed files with 56 additions and 1 deletions

View File

@@ -4,6 +4,17 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "org.jetbrains.dokka:dokka-gradle-plugin:0.10.1"
}
}
apply plugin: 'org.jetbrains.dokka'
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
@@ -23,6 +34,11 @@ android {
}
}
dokka {
outputFormat = 'html'
outputDirectory = "$buildDir/dokka"
}
repositories {
mavenCentral()
google()