[core] Fix version code (#671)
This commit is contained in:
parent
550eacfccb
commit
6034d97e17
|
|
@ -69,13 +69,13 @@ public class ServiceManager {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Log.i(TAG, "starting server...");
|
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) -> {
|
Thread.setDefaultUncaughtExceptionHandler((t, e) -> {
|
||||||
Log.e(TAG, Log.getStackTraceString(e));
|
Log.e(TAG, Log.getStackTraceString(e));
|
||||||
});
|
});
|
||||||
|
|
||||||
Looper.prepare();
|
Looper.prepareMainLooper();
|
||||||
mainService = new LSPosedService();
|
mainService = new LSPosedService();
|
||||||
moduleService = new LSPModuleService();
|
moduleService = new LSPModuleService();
|
||||||
applicationService = new LSPApplicationService();
|
applicationService = new LSPApplicationService();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue