a
554325746@qq.com
2019-12-25 603cb36a5123e46656b06a5deb8d7ac7ff81307f
app/src/main/java/com/basic/security/manager/DatabaseManager.java
@@ -58,9 +58,9 @@
            Class[] argTypes = new Class[]{HashMap.class};
            Method setCustomDatabaseFiles = debugDB.getMethod("setCustomDatabaseFiles", argTypes);
            HashMap<String, Pair<File, String>> customDatabaseFiles = new HashMap<>();
            customDatabaseFiles.put("base_database", new Pair<>(new File(Constants.baseDatabasePath), ""));
            customDatabaseFiles.put("sync_database", new Pair<>(new File(Constants.syncDatabasePath), ""));
            customDatabaseFiles.put("cache_database", new Pair<>(new File(Constants.cacheDatabasePath), ""));
            customDatabaseFiles.put("xxbase_database", new Pair<>(new File(Constants.baseDatabasePath), ""));
//            customDatabaseFiles.put("sync_database", new Pair<>(new File(Constants.syncDatabasePath), ""));
//            customDatabaseFiles.put("cache_database", new Pair<>(new File(Constants.cacheDatabasePath), ""));
            setCustomDatabaseFiles.invoke(null, customDatabaseFiles);
        } catch (Exception ignore) {
            ignore.printStackTrace();