Beta version 1.08 (8)
Pre-release
Pre-release
Beta version 1.08(8). This is just a minor update from 1.07.
Note: As with all of these releases, they APK differs from the source in that it has the file UtilLocal.java, which contains API information. To compile from source, this file should be created with the following structure:
package net.movelab.sudeau;
public class UtilLocal {
public static final String URL_SERVULET = "xxx";
public static final String URL_REGISTRATION = URL_SERVULET + "xxx";
public static final String URL_LOGIN = URL_SERVULET + "xxx";
public static final String URL_SERVULET_API_ROOT = URL_SERVULET + "xxx";
public static final String API_ROUTES = "xxx";
public static final String API_USER_ROUTES = "xxx";
public static final String URL_USER_ROUTES = URL_SERVULET_API_ROOT + API_USER_ROUTES;
public static final String API_USER_RATINGS = "xxx";
public static final String URL_USER_RATINGS = URL_SERVULET_API_ROOT + API_USER_RATINGS;
public static final String API_USER_HIGHLIGHT_MEDIA = "xxx";
public static final String URL_USER_HIGHLIGHT_MEDIA = URL_SERVULET_API_ROOT + API_USER_HIGHLIGHT_MEDIA;
public static final String API_GENERAL_MAP = "xxx";
public static final String URL_GENERAL_MAP = URL_SERVULET_API_ROOT + API_GENERAL_MAP;
public static final String API_GENERAL_REFERENCES = "xxx";
public static final String URL_GENERAL_REFERENCES = URL_SERVULET_API_ROOT + API_GENERAL_REFERENCES;
public static final String API_ROUTE_MAP = "xxx";
public static final String URL_ROUTE_MAP = URL_SERVULET_API_ROOT + API_ROUTE_MAP;
public static final String API_ROUTE_CONTENT = "xxx";
public static final String URL_ROUTE_CONTENT = URL_SERVULET_API_ROOT + API_ROUTE_CONTENT;
public final static String SERVULET_ANONYMOUS_API_KEY = "xxx";
public final static String SERVULET_ANONYMOUS_USERNAME = "xxx";
}