android.developer
android.developer

Reputation: 405

Cannot resolve symbol protobuf in android application

I am trying to send protobuf data from cpp side to java side (Android Application).

I have generated .java file using protoc --java_out option and included that file in my android project.

How do I link protobuf library to my android application ?

Upvotes: 1

Views: 3101

Answers (1)

Craig Russell
Craig Russell

Reputation: 3584

If you are using Gradle to manage your project dependencies, there is a JAR available in JCenter.

Add the following to your build.gradle dependencies

compile "com.google.protobuf:protobuf-java:2.6.1"

Upvotes: 5

Related Questions