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

51 lines
2.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-01-24 16:23:31 +01:00
/*URL CONSTANTS*/
2020-10-20 16:55:08 +02:00
public static final String CONST_BACKEND_GENESIS_URL = "http://boogle.store";
public static final String CONST_GENESIS_UPDATE_URL = "https://boogle.store/manual?abi=";
public static final String CONST_BACKEND_GOOGLE_URL = "https://www.google.com/";
public static final String CONST_BACKEND_DUCK_DUCK_GO_URL = "https://duckduckgo.com/";
public static final String CONST_PLAYSTORE_URL = "https://play.google.com/store/apps/details?id=com.darkweb.genesissearchengine";
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 int CONST_PROXY_SOCKS_VERSION = 5;
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-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-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
}