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
36cf32dc
Commit
36cf32dc
authored
Aug 26, 2017
by
topjohnwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change unhide app temp location
parent
657f4ab3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
HideManager.java
...rc/main/java/com/topjohnwu/magisk/asyncs/HideManager.java
+3
-1
No files found.
app/src/main/java/com/topjohnwu/magisk/asyncs/HideManager.java
View file @
36cf32dc
...
@@ -2,6 +2,7 @@ package com.topjohnwu.magisk.asyncs;
...
@@ -2,6 +2,7 @@ package com.topjohnwu.magisk.asyncs;
import
android.content.Context
;
import
android.content.Context
;
import
android.content.pm.PackageManager
;
import
android.content.pm.PackageManager
;
import
android.os.Environment
;
import
android.widget.Toast
;
import
android.widget.Toast
;
import
com.topjohnwu.magisk.MagiskManager
;
import
com.topjohnwu.magisk.MagiskManager
;
...
@@ -31,7 +32,8 @@ public class HideManager extends ParallelTask<Void, Void, Boolean> {
...
@@ -31,7 +32,8 @@ public class HideManager extends ParallelTask<Void, Void, Boolean> {
return
false
;
return
false
;
// Generate a new unhide app with random package name
// Generate a new unhide app with random package name
File
unhideAPK
=
new
File
(
magiskManager
.
getCacheDir
(),
"unhide.apk"
);
File
unhideAPK
=
new
File
(
Environment
.
getExternalStorageDirectory
()
+
"/MagiskManager"
,
"unhide.apk"
);
unhideAPK
.
getParentFile
().
mkdirs
();
String
pkg
=
ZipUtils
.
generateUnhide
(
magiskManager
,
unhideAPK
);
String
pkg
=
ZipUtils
.
generateUnhide
(
magiskManager
,
unhideAPK
);
// Install the application
// Install the application
...
...
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