This can be useful if you use WorkManager, but there are a lot of very interesting information :
adb shell dumpsys jobscheduler
https://developer.android.com/topic/libraries/architecture/workmanager/how-to/debugging
This can be useful if you use WorkManager, but there are a lot of very interesting information :
adb shell dumpsys jobscheduler
https://developer.android.com/topic/libraries/architecture/workmanager/how-to/debugging
Use the following command, after the crash happens :
adb logcat AndroidRuntime:E *:S
In the module build.gradle, add the following lines in the android section :
splits {
abi {
enable true
reset()
universalApk true
}
}
Then when you build the APK (even the debug one), it will install on all Android devices.