apply plugin: "com.google.protobuf" dependencies { implementation "com.google.protobuf:protobuf-javalite:3.21.1" } protobuf { // Configure the protoc executable protoc { artifact = "com.google.protobuf:protoc:3.21.1" } generateProtoTasks { all().each { task -> task.builtins { remove java java { option "lite" } } } } }