Is it difficult to implement graceful backend keepalive? Not possible!

Is it difficult to implement graceful backend keepalive? Not possible!

[[287287]]

Keep alive status

We know that the Android system will kill background processes, and with the update of the system version, the killing of processes is becoming more and more intense. The system's approach itself is good, because it can save memory, reduce power consumption, and avoid some rogue behaviors.

However, for some applications, the application scenarios themselves need to run in the background, and users are willing to let them run in the background, such as running applications. On the one hand, rogue software uses various rogue means to keep them alive, and on the other hand, the system increases the intensity of killing background applications, resulting in some of our applications that really need to run in the background being mistakenly killed, which is unbearable.

Elegant survival?

In order to keep the system alive, many "black technologies" have emerged, such as 1-pixel Activity, playing silent audio, dual processes guarding each other, etc. These practices can be said to be very rogue and even destroy the Android ecosystem. Fortunately, with the update of the Android system version, many of these unconventional methods of keeping the system alive have become invalid.

For those applications that really need to run in the background, how can we keep them alive gracefully?

Background running whitelist

Starting from Android 6.0, the system has added a sleep mode to save power. After the system has been idle for a period of time, it will kill the processes running in the background. However, the system will have a whitelist of background running applications, and the applications in the whitelist will not be affected. In the native system, you can see this whitelist through "Settings" - "Battery" - "Battery Optimization" - "Non-Optimized Applications". You will usually see the following two:

Next time the product says "XXX can stay alive, why can't we!", you will know how to fight back. Large companies cooperate with mobile phone manufacturers to add their own applications to the whitelist by default. If you are with a large company that can negotiate such cooperation, you don't need to read on.

Fortunately, the system has not abandoned us and allows us to apply to add the application to the whitelist.

First, configure the following permissions in the AndroidManifest.xml file:

  1. <uses-permission android: name = "android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />

We can use the following methods to determine whether our application is in the whitelist:

  1. @RequiresApi(api = Build.VERSION_CODES.M)
  2. private boolean isIgnoringBatteryOptimizations() {
  3. boolean isIgnoring = false ;
  4. PowerManager powerManager = (PowerManager) getSystemService(Context.POWER_SERVICE);
  5. if (powerManager != null ) {
  6. isIgnoring = powerManager.isIgnoringBatteryOptimizations(getPackageName());
  7. }
  8. return isIgnoring;
  9. }

If it is not in the whitelist, you can apply to join the whitelist through the following code:

  1. @RequiresApi(api = Build.VERSION_CODES.M)
  2. public void requestIgnoreBatteryOptimizations() {
  3. try {
  4. Intent intent = new Intent(Settings.ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS);
  5. intent.setData(Uri.parse( "package:" + getPackageName()));
  6. startActivity(intent);
  7. } catch (Exception e) {
  8. e.printStackTrace();
  9. }
  10. }

When applying, a window like this will appear on the app:

As you can see, this system pop-up window will have a reminder that battery life will be affected, so if you want the user to click to allow, there must be relevant instructions. If you want to determine whether the user has clicked to allow, you can call startActivityForResult when applying, and determine again in onActivityResult whether it is in the whitelist.

Manufacturer backend management

One difficulty in Android development is that major mobile phone manufacturers have customized the native system differently, which requires us to make different adaptations. Background management is a good example. Almost every manufacturer has its own background management. Even if the application is added to the background running whitelist, it may still be killed by the manufacturer's own background management.

If you can add the application to the manufacturer's system background management whitelist, you can further reduce the probability of the process being killed. Different manufacturers set it in different places, usually in their own "mobile phone manager", but what is more difficult is that even if it is the same manufacturer's system, different versions may be set in different places.

The ideal approach is to present a graphic operation step to the user according to different mobile phones and even different system versions, and provide a button to jump directly to the specified page for setting. However, it is necessary to adapt to each version of each manufacturer, which is a lot of work. After testing most of the mainstream Android manufacturers' mobile phones with real machines, I sorted out the relevant information of some mobile phones.

First we can define two methods:

  1. /**
  2. * Jump to the homepage of the specified application
  3. */
  4. private void showActivity(@NonNull String packageName) {
  5. Intent intent = getPackageManager().getLaunchIntentForPackage(packageName);
  6. startActivity(intent);
  7. }
  8.  
  9. /**
  10. * Jump to the specified page of the specified application
  11. */
  12. private void showActivity(@NonNull String packageName, @NonNull String activityDir) {
  13. Intent intent = new Intent();
  14. intent.setComponent(new ComponentName(packageName, activityDir));
  15. intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  16. startActivity(intent);
  17. }

The following are the manufacturers' judgments, jump methods and corresponding setting steps for some mobile phones. The jump method does not guarantee successful jump on all versions, and try catch is required.

Huawei

Manufacturer's judgment:

  1. public boolean isHuawei() {
  2. if (Build.BRAND == null ) {
  3. return   false ;
  4. } else {
  5. return Build.BRAND.toLowerCase().equals( "huawei" ) || Build.BRAND.toLowerCase().equals( "honor" );
  6. }
  7. }

Jump to the startup management page of Huawei Mobile Manager:

  1. private void goHuaweiSetting() {
  2. try {
  3. showActivity( "com.huawei.systemmanager" ,
  4. "com.huawei.systemmanager.startupmgr.ui.StartupNormalAppListActivity" );
  5. } catch (Exception e) {
  6. showActivity( "com.huawei.systemmanager" ,
  7. "com.huawei.systemmanager.optimize.bootstart.BootStartActivity" );
  8. }
  9. }

