We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Building with Jetpack Compose and following this example: https://github.com/grpc/grpc-kotlin/blob/master/examples/stub/build.gradle.kts, I have tried to generate kotlin/java from proto declarations but it seems no output file is generated. I cannot find output files anywhere.
dependencies { // GRPC Dependencies api("io.grpc:grpc-stub:${rootProject.ext["grpcVersion"]}") api("io.grpc:grpc-protobuf:${rootProject.ext["grpcVersion"]}") api("com.google.protobuf:protobuf-java-util:${rootProject.ext["protobufVersion"]}") api("com.google.protobuf:protobuf-kotlin:${rootProject.ext["protobufVersion"]}") api("io.grpc:grpc-kotlin-stub:${rootProject.ext["grpcKotlinVersion"]}") } protobuf { protoc { artifact = "com.google.protobuf:protoc:${rootProject.ext["protobufVersion"]}" } plugins { create("grpc") { artifact = "io.grpc:protoc-gen-grpc-java:${rootProject.ext["grpcVersion"]}" } create("grpckt") { artifact = "io.grpc:protoc-gen-grpc-kotlin:${rootProject.ext["grpcKotlinVersion"]}:jdk8@jar" } } generateProtoTasks { all().forEach { it.plugins { create("grpc") create("grpckt") } it.builtins { create("kotlin") create("java") } it.addIncludeDir(fileTree("full-path-to-input-folder")) } } }
Running ./gradlew generateProto is successful but I can't find output files or declarations.
./gradlew generateProto
Thanks for your help.
The text was updated successfully, but these errors were encountered:
They should be in your project's build dir. If not, I will likely need a project that reproduces the issue.
build
Sorry, something went wrong.
No branches or pull requests
Building with Jetpack Compose and following this example: https://github.com/grpc/grpc-kotlin/blob/master/examples/stub/build.gradle.kts, I have tried to generate kotlin/java from proto declarations but it seems no output file is generated. I cannot find output files anywhere.
Running
./gradlew generateProto
is successful but I can't find output files or declarations.Thanks for your help.
The text was updated successfully, but these errors were encountered: