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
b75018b0
Commit
b75018b0
authored
Apr 06, 2018
by
topjohnwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix SN check errors on some devices
parent
41499d4b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
CheckSafetyNet.java
...main/java/com/topjohnwu/magisk/asyncs/CheckSafetyNet.java
+3
-3
No files found.
src/main/java/com/topjohnwu/magisk/asyncs/CheckSafetyNet.java
View file @
b75018b0
...
...
@@ -43,14 +43,14 @@ public class CheckSafetyNet extends ParallelTask<Void, Void, Exception> {
conn
.
disconnect
();
}
private
void
dyload
()
throws
ReflectiveOperation
Exception
{
private
void
dyload
()
throws
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
ReflectiveOperation
Exception
();
throw
new
Exception
();
}
}
...
...
@@ -59,7 +59,7 @@ public class CheckSafetyNet extends ParallelTask<Void, Void, Exception> {
try
{
try
{
dyload
();
}
catch
(
ReflectiveOperation
Exception
e
)
{
}
catch
(
Exception
e
)
{
// If dynamic load failed, try re-downloading and reload
dlSnet
();
dyload
();
...
...
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