am c8698cb9: Explicitly use an intent chooser for sending bugreport

* commit 'c8698cb92ef83e96b3c7776be9b47d174095bc15':
  Explicitly use an intent chooser for sending bugreport
diff --git a/bugmailer/src/com/android/commands/sendbug/SendBug.java b/bugmailer/src/com/android/commands/sendbug/SendBug.java
index f6d0db7..84a488d 100644
--- a/bugmailer/src/com/android/commands/sendbug/SendBug.java
+++ b/bugmailer/src/com/android/commands/sendbug/SendBug.java
@@ -66,6 +66,7 @@
             final Uri screenshotUri = screenShot != null
                     ? Uri.fromFile(screenShot) : null;
             intent = getSendMailIntent(bugreportUri, screenshotUri);
+            intent = Intent.createChooser(intent, "Send Bugreport via");
         }
         if (intent != null) {
             final IActivityManager mAm = ActivityManagerNative.getDefault();