Is there a way to exit android application from the Application class itself. This is even before any activity has been initialized.
Scenario is user side-loading the build in an unsupported device which leads to crashes when I try to load third-party library not meant for the device.
This loading of third-party SDK happens in the application class.
Is it safe to use System.exit(0) in this case since I cannot call finishAffinity()?