fileImports

Available in a dev version: 0․11․0-grpc-186

How to configure

abstract val fileImports: ConfigurableFileCollection(source)

A collection of proto files that are imported by this source set but do not belong to any other source set.

Example:

kotlin.sourceSets {
commonMain {
proto {
fileImports.from("path/to/proto/file.proto")
}
}
}