mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-08 05:47:05 +09:00
Integrate Dokka (#167)
This commit is contained in:
parent
96451d132b
commit
e6e0936072
3 changed files with 7 additions and 3 deletions
|
@ -4,9 +4,10 @@
|
|||
|
||||
### New features
|
||||
|
||||
* User can now use olor toolbar to change the text color of the whole text block (#153)
|
||||
* User can now use color toolbar to change the text color of the whole text block (#153)
|
||||
* `Block.Content.Text` model now has optional `color` property (#153).
|
||||
* Can add/remove links to text + opens links in web browser.
|
||||
* User can add or remove links from text and open these links in a web browser (#112).
|
||||
* Added documentation engine (`DOKKA`) for `domain` module: documentation is generated automatically from KDoc (#168).
|
||||
|
||||
### Fixes
|
||||
|
||||
|
|
|
@ -5,6 +5,7 @@ buildscript {
|
|||
ext.gradle_tools = '3.1.3'
|
||||
ext.build_tools = '29.0.0'
|
||||
ext.nav_version = '2.2.0-rc01'
|
||||
ext.dokka_version = '0.10.0'
|
||||
|
||||
ext.compile_sdk = 29
|
||||
ext.target_sdk = 29
|
||||
|
@ -30,6 +31,7 @@ buildscript {
|
|||
classpath 'com.google.gms:google-services:4.3.3'
|
||||
classpath 'io.fabric.tools:gradle:1.31.1'
|
||||
classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.10"
|
||||
classpath "org.jetbrains.dokka:dokka-gradle-plugin:${dokka_version}"
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -48,4 +50,4 @@ task clean(type: Delete) {
|
|||
|
||||
task runUnitTests(dependsOn: [':app:testDebugUnitTest']) {
|
||||
description 'Run all unit tests'
|
||||
}
|
||||
}
|
|
@ -1,4 +1,5 @@
|
|||
apply plugin: 'kotlin'
|
||||
apply plugin: 'org.jetbrains.dokka'
|
||||
|
||||
dependencies {
|
||||
def applicationDependencies = rootProject.ext.mainApplication
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue