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
a1871e4b
Commit
a1871e4b
authored
Dec 17, 2017
by
topjohnwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix install commands
parent
3aa0294c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
build.gradle
build.gradle
+1
-1
changelog.md
src/main/assets/changelog.md
+1
-1
InstallMagisk.java
src/main/java/com/topjohnwu/magisk/asyncs/InstallMagisk.java
+1
-1
No files found.
build.gradle
View file @
a1871e4b
...
@@ -8,7 +8,7 @@ android {
...
@@ -8,7 +8,7 @@ android {
applicationId
"com.topjohnwu.magisk"
applicationId
"com.topjohnwu.magisk"
minSdkVersion
21
minSdkVersion
21
targetSdkVersion
27
targetSdkVersion
27
versionCode
7
3
versionCode
7
4
versionName
"5.4.3"
versionName
"5.4.3"
ndk
{
ndk
{
moduleName
'zipadjust'
moduleName
'zipadjust'
...
...
src/main/assets/changelog.md
View file @
a1871e4b
### v5.4.3 (7
3
)
### v5.4.3 (7
4
)
-
Fix dynamic resource loading, should prevent crashing when checking SafetyNet
-
Fix dynamic resource loading, should prevent crashing when checking SafetyNet
-
Update SignAPK to use very little RAM, should expand old device support
-
Update SignAPK to use very little RAM, should expand old device support
-
Support settings migration after hiding Magisk Manager
-
Support settings migration after hiding Magisk Manager
...
...
src/main/java/com/topjohnwu/magisk/asyncs/InstallMagisk.java
View file @
a1871e4b
...
@@ -249,7 +249,7 @@ public class InstallMagisk extends ParallelTask<Void, Void, Boolean> {
...
@@ -249,7 +249,7 @@ public class InstallMagisk extends ParallelTask<Void, Void, Boolean> {
Utils
.
fmt
(
"rm -rf %s/*; mkdir -p %s; chmod 700 /data/adb"
,
binPath
,
binPath
),
Utils
.
fmt
(
"rm -rf %s/*; mkdir -p %s; chmod 700 /data/adb"
,
binPath
,
binPath
),
Utils
.
fmt
(
"cp -af %s/* %s; rm -rf %s"
,
install
,
binPath
,
install
),
Utils
.
fmt
(
"cp -af %s/* %s; rm -rf %s"
,
install
,
binPath
,
install
),
Utils
.
fmt
(
"flash_boot_image %s %s"
,
patched_boot
,
mBootLocation
),
Utils
.
fmt
(
"flash_boot_image %s %s"
,
patched_boot
,
mBootLocation
),
mm
.
remoteMagiskVersionCode
>=
1464
?
"cp /data/magisk.img /data/adb/magisk.img"
:
""
,
mm
.
remoteMagiskVersionCode
>=
1464
?
"
[ -L /data/magisk.img ] ||
cp /data/magisk.img /data/adb/magisk.img"
:
""
,
"patch_dtbo_image"
);
"patch_dtbo_image"
);
break
;
break
;
default
:
default
:
...
...
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