[core] `nativeinit` does not have to check .so postfix (#540)
This commit is contained in:
parent
fdc7a4d8d9
commit
94ef17f06d
|
|
@ -283,7 +283,7 @@ public final class XposedInit {
|
||||||
String moduleLibraryName;
|
String moduleLibraryName;
|
||||||
try {
|
try {
|
||||||
while ((moduleLibraryName = moduleLibraryReader.readLine()) != null) {
|
while ((moduleLibraryName = moduleLibraryReader.readLine()) != null) {
|
||||||
if (!moduleLibraryName.startsWith("#") && moduleLibraryName.endsWith(".so")) {
|
if (!moduleLibraryName.startsWith("#")) {
|
||||||
NativeAPI.recordNativeEntrypoint(moduleLibraryName);
|
NativeAPI.recordNativeEntrypoint(moduleLibraryName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue