fix: 缺失的大括号

This commit is contained in:
NkBe 2025-08-17 22:40:26 +08:00
parent 336ad9ecf8
commit 493d367bfc
No known key found for this signature in database
GPG Key ID: 75EF144ED8F4D7B8
2 changed files with 2 additions and 1 deletions

View File

@ -178,6 +178,7 @@ public class LSPApplication {
Log.e(TAG, "createLoadedApk", e); Log.e(TAG, "createLoadedApk", e);
return null; return null;
} }
}
public static void disableProfile(Context context) { public static void disableProfile(Context context) {
final ArrayList<String> codePaths = new ArrayList<>(); final ArrayList<String> codePaths = new ArrayList<>();

View File

@ -8,7 +8,7 @@ public class Constants {
final static public String ORIGINAL_APK_ASSET_PATH = "assets/lspatch/origin.apk"; final static public String ORIGINAL_APK_ASSET_PATH = "assets/lspatch/origin.apk";
final static public String EMBEDDED_MODULES_ASSET_PATH = "assets/lspatch/modules/"; final static public String EMBEDDED_MODULES_ASSET_PATH = "assets/lspatch/modules/";
final static public String PATCH_FILE_SUFFIX = "-lspatched.apk"; final static public String PATCH_FILE_SUFFIX = "-npatched.apk";
final static public String PROXY_APP_COMPONENT_FACTORY = "org.lsposed.lspatch.metaloader.LSPAppComponentFactoryStub"; final static public String PROXY_APP_COMPONENT_FACTORY = "org.lsposed.lspatch.metaloader.LSPAppComponentFactoryStub";
final static public String MANAGER_PACKAGE_NAME = "org.lsposed.lspatch"; final static public String MANAGER_PACKAGE_NAME = "org.lsposed.lspatch";
final static public int MIN_ROLLING_VERSION_CODE = 348; final static public int MIN_ROLLING_VERSION_CODE = 348;