python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
What does gradle classifier: 'core'?
I had conflict with the protobuf dependency of hive and another package that depends on protobuf. I solved the problem with "classifier: 'core'":
implementation group: 'org.apache.hive', nam...

Paulo Moreira
Votes: 0
Answers: 1
Unresolved reference.None of the following candidates is applicable because of receiver type mismatch: when using protobuf plugin in gradle kotlin dsl
I'm using com.google.protobuf gradle plugin in my project for generating java classes from proto files.
Below is my build.gradle which works fine.
buildscript {
repositories {
mavenCentral()
...
Rajkumar Natarajan
Votes: 0
Answers: 0
Cannot convert byte array back to Protobuf String
@Test
public void test() throws InvalidProtocolBufferException {
byte[] testString = StringValue.newBuilder()
.setValue("testString")
...
keyboard_smasher
Votes: 0
Answers: 0
Datastore · Chaining serializers / Default values
The core problem is that I want to set default values for child messages. Since proto3 doesn't allow the setting of default values in the proto file.
Example Protobuf
message Person {
int32 age = 1;...
Knossos
Votes: 0
Answers: 0