I have a Androiud project that uses Android Studio with backend module.
I'm trying to migrate google appengine from V1 To V2 as per tutorial:
https://cloud.google.com/endpoints/docs/frameworks/legacy/v1/java/migratingAfter perform all changes as per tutorial, I'm getting following error in my app build.gradle:
Could not resolve project :backend.
Required by:
project :app
> Project :app declares a dependency from configuration 'compile' to configuration 'android-endpoints' which is not declared in the descriptor for project :backend.
This is pointing to line: compile project(path: ':backend', configuration: 'android-endpoints')
android {
...
}
dependencies { ...
compile project(path: ':backend', configuration: 'android-endpoints')
...
}
Looks like I can no longer use configuration: 'android-endoints'.
Can anyone help me to fix this problem?
Thx in advance.