LeOS-Genesis/app/src/main/java/com/darkweb/genesissearchengine/constants/constants.java

69 lines
3.2 KiB
Java
Raw Normal View History

2020-01-24 16:23:31 +01:00
package com.darkweb.genesissearchengine.constants;
public class constants
{
/*LOCAL URL CONSTANTS*/
2020-10-20 16:55:08 +02:00
public static final String CONST_BLACK_MARKET_URL = "https://boogle.store/search?q=black+market&p_num=1&s_type=all";
public static final String CONST_LEAKED_DOCUMENT_URL = "https://boogle.store/search?q=leaked+document&p_num=1&s_type=all&p_num=1&s_type=all";
public static final String CONST_NEWS_URL = "https://boogle.store/search?q=latest%20news&p_num=1&s_type=news";
public static final String CONST_SOFTWARE_URL = "https://boogle.store/search?q=softwares+tools&p_num=1&s_type=all&p_num=1&s_type=all";
2020-10-22 10:36:44 +02:00
public static final String CONST_SOFTWARE_FINANCE = "https://boogle.store/search?q=finance&p_num=1&s_type=all&p_num=1&s_type=all";
public static final String CONST_COMMUNITIES = "https://boogle.store/search?q=news&p_num=1&s_type=all&p_num=1&s_type=all";
2020-01-24 16:23:31 +01:00
/*URL CONSTANTS*/
2020-10-20 16:55:08 +02:00
public static final String CONST_GENESIS_UPDATE_URL = "https://boogle.store/manual?abi=";
public static final String CONST_PLAYSTORE_URL = "https://play.google.com/store/apps/details?id=com.darkweb.genesissearchengine";
2020-11-27 12:40:46 +01:00
public static final String CONST_BACKEND_GENESIS_URL = "https://boogle.store/search?q=$sa&p_num=1&s_type=all";
public static final String CONST_BACKEND_GOOGLE_URL = "https://www.google.com/search?q=$s";
2020-10-22 12:54:13 +02:00
public static final String CONST_BACKEND_DUCK_DUCK_GO_URL = "https://duckduckgo.com/q=$s";
2020-11-27 12:40:46 +01:00
public static final String CONST_BACKEND_BING_URL = "https://bing.com/search?q=$s";
2020-10-22 12:54:13 +02:00
public static final String CONST_BACKEND_WIKI_URL = "https://en.wikipedia.org/wiki/$s";
2020-01-24 16:23:31 +01:00
/*PROXY CONSTANTS*/
2020-10-20 16:55:08 +02:00
public static final String CONST_PROXY_SOCKS = "127.0.0.1";
public static final boolean CONST_PROXY_SOCKS_REMOTE_DNS = true;
public static final boolean CONST_PROXY_CACHE = true;
public static final boolean CONST_PROXY_MEMORY = true;
public static final boolean CONST_PROXY_DO_NOT_TRACK_HEADER_ENABLED = false;
public static final int CONST_PROXY_DO_NOT_TRACK_HEADER_VALUE = 1;
2020-11-27 12:40:46 +01:00
public static final int CONST_PROXY_SOCKS_VERSION = 5;
/*LOG CONSTANTS*/
public static final String LOGS_DEFAULT_MESSAGE = "Genesis on standby at the moment";
2020-01-24 16:23:31 +01:00
2020-11-11 13:11:13 +01:00
/*HISTORY CONSTANTS*/
public static final String HISTORY_LOAD_MORE = "loading_more";
/*BOOKMARK CONSTANTS*/
public static final String BOOKMARK_LOAD_MORE = "loading_more";
2020-01-24 16:23:31 +01:00
/*MENU CONSTANTS*/
2020-10-20 16:55:08 +02:00
public static final int CONST_LIST_HISTORY = 1;
public static final int CONST_LIST_BOOKMARK = 2;
2020-01-24 16:23:31 +01:00
/*SETTINGS CONSTANTS*/
2020-10-20 16:55:08 +02:00
public static final int CONST_MAX_LIST_DATA_SIZE =5000;
public static final int CONST_FETCHABLE_LIST_SIZE =100;
public static final int CONST_MAX_BOOKMARK_SIZE =500;
public static final String CONST_DATABASE_NAME ="genesis_dbase";
2020-11-11 13:11:13 +01:00
public static final String CONST_PERCENTAGE_SIGN ="%";
public static final String CONST_PERCENTAGE_SIGN_100 ="100%";
2020-01-24 16:23:31 +01:00
/*ADMOB CONSTANTS*/
2020-10-20 16:55:08 +02:00
public static final String CONST_ADMOB_KEY = "ca-app-pub-5074525529134731~2926711128";
2020-01-24 16:23:31 +01:00
/*ANALYTICS CONSTANTS*/
2020-10-20 16:55:08 +02:00
public static final String CONST_UNIQUE_KEY_ID = "*PREF_UNIQUE_ID";
2020-01-24 16:23:31 +01:00
}