Proyectos de Subversion Android Microlearning

Rev

Rev 43 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
package com.cesams.twogetskills;
2
 
3
public class Configuration {
4
 
5
    public static final int APPLICATION_ID = 1;
6
    public static final boolean DEBUG = true;
7
    public static final boolean LOCAL = false;
8
 
45 efrain 9
    //public static final String URL_ENDPOINT =  "https://leaderslinked.com";
10
    public static final String URL_ENDPOINT =  "https://dev.leaderslinked.com";
1 efrain 11
    //public static final String URL_ENDPOINT =  "https://nexa.leaderslinked.com";
12
    //public static final String URL_ENDPOINT =  "http://10.0.2.2"; //https://dev.leaderslinked.com";
13
 
14
    public static final String URL_ENDPOINT_SERVICES =  URL_ENDPOINT +  "/services";
15
    public static final String URL_DEVICE =  URL_ENDPOINT_SERVICES  + "/device";
16
    public static final String URL_SYNC  = URL_ENDPOINT_SERVICES  + "/sync";
17
    public static final String URL_SYNC_BATCH  = URL_ENDPOINT_SERVICES  + "/sync-batch";
18
    public static final String URL_FCM = URL_ENDPOINT_SERVICES + "/fcm";
19
    public static final String URL_SIGNIN =  URL_ENDPOINT_SERVICES + "/signin";
20
 
21
    public static final String URL_ENDPOINT_SERVICES_MICROLEARNING = URL_ENDPOINT_SERVICES + "/microlearning";
22
    public static final String URL_REFRESH = URL_ENDPOINT_SERVICES_MICROLEARNING + "/refresh";
23
    public static final String URL_CHECK_CHANGES = URL_ENDPOINT_SERVICES_MICROLEARNING + "/check-changes";
24
 
25
 
26
 
27
 
28
 
29
 
30
 
31
 
32
 
33
 
34
}