1 package org.coolreader.crengine; 2 3 public interface OPDSConst { 4 /* 5 * This is a list of OPDS catalogs which may have problems with copyright. 6 * Added by request of LitRes. 7 * http://tr.reddit.com/r/Android/comments/17rtk0/moon_reader_was_blocked_from_play_market_by/ 8 */ 9 final static int BLACK_LIST_MODE_NONE = 0; 10 final static int BLACK_LIST_MODE_WARN = 1; 11 final static int BLACK_LIST_MODE_FORCE = 2; 12 static int BLACK_LIST_MODE = BLACK_LIST_MODE_NONE; 13 final static String[] BLACK_LIST = { 14 "http://109.163.230.117/opds", 15 "http://213.5.65.159/opds", 16 "http://flibusta.net/opds", 17 "http://dimonvideo.ru/lib.xml", 18 "http://lib.rus.ec/opds", 19 "http://books.vnuki.org/opds.xml", 20 "http://coollib.net/opds", 21 "http://iflip.ru/xml/", 22 "http://www.zone4iphone.ru/catalog.php" 23 }; 24 } 25