Operation steps: Application startup management -> Turn off the application switch -> Turn on Allow automatic startup

Millet

Manufacturer's judgment:

  1. public   static boolean isXiaomi() {
  2. return Build.BRAND != null && Build.BRAND.toLowerCase().equals( "xiaomi" );
  3. }

Jump to the self-start management page of Xiaomi Security Center:

  1. private void goXiaomiSetting() {
  2. showActivity( "com.miui.securitycenter" ,
  3. "com.miui.permcenter.autostart.AutoStartManagementActivity" );
  4. }

Operation steps: Authorization Management -> Auto-start Management -> Allow application to auto-start

OPPO

Manufacturer's judgment:

  1. public   static boolean isOPPO() {
  2. return Build.BRAND != null && Build.BRAND.toLowerCase().equals( "oppo" );
  3. }

Jump to OPPO Mobile Manager:

  1. private void goOPPOSetting() {
  2. try {
  3. showActivity( "com.coloros.phonemanager" );
  4. } catch (Exception e1) {
  5. try {
  6. showActivity( "com.oppo.safe" );
  7. } catch (Exception e2) {
  8. try {
  9. showActivity( "com.coloros.oppoguardelf" );
  10. } catch (Exception e3) {
  11. showActivity( "com.coloros.safecenter" );
  12. }
  13. }
  14. }
  15. }

Operation steps: Permissions and Privacy -> Auto-start Management -> Allow the application to auto-start

VIVO

Manufacturer's judgment:

  1. public   static boolean isVIVO() {
  2. return Build.BRAND != null && Build.BRAND.toLowerCase().equals( "vivo" );
  3. }

Jump to VIVO Mobile Manager:

  1. private void goVIVOSetting() {
  2. showActivity( "com.iqoo.secure" );
  3. }

Operation steps: Permission management -> Auto-start -> Allow application to auto-start

Meizu

Manufacturer's judgment:

  1. public   static boolean isMeizu() {
  2. return Build.BRAND != null && Build.BRAND.toLowerCase().equals( "meizu" );
  3. }

Jump to Meizu Mobile Manager:

  1. private void goMeizuSetting() {
  2. showActivity( "com.meizu.safe" );
  3. }

Operation steps: Permission Management -> Background Management -> Click on the application -> Allow background running

Samsung

Manufacturer's judgment:

  1. public   static boolean isSamsung() {
  2. return Build.BRAND != null && Build.BRAND.toLowerCase().equals( "samsung" );
  3. }

Jump to Samsung Smart Manager:

  1. private void goSamsungSetting() {
  2. try {
  3. showActivity( "com.samsung.android.sm_cn" );
  4. } catch (Exception e) {
  5. showActivity( "com.samsung.android.sm" );
  6. }
  7. }

Operation steps: Automatically run applications -> Turn on the application switch -> Battery management -> Unmonitored applications -> Add applications

LeTV

Manufacturer's judgment:

  1. public   static boolean isLeTV() {
  2. return Build.BRAND != null && Build.BRAND.toLowerCase().equals( "letv" );
  3. }

Jump to LeTV Mobile Manager:

  1. private void goLetvSetting() {
  2. showActivity( "com.letv.android.letvsafe" ,
  3. "com.letv.android.letvsafe.AutobootManageActivity" );
  4. }

Operation steps: Auto-start management -> Allow application to auto-start

hammer

Manufacturer's judgment:

  1. public   static boolean isSmartisan() {
  2. return Build.BRAND != null && Build.BRAND.toLowerCase().equals( "smartisan" );
  3. }

Jump to mobile phone management:

  1. private void goSmartisanSetting() {
  2. showActivity( "com.smartisanos.security" );
  3. }

Operation steps: Permission Management -> Auto-start Permission Management -> Click Apply -> Allow to be started by the system

Tribute to friends?

In the running app I made before, I added a permission setting page in the settings and put the settings mentioned above in it. Recently, I found that a competitor, Moudong, also followed up. Figure 1 was made by us, and Figure 2 was made by Moudong:


Moudong paid tribute to me from all aspects, from the design, from the poor copywriting I wrote, and even from the pictures I took from more than a dozen mobile phones. I am grateful for Moudong's recognition, but I heard this sentence at a press conference recently: While paying tribute, can I say thank you?

The tribute from Moudong, on the one hand, shows that there is indeed a problem that processes are easy to be killed and difficult to keep alive. On the other hand, it also shows that the method of guiding users to set up whitelists is effective.

<<:  WeChat cannot send videos over 25MB? Three tips to fix it

>>:  Chang Cheng, head of Lenovo Mobile, has resigned. What does this mean for Lenovo Mobile?

Recommend

Geek Time_Personal Wealth Course for Programmers

Geek Time: Programmer's Personal Wealth Cours...

Introduction to Yang Wanli: Has the ranking of optimized websites recovered?

The website optimization ranking in the second ha...

How should new operators find the key points of APP product operation!

When we operate a new APP or product, a common pr...

Mistakes that are particularly common among software development teams

[[234990]] If you are a team leader, project mana...

A user growth system that increased followers by 45 million!

Everyone knows that they should read more books a...

Analysis of brand private domain cases!

A friend sent me a small game called "Cloud ...

How to shoot a video to attract traffic to the live broadcast room?

As we all know, Douyin's traffic is becoming ...