[core] Fix version code (#671)

This commit is contained in:
vvb2060 2021-05-25 02:25:32 +08:00 committed by GitHub
parent 550eacfccb
commit 6034d97e17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -69,13 +69,13 @@ public class ServiceManager {
}
}
Log.i(TAG, "starting server...");
Log.i(TAG, String.format("version %s (%s)", BuildConfig.VERSION_NAME, BuildConfig.VERSION_NAME));
Log.i(TAG, String.format("version %s (%s)", BuildConfig.VERSION_NAME, BuildConfig.VERSION_CODE));
Thread.setDefaultUncaughtExceptionHandler((t, e) -> {
Log.e(TAG, Log.getStackTraceString(e));
});
Looper.prepare();
Looper.prepareMainLooper();
mainService = new LSPosedService();
moduleService = new LSPModuleService();
applicationService = new LSPApplicationService();