base url changed, store info url cahnged

This commit is contained in:
2020-11-21 20:05:12 +03:00
parent cf51040031
commit cb8c976252

View File

@@ -3,7 +3,7 @@ package ch.pizzalemon.android.api;
public class ApiConstants {
public static final int API_READ_TIMEOUT = 30;
public static final int API_CONNECT_TIMEOUT = 10;
public static final String API_PATH = "http://172.104.247.141/";
public static final String API_PATH = "http://pizzalemon.ch/";
public static final String APP_TYPE_ID_ANDROID = "2";
public static final int APP_ERROR_CODE_AUTHORIZATION = 1;
@@ -43,12 +43,12 @@ public class ApiConstants {
public static final String ONESIGNAL_NOTIFICATION_TAG_KEY = "notificationAllowed";
public static final String ONESIGNAL_NOTIFICATION_TAG_VALUE = "true";
public static final String PAYMENT_WEBVIEW_URL_POSTFINANCE_TWINT = "http://172.104.247.141/lemon/index.php?route=mobile/service/postFinancePayment&order_id=";
public static final String PAYMENT_WEBVIEW_URL_POSTFINANCE_TWINT = "http://pizzalemon.ch/lemon/index.php?route=mobile/service/postFinancePayment&order_id=";
public static final String PAYMENT_WEBVIEW_REDIRECT_URL_POSTFINANCE_TWINT_SUCCESS = "postFinancePaymentIsSuccess";
public static final String PAYMENT_WEBVIEW_REDIRECT_URL_POSTFINANCE_TWINT_FAIL = "postFinancePaymentIsFailed";
public static final String PAYMENT_WEBVIEW_MAIN_PAGE_HTTP = "http://172.104.247.141/";
public static final String PAYMENT_WEBVIEW_MAIN_PAGE_HTTPS = "https://172.104.247.141/";
public static final String PAYMENT_WEBVIEW_MAIN_PAGE_HTTP = "http://pizzalemon.ch/";
public static final String PAYMENT_WEBVIEW_MAIN_PAGE_HTTPS = "https://pizzalemon.ch/";
public static final String STORE_INFO_WEB_PAGE_URL = "http://172.104.247.141/lemon/index.php?route=information/information&information_id=4";
public static final String STORE_INFO_WEB_PAGE_URL = "http://pizzalemon.ch/lemon/index.php?route=mobile/service/getStoreInfo";
}