We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 33c5670 + 011238b commit 2278e60Copy full SHA for 2278e60
core/java/android/app/DownloadManager.java
@@ -344,6 +344,13 @@ public static class Request {
344
*/
345
public static final int NETWORK_WIFI = 1 << 1;
346
347
+ /**
348
+ * Bit flag for {@link #setAllowedNetworkTypes} corresponding to
349
+ * {@link ConnectivityManager#TYPE_BLUETOOTH}.
350
+ * @hide
351
+ */
352
+ public static final int NETWORK_BLUETOOTH = 1 << 2;
353
+
354
private Uri mUri;
355
private Uri mDestinationUri;
356
private List<Pair<String, String>> mRequestHeaders = new ArrayList<Pair<String, String>>();
0 commit comments