version:1.7.0

fix:0918
add:
This commit is contained in:
2021-09-30 18:28:44 +08:00
parent ecc808f603
commit e41becbdb0
27 changed files with 786 additions and 108 deletions

View File

@@ -31,6 +31,7 @@ public class URLUtils {
private static String TAG = URLUtils.class.getSimpleName();
private Context mContext;
private HashSet<String> baseURLList = new HashSet<>();
private HashSet<String> nohttpURLList = new HashSet<>();
public URLUtils(Context context) {
this.mContext = context;
@@ -39,6 +40,7 @@ public class URLUtils {
public void setBrowserList() {
String whiteList = JGYUtils.getString(mContext.getContentResolver(), "DeselectBrowserArray");
String homePage = JGYUtils.getString(mContext.getContentResolver(), "homepagURL");
Log.e(TAG, "setBrowserList old: " + whiteList);
HashSet<String> URLList = new HashSet<>();
if (!TextUtils.isEmpty(whiteList)){