Advertisement
Mechele

Untitled

Feb 13th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. package com.taxipixi.api;
  2.  
  3. public final class ApiConstants {
  4.  
  5.  
  6. // public static String API_URL = "https://driver.taxipixi.com/";
  7. public static String API_URL = "https://staging.taxipixi.com/";
  8. // public static String API_URL = "https://beta.taxipixi.com/";
  9.  
  10. public static String APP_VERSION_GET = "cabs/app_version";
  11.  
  12.  
  13. public static String LOCATION_API_URL = "https://staging.taxipixi.com/";
  14. // public static String LOCATION_API_URL = "https://beta.taxipixi.com/";
  15. // public static String LOCATION_API_URL = "https://ilocation.TaxiPixi.com/";
  16. public static boolean ENABLE_PUBNUB = false;
  17.  
  18. public static String ENVIRONMENT = "PROD";
  19. public static String INCAR_ADMIN = "0"; //1 = ADMIN APP
  20.  
  21. public static String CURRENT_APP_VERSION = "12";
  22. public static String DRIVER_APP_VERSION = "43";
  23.  
  24. public static String ACCESS_KEY_ID = "AKIAILGMFIIMJFQPPOWQ";
  25. public static String SECRET_KEY = "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";
  26.  
  27. public static String PICTURE_BUCKET = "taxipixigo";
  28. public static String PICTURE_FOLDER = "drivers/";
  29. public static int ZOOM = 16;
  30. public static int ZOOMforPopUp = 12;
  31.  
  32. private ApiConstants() {
  33. }
  34.  
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement