internal void StartNotificationsService(bool closeAfterCreate) { Intent showNotIntent = new Intent(this, typeof(CopyToClipboardService)); showNotIntent.SetAction(Intents.ShowNotification); showNotIntent.PutExtra(KeyEntry, Entry.Uuid.ToHexString()); _appTask.PopulatePasswordAccessServiceIntent(showNotIntent); showNotIntent.PutExtra(KeyCloseAfterCreate, closeAfterCreate); StartService(showNotIntent); }