padlanau
padlanau

Reputation: 257

Google Cloud Speech API protobuf is causing 'debugAndroidTestCompile' not found

I have copied and compiled the source code for speech api last month on this location https://github.com/GoogleCloudPlatform/android-docs-samples/tree/master/speech/Speech and works. Now, when I revisited it, I'm having a Configuration with name 'debugAndroidTestCompile' not found. error.

What is causing this? If you ask me how did I know it is the one, I did the process of elimination. I removed one by one on the gradle file and sync. When I removed apply plugin: 'com.google.protobuf' the error disappears.

Upvotes: 3

Views: 2179

Answers (1)

Angga
Angga

Reputation: 161

Update the protobuf version to the latest in build.gradle. Currently it's 0.8.8, check the latest version from the GitHub repository Protobuf Plugin for Gradle.

buildscript {
  repositories {
    mavenCentral()
  }
  dependencies {
    classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.8'
  }
}

Upvotes: 14

Related Questions