Skip to content Skip to sidebar Skip to footer

Migrating To Cloud Endpoints Frameworks 2.0 For App Engine

I'm currently trying to migrate from Cloud Endpoints 1.0 to Cloud Endpoints Frameworks 2.0. I've followed the steps outlined here: https://cloud.google.com/appengine/docs/java/endp

Solution 1:

Since the Gradle plugin is in the progress of being updated, for now you need to comment out/delete the endpoints fragment so that client libraries aren't generated on build. Then, if you need to generate client libraries, do it manually for now.

Solution 2:

New plugin now available, transition guide: https://github.com/GoogleCloudPlatform/endpoints-framework-gradle-plugin/blob/master/ANDROID_README.md

(or https://cloud.google.com/endpoints/docs/frameworks/legacy/v1/java/migrating-android)

Don't forget to also follow the migration guide: https://cloud.google.com/appengine/docs/java/endpoints/migrating?authuser=0

Solution 3:

Hi don't know if you fixed it already but this solved my problem

compile 'com.google.endpoints:endpoints-framework:2.0.0-beta.9'

Post a Comment for "Migrating To Cloud Endpoints Frameworks 2.0 For App Engine"