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

36 lines
1.4 KiB
Java
Raw Normal View History

2019-06-15 19:13:52 +02:00
package com.darkweb.genesissearchengine.constants;
public class keys
{
/*Welcome Message Prefs*/
2019-07-18 19:15:30 +02:00
2019-06-15 19:13:52 +02:00
public static String first_time_loaded = "FirstTimeLoaded";
/*Home page*/
2019-07-18 19:15:30 +02:00
2019-06-15 19:13:52 +02:00
public static String homepage_html_key = "internalhtml";
/*Proxy Manager*/
2019-07-18 19:15:30 +02:00
2019-06-15 19:13:52 +02:00
public static String proxy_type = "network.proxy.type";
public static String proxy_socks = "network.proxy.socks";
public static String proxy_socks_port = "network.proxy.socks_port";
public static String proxy_socks_version = "network.proxy.socks_version";
public static String proxy_socks_remote_dns = "network.proxy.socks_remote_dns";
2019-06-22 17:03:44 +02:00
public static String proxy_cache = "browser.cache.disk.enable";
public static String proxy_memory = "browser.cache.memory.enable";
2019-06-15 19:13:52 +02:00
public static String proxy_useragent_override = "general.useragent.override";
public static String proxy_donottrackheader_enabled = "privacy.donottrackheader.enabled";
public static String proxy_donottrackheader_value = "privacy.donottrackheader.value";
2019-06-24 21:48:05 +02:00
public static String hasOrbotInstalled = "hasOrbotInstalled";
2019-07-13 18:20:04 +02:00
public static String isAppRated = "isAppRated";
public static String list_type = "list_type";
/*Settings*/
2019-07-18 19:15:30 +02:00
2019-07-13 18:20:04 +02:00
public static String search_engine = "search_engine";
public static String java_script = "java_script";
public static String history_clear = "history_clear";
2019-06-15 19:13:52 +02:00
}