1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-10 18:10:44 +09:00
anytype-kotlin/protobuf/build.gradle
ubu 3ab1a14351
Create a new page on dashboard screen (#64)
* 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
2019-12-09 23:36:56 +03:00

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
}
}