Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I have had similar issues playing with this tutorial. I think after they posted the code a change was made to the RPC Service in the Google Plugin because now it no longer creates a class called CloudTasksRequestFactory.java, instead it has a class CloudTasksRequest.java. Also, these two classes are very different:</p> <p>CloudTasksRequestFactory.java</p> <pre><code>package com.cloudtasks.shared; import com.google.web.bindery.requestfactory.shared.RequestFactory; public interface CloudTasksRequestFactory extends RequestFactory { TaskRequest taskRequest(); } </code></pre> <p>CloudTasksRequest.java</p> <p>package com.cloudtasks.shared;</p> <pre><code>import java.util.List; import com.google.web.bindery.requestfactory.shared.Request; import com.google.web.bindery.requestfactory.shared.RequestContext; import com.google.web.bindery.requestfactory.shared.ServiceName; @ServiceName(value = "com.cloudtasks.server.CloudTasksService", locator = "com.cloudtasks.server.CloudTasksServiceLocator") public interface CloudTasksRequest extends RequestContext { Request&lt;TaskProxy&gt; createTask(); Request&lt;TaskProxy&gt; readTask(Long id); Request&lt;TaskProxy&gt; updateTask(TaskProxy task); Request&lt;Void&gt; deleteTask(TaskProxy task); Request&lt;List&lt;TaskProxy&gt;&gt; queryTasks(); } </code></pre> <p>This leads me to believe that there was some architecture or logic changed that prevents the tutorial being correctly built with the updated tools. You might want to look at <a href="https://developers.google.com/eclipse/docs/appeng_android_add_rpc" rel="nofollow">https://developers.google.com/eclipse/docs/appeng_android_add_rpc</a> which seems to be more up to date in the instructions.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload