mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-10 18:10:44 +09:00

* Added use-cases for creating a new page and closing a dashboard. * Added use-case for getting the config. * Changed open-dashboard-use-case implementation. Also added tests for this use case. * Updated proto files * Enabled collapsing toolbar
17 lines
No EOL
361 B
Groovy
17 lines
No EOL
361 B
Groovy
apply plugin: 'java-library'
|
|
apply plugin: 'com.google.protobuf'
|
|
|
|
sourceSets{
|
|
main.java.srcDirs += "${protobuf.generatedFilesBaseDir}/main/java"
|
|
}
|
|
|
|
dependencies {
|
|
def protobufDependencies = rootProject.ext.protobuf
|
|
implementation protobufDependencies.protobufJava
|
|
}
|
|
|
|
protobuf {
|
|
protoc {
|
|
artifact = rootProject.ext.protobuf.protoc
|
|
}
|
|
} |