Skip to content

Commit

Permalink
Merge pull request square#132 from roman-mazur/roman/flag-stopped-pac…
Browse files Browse the repository at this point in the history
…kages

Add FLAG_INCLUDE_STOPPED_PACKAGES
  • Loading branch information
JakeWharton committed Sep 25, 2014
2 parents 20fcf92 + 9ab97c3 commit 9efe9e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
import static android.content.Intent.FLAG_GRANT_WRITE_URI_PERMISSION;
import static android.content.Intent.FLAG_RECEIVER_NO_ABORT;
import static android.content.Intent.FLAG_RECEIVER_REGISTERED_ONLY;
import static android.content.Intent.FLAG_INCLUDE_STOPPED_PACKAGES;
import static org.assertj.android.internal.IntegerUtils.buildBitMaskString;
import static org.assertj.core.api.Assertions.assertThat;

Expand Down Expand Up @@ -131,6 +132,7 @@ public static String flagsToString(@IntentFlags int flags) {
.flag(FLAG_ACTIVITY_REORDER_TO_FRONT, "activity_reorder_to_front")
.flag(FLAG_ACTIVITY_SINGLE_TOP, "activity_single_top")
.flag(FLAG_ACTIVITY_TASK_ON_HOME, "activity_task_on_home")
.flag(FLAG_INCLUDE_STOPPED_PACKAGES, "include_stopped_packages")
.get();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED,
Intent.FLAG_ACTIVITY_REORDER_TO_FRONT,
Intent.FLAG_ACTIVITY_SINGLE_TOP,
Intent.FLAG_ACTIVITY_TASK_ON_HOME
Intent.FLAG_ACTIVITY_TASK_ON_HOME,
Intent.FLAG_INCLUDE_STOPPED_PACKAGES
}
)
@Retention(SOURCE)
Expand Down

0 comments on commit 9efe9e3

Please sign in to comment.