According to the Android documentation in this link https://developer.android.com/guide/components/activities/activity-lifecycle.html#onpause:
onPause() execution is very brief, and does not necessarily afford enough time to perform save operations. For this reason, you should not use onPause() to save application or user data, make network calls, or execute database transactions; such work may not complete before the method completes. Instead, you should perform heavy-load shutdown operations during onStop().
What I don't understand is, how is it managed to make the execution of the onPause() method very brief ? As far as I know, when the onPause() method get called it won't be finished until it executes the lines of code within it. Or am I wrong?
The onPause() method call will finish executing when the user returns to the app.
Say saving your data takes 5 seconds. This begins when the user holds your app in memory. But lets say that the user now enters the app within the 5 seconds. This call stops the onPause() and begins the onResume(). You will not be sure that your data has been saved correctly :)