husnjak / IGDB-API-JVM

Wrapper for IGDBs API written in Kotlin should work for all JVM based languages, tested in Kotlin & Java
MIT License
37 stars 10 forks source link

Cannot access com.google.protobuf.GeneratedMessageV3 Java error #11

Closed DiegoJohnsonL closed 3 years ago

DiegoJohnsonL commented 3 years ago

Hello, first of all thanks for the all the work to build this library. I wanted to use it on java but came across an error that happens when trying to access the getter functions in the proto.Game class.

Error Image: image

sitatec commented 3 years ago

I have the same error. Have you fixed it?

sitatec commented 3 years ago

Adding Google Protobuf as a dependency in the app module's build.gradle works for me: implementation 'com.google.protobuf:protobuf-java:3.15.3'

DiegoJohnsonL commented 3 years ago

Adding Google Protobuf as a dependency in the app module's build.gradle works for me: implementation 'com.google.protobuf:protobuf-java:3.15.3'

Thank you very much!