Skip to content

Commit 2801364

Browse files
committed
Avoid reflections
1 parent 974d6c4 commit 2801364

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

src/android/BackgroundExt.java

+7-13
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,10 @@ Licensed to the Apache Software Foundation (ASF) under one
2121

2222
package de.appplant.cordova.plugin.background;
2323

24+
import android.annotation.TargetApi;
2425
import android.app.Activity;
2526
import android.app.ActivityManager;
27+
import android.app.ActivityManager.AppTask;
2628
import android.content.Context;
2729
import android.content.Intent;
2830
import android.os.Build;
@@ -148,28 +150,20 @@ public void run() {
148150
/**
149151
* Exclude the app from the recent tasks list.
150152
*/
153+
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
151154
private void excludeFromTaskList() {
152155
ActivityManager am = (ActivityManager) getActivity()
153156
.getSystemService(Context.ACTIVITY_SERVICE);
154157

155158
if (am == null || Build.VERSION.SDK_INT < 21)
156159
return;
157160

158-
try {
159-
Method getAppTasks = am.getClass().getMethod("getAppTasks");
160-
List tasks = (List) getAppTasks.invoke(am);
161+
List<AppTask> tasks = am.getAppTasks();
161162

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;
168165

169-
setExcludeFromRecents.invoke(task, true);
170-
} catch (Exception e) {
171-
e.printStackTrace();
172-
}
166+
tasks.get(0).setExcludeFromRecents(true);
173167
}
174168

175169
/**

0 commit comments

Comments
 (0)