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
fb5e8ef4
Commit
fb5e8ef4
authored
Apr 05, 2018
by
topjohnwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve handling of snet extention
parent
e79d7641
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
15 deletions
+10
-15
CheckSafetyNet.java
...main/java/com/topjohnwu/magisk/asyncs/CheckSafetyNet.java
+10
-15
No files found.
src/main/java/com/topjohnwu/magisk/asyncs/CheckSafetyNet.java
View file @
fb5e8ef4
...
...
@@ -43,31 +43,26 @@ public class CheckSafetyNet extends ParallelTask<Void, Void, Exception> {
conn
.
disconnect
();
}
private
void
loadClasses
()
throws
ClassNotFound
Exception
{
loader
=
new
DexClassLoader
(
dexPath
.
toString
(),
dexPath
.
getParent
(),
private
void
dyload
()
throws
ReflectiveOperation
Exception
{
loader
=
new
DexClassLoader
(
dexPath
.
getPath
(),
dexPath
.
getParent
(),
null
,
ClassLoader
.
getSystemClassLoader
());
helperClazz
=
loader
.
loadClass
(
Const
.
SNET_PKG
+
".SafetyNetHelper"
);
callbackClazz
=
loader
.
loadClass
(
Const
.
SNET_PKG
+
".SafetyNetCallback"
);
int
snet_ver
=
(
int
)
helperClazz
.
getMethod
(
"getVersion"
).
invoke
(
null
);
if
(
snet_ver
!=
Const
.
SNET_VER
)
{
throw
new
ReflectiveOperationException
();
}
}
@Override
protected
Exception
doInBackground
(
Void
...
voids
)
{
int
snet_ver
=
-
1
;
try
{
if
(!
dexPath
.
exists
())
dlSnet
();
loadClasses
();
try
{
snet_ver
=
(
int
)
helperClazz
.
getMethod
(
"getVersion"
).
invoke
(
null
);
}
catch
(
NoSuchMethodException
e
)
{
e
.
printStackTrace
();
}
if
(
snet_ver
!=
Const
.
SNET_VER
)
{
dyload
();
}
catch
(
ReflectiveOperationException
e
)
{
// If dynamic load failed, try re-downloading and reload
dlSnet
();
loadClasses
();
dyload
();
}
}
catch
(
Exception
e
)
{
return
e
;
...
...
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