-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(XLogFileDecode.java): 修复:大文件解密,会发生OOM
解密核心:大文件解密,会发生OOM,导致桌面端发生OOM,安卓端由于OOM发生闪退。 Closes #13
- Loading branch information
1 parent
aa7f633
commit 2b31c76
Showing
20 changed files
with
363 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,25 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto"> | ||
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<SwitchPreferenceCompat | ||
app:icon="@drawable/select_private_key" | ||
app:key="select_private_key" | ||
app:title="@string/select_default_private_key_title" | ||
app:summary="@string/select_default_private_key_hint" | ||
app:defaultValue="true" | ||
/> | ||
<EditTextPreference | ||
android:icon="@drawable/split_file" | ||
android:key="split_file_start_size_key" | ||
android:title="@string/split_file_key_title" | ||
android:summary="@string/split_file_start_size_private_key_hint" | ||
android:inputType="number" | ||
android:defaultValue="50"/> | ||
<EditTextPreference | ||
android:icon="@drawable/split_file" | ||
android:key="split_file_key" | ||
android:title="@string/split_file_key_title" | ||
android:summary="@string/split_file_default_size_private_key_hint" | ||
android:inputType="number" | ||
android:defaultValue="30"/> | ||
</PreferenceScreen> |
Oops, something went wrong.