我在哪里可以找到" CloudEndpointUtils"?

时间:2014-10-11 12:16:16

标签: android google-app-engine

我正在创建一个带有谷歌应用引擎后端的Android应用。

尝试从Google数据存储中读取数据时,我发现我应该使用名为" CloudEndpointUtils" - 但我无法做到,因为它不被认为是已知变量。

我不知道在哪里可以找到这些工具。我不知道在哪里看......你能指点我正确的方向吗?

    Myendpoint.Builder endpointBuilder = new Myendpoint.Builder(
                    AndroidHttp.newCompatibleTransport(), new JacksonFactory(),
                    null);

////This line shows an error because CloudEndpointUtils is not a known class...  But how do I add it???
           endpointBuilder =     CloudEndpointUtils.updateBuilder(endpointBuilder).setApplicationName(MainActivity.APPLICATION_NAME);

            endpoint = endpointBuilder.build();

            try {
                 result = endpoint.listStuff().execute();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
                // SynchKey = 0;
                // result = null;
            }

            return result;

1 个答案:

答案 0 :(得分:1)