I am trying to implement and add google vision services to my project using the below github sample code link. https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/vision/text/ Running into this error in ImageText and Word java classes where
public static Builder builder() {
return new AutoValue_ImageText.Builder();
}
where AutoValue_ImageText type can not be resolved and
public static Builder builder() {
return new AutoValue_Word.Builder();
}
where AutoValue_Word type cannot be resolved. please help! i can not even fix these syntax errors to see if this code even complies properly. thank you in advance