Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
M
Magisk
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Magisk
Commits
4d5a9f6e
Commit
4d5a9f6e
authored
Feb 21, 2018
by
topjohnwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bump version
parent
41f47acd
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
9 deletions
+8
-9
build.gradle
build.gradle
+3
-3
MagiskManager.java
src/main/java/com/topjohnwu/magisk/MagiskManager.java
+1
-1
changelog.md
src/main/res/raw/changelog.md
+4
-5
No files found.
build.gradle
View file @
4d5a9f6e
...
...
@@ -8,8 +8,8 @@ android {
applicationId
"com.topjohnwu.magisk"
minSdkVersion
21
targetSdkVersion
27
versionCode
10
3
versionName
"5.6.
0
"
versionCode
10
5
versionName
"5.6.
1
"
javaCompileOptions
{
annotationProcessorOptions
{
argument
(
'butterknife.debuggable'
,
'false'
)
...
...
@@ -46,7 +46,7 @@ repositories {
dependencies
{
implementation
fileTree
(
include:
[
'*.jar'
],
dir:
'libs'
)
implementation
project
(
':utils'
)
implementation
'com.github.topjohnwu:libsu:1.1.
0
'
implementation
'com.github.topjohnwu:libsu:1.1.
1
'
implementation
'com.android.support:recyclerview-v7:27.0.2'
implementation
'com.android.support:cardview-v7:27.0.2'
implementation
'com.android.support:design:27.0.2'
...
...
src/main/java/com/topjohnwu/magisk/MagiskManager.java
View file @
4d5a9f6e
...
...
@@ -105,7 +105,7 @@ public class MagiskManager extends Shell.ContainerApp {
Shell
.
setInitializer
(
new
Shell
.
Initializer
()
{
@Override
public
void
onRootShellInit
(
@NonNull
Shell
shell
)
{
try
(
InputStream
utils
=
MagiskManager
.
get
().
getAssets
().
open
(
Const
.
UTIL_FUNCTIONS
);
try
(
InputStream
utils
=
getAssets
().
open
(
Const
.
UTIL_FUNCTIONS
);
InputStream
sudb
=
getResources
().
openRawResource
(
R
.
raw
.
sudb
))
{
shell
.
loadInputStream
(
null
,
null
,
utils
);
shell
.
loadInputStream
(
null
,
null
,
sudb
);
...
...
src/main/res/raw/changelog.md
View file @
4d5a9f6e
### v5.6.0
-
Remove JNI requirement, Magisk Manager is now pure Java
-
Update the method of handling su database, may fix the issue that root requests won't save
-
Add the option to restore Magisk Manager after repackaging with random package name
-
Massive under-the-hood optimizations
### v5.6.1
-
Fix database crashes on F2FS with SQLite 3.21.0+
-
Optimize several settings options
-
Use native XML for settings migration
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment