We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9d16c21 + 425d13a commit c98db2aCopy full SHA for c98db2a
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