util -> utils
This commit is contained in:
parent
a691abc510
commit
0625839b42
|
|
@ -67,7 +67,7 @@ import de.robv.android.xposed.XposedInit;
|
||||||
import io.github.libxposed.XposedContext;
|
import io.github.libxposed.XposedContext;
|
||||||
import io.github.libxposed.XposedModule;
|
import io.github.libxposed.XposedModule;
|
||||||
import io.github.libxposed.XposedModuleInterface;
|
import io.github.libxposed.XposedModuleInterface;
|
||||||
import io.github.libxposed.util.DexParser;
|
import io.github.libxposed.utils.DexParser;
|
||||||
|
|
||||||
public class LSPosedContext extends XposedContext {
|
public class LSPosedContext extends XposedContext {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ import java.nio.ByteBuffer;
|
||||||
import java.util.concurrent.locks.ReadWriteLock;
|
import java.util.concurrent.locks.ReadWriteLock;
|
||||||
import java.util.concurrent.locks.ReentrantReadWriteLock;
|
import java.util.concurrent.locks.ReentrantReadWriteLock;
|
||||||
|
|
||||||
import io.github.libxposed.util.DexParser;
|
import io.github.libxposed.utils.DexParser;
|
||||||
|
|
||||||
public class LSPosedDexParser implements DexParser {
|
public class LSPosedDexParser implements DexParser {
|
||||||
ReadWriteLock lock = new ReentrantReadWriteLock();
|
ReadWriteLock lock = new ReentrantReadWriteLock();
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ import java.lang.reflect.Constructor;
|
||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
import java.nio.ByteBuffer;
|
import java.nio.ByteBuffer;
|
||||||
|
|
||||||
import io.github.libxposed.util.DexParser;
|
import io.github.libxposed.utils.DexParser;
|
||||||
|
|
||||||
public class XposedContextWrapper extends ContextWrapper implements XposedInterface {
|
public class XposedContextWrapper extends ContextWrapper implements XposedInterface {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ import java.lang.reflect.Method;
|
||||||
import java.nio.ByteBuffer;
|
import java.nio.ByteBuffer;
|
||||||
import java.util.ConcurrentModificationException;
|
import java.util.ConcurrentModificationException;
|
||||||
|
|
||||||
import io.github.libxposed.util.DexParser;
|
import io.github.libxposed.utils.DexParser;
|
||||||
|
|
||||||
public interface XposedInterface {
|
public interface XposedInterface {
|
||||||
int API = 100;
|
int API = 100;
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
package io.github.libxposed.util;
|
package io.github.libxposed.utils;
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
|
|
||||||
import java.nio.ByteBuffer;
|
|
||||||
|
|
||||||
public interface DexParser extends AutoCloseable {
|
public interface DexParser extends AutoCloseable {
|
||||||
int NO_INDEX = 0xffffffff;
|
int NO_INDEX = 0xffffffff;
|
||||||
|
|
||||||
Loading…
Reference in New Issue