File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
assertj-android/src/main/java/org/assertj/android/api/content Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 30
30
import static android .content .Intent .FLAG_GRANT_WRITE_URI_PERMISSION ;
31
31
import static android .content .Intent .FLAG_RECEIVER_NO_ABORT ;
32
32
import static android .content .Intent .FLAG_RECEIVER_REGISTERED_ONLY ;
33
+ import static android .content .Intent .FLAG_INCLUDE_STOPPED_PACKAGES ;
33
34
import static org .assertj .android .internal .IntegerUtils .buildBitMaskString ;
34
35
import static org .assertj .core .api .Assertions .assertThat ;
35
36
@@ -131,6 +132,7 @@ public static String flagsToString(@IntentFlags int flags) {
131
132
.flag (FLAG_ACTIVITY_REORDER_TO_FRONT , "activity_reorder_to_front" )
132
133
.flag (FLAG_ACTIVITY_SINGLE_TOP , "activity_single_top" )
133
134
.flag (FLAG_ACTIVITY_TASK_ON_HOME , "activity_task_on_home" )
135
+ .flag (FLAG_INCLUDE_STOPPED_PACKAGES , "include_stopped_packages" )
134
136
.get ();
135
137
}
136
138
}
Original file line number Diff line number Diff line change 30
30
Intent .FLAG_ACTIVITY_RESET_TASK_IF_NEEDED ,
31
31
Intent .FLAG_ACTIVITY_REORDER_TO_FRONT ,
32
32
Intent .FLAG_ACTIVITY_SINGLE_TOP ,
33
- Intent .FLAG_ACTIVITY_TASK_ON_HOME
33
+ Intent .FLAG_ACTIVITY_TASK_ON_HOME ,
34
+ Intent .FLAG_INCLUDE_STOPPED_PACKAGES
34
35
}
35
36
)
36
37
@ Retention (SOURCE )
You can’t perform that action at this time.
0 commit comments