- Evanston, IL
- @klmcmahon
Block or Report
Block or report kevinmcmahon
Report abuse
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusePinned
-
1
## re:Invent 2019 Workshops
23A list of public repositories, content, and web from re:Invent 2019 Workshops. Many of the links are subject to be moved or completely removed at any point in time in the future.
45| Session ID | Session Name | Repo/Site |
-
1
private boolean isServiceRunning() {
2ActivityManager manager = (ActivityManager) getSystemService(ACTIVITY_SERVICE);
3for (RunningServiceInfo service : manager.getRunningServices(Integer.MAX_VALUE)){
4if("com.example.MyNeatoIntentService".equals(service.service.getClassName())) {
5return true;