@@ -21,8 +21,10 @@ Licensed to the Apache Software Foundation (ASF) under one
21
21
22
22
package de .appplant .cordova .plugin .background ;
23
23
24
+ import android .annotation .TargetApi ;
24
25
import android .app .Activity ;
25
26
import android .app .ActivityManager ;
27
+ import android .app .ActivityManager .AppTask ;
26
28
import android .content .Context ;
27
29
import android .content .Intent ;
28
30
import android .os .Build ;
@@ -148,28 +150,20 @@ public void run() {
148
150
/**
149
151
* Exclude the app from the recent tasks list.
150
152
*/
153
+ @ TargetApi (Build .VERSION_CODES .LOLLIPOP )
151
154
private void excludeFromTaskList () {
152
155
ActivityManager am = (ActivityManager ) getActivity ()
153
156
.getSystemService (Context .ACTIVITY_SERVICE );
154
157
155
158
if (am == null || Build .VERSION .SDK_INT < 21 )
156
159
return ;
157
160
158
- try {
159
- Method getAppTasks = am .getClass ().getMethod ("getAppTasks" );
160
- List tasks = (List ) getAppTasks .invoke (am );
161
+ List <AppTask > tasks = am .getAppTasks ();
161
162
162
- if (tasks == null || tasks .isEmpty ())
163
- return ;
164
-
165
- ActivityManager .AppTask task = (ActivityManager .AppTask ) tasks .get (0 );
166
- Method setExcludeFromRecents = task .getClass ()
167
- .getMethod ("setExcludeFromRecents" , boolean .class );
163
+ if (tasks == null || tasks .isEmpty ())
164
+ return ;
168
165
169
- setExcludeFromRecents .invoke (task , true );
170
- } catch (Exception e ) {
171
- e .printStackTrace ();
172
- }
166
+ tasks .get (0 ).setExcludeFromRecents (true );
173
167
}
174
168
175
169
/**
0 commit comments