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
It looks like I am receiving this error:
Execution failed for task ':app:generateDebugProto'. > protoc: stdout: . stderr: Missing output directives.
I believe I have correctly configured both my project and app level gradles:
project gradle
buildscript { dependencies { classpath "com.google.protobuf:protobuf-gradle-plugin:$proto_version" } } plugins { id 'org.jetbrains.kotlinx.kover' version "$kover_version" id "com.google.protobuf" version "$proto_version" apply false }
app gradle
apply plugin: 'com.google.protobuf' apply plugin: 'com.android.application' protobuf { protoc { artifact = 'com.google.protobuf:protoc:3.21.12' } plugins { javalite { artifact = 'com.google.protobuf:protoc-gen-javalite:3.0.0' } } generateProtoTasks { ofSourceSet("main").forEach { task -> task.builtins { getByName("java") { option("lite") } getByName("kotlin") { option("lite") } } task.plugins { javalite { } } } } } dependencies { implementation 'com.google.protobuf:protobuf-javalite:3.23.0' implementation 'com.google.protobuf:protobuf-kotlin-lite:3.23.0' }
The text was updated successfully, but these errors were encountered:
same error. This issue comment helped me solve the problem
Sorry, something went wrong.
No branches or pull requests
It looks like I am receiving this error:
I believe I have correctly configured both my project and app level gradles:
project gradle
app gradle
The text was updated successfully, but these errors were encountered: