blob: 01c1b486808e8e57eb756d15a00022b8f777112c [file] [log] [blame]
Dirk Dougherty43eb9512016-03-03 14:53:16 -08001page.title=Android N APIs & Features
2meta.tags="preview", "androidn"
3page.tags="preview", "developer preview"
4page.image=images/cards/card-n-overview_2x.png
Dirk Dougherty5748bc42016-02-06 18:24:32 -08005@jd:body
6
7
8<div id="qv-wrapper">
9<div id="qv">
10
11<h2>In this document
12 <a href="#" onclick="hideNestedItems('#toc44',this);return false;" class="header-toggle">
13 <span class="more">show more</span>
14 <span class="less" style="display:none">show less</span></a></h2>
15
16<ol id="toc44" class="hide-nested">
17 <li><a href="#app-linking">App Linking</a></li>
18 <li><a href="#backup">Auto Backup for Apps</a></li>
19 <li><a href="#authentication">Authentication</a>
20 <ol>
21 <li><a href="#fingerprint-authentication">Fingerprint Authentication</a></li>
22 <li><a href="#confirm-credential">Confirm Credential</a></li>
23 </ol>
24 </li>
25 <li><a href="#direct-share">Direct Share</a></li>
26 <li><a href="#voice-interactions">Voice Interactions</a></li>
27 <li><a href="#assist">Assist API</a></li>
28 <li><a href="#notifications">Notifications</a></li>
29 <li><a href="#bluetooth-stylus">Bluetooth Stylus Support</a></li>
30 <li><a href="#ble-scanning">Improved Bluetooth Low Energy Scanning</a></li>
31 <li><a href="#hotspot">Hotspot 2.0 Release 1 Support</a></li>
32 <li><a href="#4K-display">4K Display Mode</a></li>
33 <li><a href="#behavior-themeable-colorstatelists">Themeable ColorStateLists</a></li>
34 <li><a href="#audio">Audio Features</a></li>
35 <li><a href="#video">Video Features</a></li>
36 <li><a href="#camera">Camera Features</a>
37 <ol>
38 <li><a href="#flashlight">Flashlight API</a></li>
39 <li><a href="#reprocessing">Camera Reprocessing</a></li>
40 </ol>
41 </li>
42 <li><a href="#afw">Android for Work Features</a></li>
43</ol>
44
45<h2>API Differences</h2>
46<ol>
47<li><a href="{@docRoot}sdk/api_diff/23/changes.html">API level 22 to 23 (Preview 3) &raquo;</a> </li>
48</ol>
49
50</div>
51</div>
52
53<p>The M Developer Preview gives you an advance look at the upcoming release
54for the Android platform, which offers new features for users and app
55developers. This document provides an introduction to the most notable APIs.</p>
56
57<p>
58 The M Developer Preview 3 release includes the <strong>final APIs for Android 6.0 (API level
59 23)</strong>. If you are preparing an app for use on Android 6.0,
60 <a href="{@docRoot}preview/setup-sdk.html">download the latest SDK</a> and to complete your
61 final updates and release testing. You can review the final APIs in the
62 <a href="{@docRoot}reference/packages.html">API Reference</a> and see the API differences in
63 the <a href="{@docRoot}sdk/api_diff/23/changes.html">Android API Differences Report</a>.
64</p>
65
66</p>
67
68<p class="caution"><strong>Important:</strong>
69 You may now publish apps that target Android 6.0 (API level 23) to the Google Play store.
70</p>
71
72<p class="note"><strong>Note:</strong>
73 If you have been working with previous preview releases and want to see the differences
74 between the final API and previous preview versions, download the additional difference
75 reports included in the <a href="{@docRoot}preview/download.html#docs">preview docs
76 reference</a>.
77</p>
78
79<h3>Important behavior changes</h3>
80
81<p>If you have previously published an app for Android, be aware that your app might be affected
82by changes in the platform.</p>
83
84<p>Please see <a href="behavior-changes.html">Behavior Changes</a> for complete information.</p>
85
86<h2 id="app-linking">App Linking</h2>
87<p>This preview enhances Android’s intent system by providing more powerful app linking.
88This feature allows you to associate an app with a web domain you own. Based on this
89association, the platform can determine the default app to use to handle a particular
90web link and skip prompting users to select an app. To learn how to implement this feature, see
91<a href="{@docRoot}preview/features/app-linking.html">App Linking</a>.
92
93<h2 id="backup">Auto Backup for Apps</h2>
94<p>The system now performs automatic full data backup and restore for apps. For the
95duration of the <a href="{@docRoot}preview/overview.html">M Developer Preview program</a>, all
96apps are backed up, independent of which SDK version they target. After the final M SDK release,
97your app must target M to enable this behavior; you do not need to add any additional code. If users
98delete their Google accounts, their backup data is deleted as well. To learn how this feature
99works and how to configure what to back up on the file system, see
100<a href="{@docRoot}preview/backup/index.html">Auto Backup for Apps</a>.</p>
101
102<h2 id="authentication">Authentication</h2>
103<p>This preview offers new APIs to let you authenticate users by using their fingerprint scans on
104supported devices, and check how recently the user was last authenticated using a device unlocking
105mechanism (such as a lockscreen password). Use these APIs in conjunction with
106the <a href="{@docRoot}training/articles/keystore.html">Android Keystore system</a>.</p>
107
108<h3 id="fingerprint-authentication">Fingerprint Authentication</h3>
109
110<p>To authenticate users via fingerprint scan, get an instance of the new
111{@link android.hardware.fingerprint.FingerprintManager} class and call the
112{@link android.hardware.fingerprint.FingerprintManager#authenticate(android.hardware.fingerprint.FingerprintManager.CryptoObject, android.os.CancellationSignal, int, android.hardware.fingerprint.FingerprintManager.AuthenticationCallback, android.os.Handler) authenticate()}
113method. Your app must be running on a compatible
114device with a fingerprint sensor. You must implement the user interface for the fingerprint
115authentication flow on your app, and use the standard Android fingerprint icon in your UI.
116The Android fingerprint icon ({@code c_fp_40px.png}) is included in the
117<a href="https://github.com/googlesamples/android-FingerprintDialog"
118class="external-link">sample app</a>. If you are developing multiple apps that use fingerprint
119authentication, note that each app must authenticate the user’s fingerprint independently.
120</p>
121
122<p>To use this feature in your app, first add the
123 {@link android.Manifest.permission#USE_FINGERPRINT} permission in your manifest.</p>
124
125<pre>
126&lt;uses-permission
127 android:name="android.permission.USE_FINGERPRINT" /&gt;
128</pre>
129<img src="{@docRoot}preview/images/fingerprint-screen.png"
130srcset="{@docRoot}preview/images/fingerprint-screen.png 1x, {@docRoot}preview/images/fingerprint-screen_2x.png 2x"
131style="float:right; margin:0 0 10px 20px" width="282" height="476" />
132
133<p>To see an app implementation of fingerprint authentication, refer to the
134<a href="https://github.com/googlesamples/android-FingerprintDialog" class="external-link">
135 Fingerprint Dialog sample</a>. For a demonstration of how you can use these authentication
136 APIs in conjunction with other Android APIs, see the video
137 <a class="video-shadowbox-button" href="https://www.youtube.com/watch?v=VOn7VrTRlA4">
138 Fingerprint and Payment APIs</a>.</p>
139
140<p>If you are testing this feature, follow these steps:</p>
141<ol>
142<li>Install Android SDK Tools Revision 24.3, if you have not done so.</li>
143<li>Enroll a new fingerprint in the emulator by going to
144<strong>Settings > Security > Fingerprint</strong>, then follow the enrollment instructions.</li>
145<li>Use an emulator to emulate fingerprint touch events with the
146following command. Use the same command to emulate fingerprint touch events on the lockscreen or
147in your app.
148<pre class="no-prettyprint">
149adb -e emu finger touch &lt;finger_id&gt;
150</pre>
151<p>On Windows, you may have to run {@code telnet 127.0.0.1 <emulator-id>} followed by
152 {@code finger touch <finger_id>}.
153</p>
154</li>
155</ol>
156
157<h3 id="confirm-credential">Confirm Credential</h3>
158<p>Your app can authenticate users based on how recently they last unlocked their device. This
159feature frees users from having to remember additional app-specific passwords, and avoids the need
160for you to implement your own authentication user interface. Your app should use this feature in
161conjunction with a public or secret key implementation for user authentication.</p>
162
163<p>To set the timeout duration for which the same key can be re-used after a user is successfully
164authenticated, call the new
165{@link android.security.keystore.KeyGenParameterSpec.Builder#setUserAuthenticationValidityDurationSeconds(int) setUserAuthenticationValidityDurationSeconds()}
166method when you set up a {@link javax.crypto.KeyGenerator} or
167{@link java.security.KeyPairGenerator}.</p>
168
169<p>Avoid showing the re-authentication dialog excessively -- your apps should try using the
170cryptographic object first and if the the timeout expires, use the
171{@link android.app.KeyguardManager#createConfirmDeviceCredentialIntent(java.lang.CharSequence, java.lang.CharSequence) createConfirmDeviceCredentialIntent()}
172method to re-authenticate the user within your app.
173</p>
174
175<p>To see an app implementation of this feature, refer to the
176<a href="https://github.com/googlesamples/android-ConfirmCredential" class="external-link">
177 Confirm Credential sample</a>.</p>
178
179<h2 id="direct-share">Direct Share</h2>
180
181<img src="{@docRoot}preview/images/direct-share-screen.png"
182srcset="{@docRoot}preview/images/direct-share-screen.png 1x, {@docRoot}preview/images/direct-share-screen_2x.png 2x"
183style="float:right; margin:0 0 20px 30px" width="312" height="329" />
184
185<p>This preview provides you with APIs to make sharing intuitive and quick for users. You can now
186define <em>direct share targets</em> that launch a specific activity in your app. These direct share
187targets are exposed to users via the <em>Share</em> menu. This feature allows users to share
188content to targets, such as contacts, within other apps. For example, the direct share target might
189launch an activity in another social network app, which lets the user share content directly to a
190specific friend or community in that app.</p>
191
192<p>To enable direct share targets you must define a class that extends the
193{@link android.service.chooser.ChooserTargetService} class. Declare your
194service in the manifest. Within that declaration, specify the
195{@link android.Manifest.permission#BIND_CHOOSER_TARGET_SERVICE} permission and an
196intent filter using the
197{@link android.service.chooser.ChooserTargetService#SERVICE_INTERFACE SERVICE_INTERFACE} action.</p>
198<p>The following example shows how you might declare the
199{@link android.service.chooser.ChooserTargetService} in your manifest.</p>
200<pre>
201&lt;service android:name=".ChooserTargetService"
202 android:label="&#64;string/service_name"
203 android:permission="android.permission.BIND_CHOOSER_TARGET_SERVICE"&gt;
204 &lt;intent-filter&gt;
205 &lt;action android:name="android.service.chooser.ChooserTargetService" /&gt;
206 &lt;/intent-filter&gt;
207&lt;/service&gt;
208</pre>
209
210<p>For each activity that you want to expose to
211{@link android.service.chooser.ChooserTargetService}, add a
212{@code <meta-data>} element with the name
213{@code "android.service.chooser.chooser_target_service"} in your app manifest.
214</p>
215
216<pre>
217&lt;activity android:name=".MyShareActivity”
218 android:label="&#64;string/share_activity_label"&gt;
219 &lt;intent-filter>
220 &lt;action android:name="android.intent.action.SEND" /&gt;
221 &lt;/intent-filter>
222&lt;meta-data
223 android:name="android.service.chooser.chooser_target_service"
224 android:value=".ChooserTargetService" /&gt;
225&lt;/activity>
226</pre>
227
228<h2 id="voice-interactions">Voice Interactions</h2>
229<p>
230This preview provides a new voice interaction API which, together with
231<a href="https://developers.google.com/voice-actions/" class="external-link">Voice Actions</a>,
232allows you to build conversational voice experiences into your apps. Call the
233{@link android.app.Activity#isVoiceInteraction()} method to determine if a voice action triggered
234your activity. If so, your app can use the
235{@link android.app.VoiceInteractor} class to request a voice confirmation from the user, select
236from a list of options, and more.</p>
237
238<p>Most voice interactions originate from a user voice action. A voice interaction activity can
239also, however, start without user input. For example, another app launched through a voice
240interaction can also send an intent to launch a voice interaction. To determine if your activity
241launched from a user voice query or from another voice interaction app, call the
242{@link android.app.Activity#isVoiceInteractionRoot()} method. If another app launched your
243activity, the method returns {@code false}. Your app may then prompt the user to confirm that
244they intended this action.</p>
245
246<p>To learn more about implementing voice actions, see the
247<a href="https://developers.google.com/voice-actions/interaction/"
248class="external-link">Voice Actions developer site</a>.
249</p>
250
251<h2 id="assist">Assist API</h2>
252<p>
253This preview offers a new way for users to engage with your apps through an assistant. To use this
254feature, the user must enable the assistant to use the current context. Once enabled, the user
255can summon the assistant within any app, by long-pressing on the <strong>Home</strong> button.</p>
256<p>Your app can elect to not share the current context with the assistant by setting the
257{@link android.view.WindowManager.LayoutParams#FLAG_SECURE} flag. In addition to the
258standard set of information that the platform passes to the assistant, your app can share
259additional information by using the new {@link android.app.assist.AssistContent} class.</p>
260
261<p>To provide the assistant with additional context from your app, follow these steps:</p>
262
263<ol>
264<li>Implement the {@link android.app.Application.OnProvideAssistDataListener} interface.</li>
265<li>Register this listener by using
266{@link android.app.Application#registerOnProvideAssistDataListener(android.app.Application.OnProvideAssistDataListener) registerOnProvideAssistDataListener()}.</li>
267<li>In order to provide activity-specific contextual information, override the
268{@link android.app.Activity#onProvideAssistData(android.os.Bundle) onProvideAssistData()}
269callback and, optionally, the new
270{@link android.app.Activity#onProvideAssistContent(android.app.assist.AssistContent) onProvideAssistContent()}
271callback.
272</ol>
273
274<h2 id="notifications">Notifications</h2>
275<p>This preview adds the following API changes for notifications:</p>
276<ul>
277 <li>New {@link android.app.NotificationManager#INTERRUPTION_FILTER_ALARMS} filter level that
278 corresponds to the new <em>Alarms only</em> do not disturb mode.</li>
279 <li>New {@link android.app.Notification#CATEGORY_REMINDER} category value that is used to
280 distinguish user-scheduled reminders from other events
281 ({@link android.app.Notification#CATEGORY_EVENT}) and alarms
282 ({@link android.app.Notification#CATEGORY_ALARM}).</li>
283 <li>New {@link android.graphics.drawable.Icon} class that you can attach to your notifications
284 via the
285 {@link android.app.Notification.Builder#setSmallIcon(android.graphics.drawable.Icon) setSmallIcon()}
286 and {@link android.app.Notification.Builder#setLargeIcon(android.graphics.drawable.Icon) setLargeIcon()}
287 methods. Similarly, the
288 {@link android.app.Notification.Builder#addAction(int, java.lang.CharSequence, android.app.PendingIntent)
289 addAction()} method now accepts an {@link android.graphics.drawable.Icon} object instead of a
290 drawable resource ID.</li>
291 <li>New {@link android.app.NotificationManager#getActiveNotifications()} method that allows your
292 apps to find out which of their notifications are currently alive. To see an app implementation
293 that uses this feature, see the <a href="https://github.com/googlesamples/android-ActiveNotifications"
294 class="external-link">Active Notifications sample</a>.</li>
295</ul>
296
297<h2 id="bluetooth-stylus">Bluetooth Stylus Support</h2>
298<p>This preview provides improved support for user input using a Bluetooth stylus. Users can pair
299and connect a compatible Bluetooth stylus with their phone or tablet. While connected, position
300information from the touch screen is fused with pressure and button information from the stylus to
301provide a greater range of expression than with the touch screen alone. Your app can listen for
302stylus button presses and perform secondary actions, by registering
303{@link android.view.View.OnContextClickListener} and
304{@link android.view.GestureDetector.OnContextClickListener} objects in your activity.</p>
305
306<p>Use the {@link android.view.MotionEvent} methods and constants to detect stylus button
307interactions:</p>
308<ul>
309<li>If the user touches a stylus with a button on the screen of your app, the
310{@link android.view.MotionEvent#getToolType(int) getTooltype()} method returns
311{@link android.view.MotionEvent#TOOL_TYPE_STYLUS}.</li>
312<li>For apps targeting M Preview, the
313{@link android.view.MotionEvent#getButtonState() getButtonState()}
314method returns {@link android.view.MotionEvent#BUTTON_STYLUS_PRIMARY} when the user
315presses the primary stylus button. If the stylus has a second button, the same method returns
316{@link android.view.MotionEvent#BUTTON_STYLUS_SECONDARY} when the user presses it. If the user presses
317both buttons simultaneously, the method returns both values OR'ed together
318({@link android.view.MotionEvent#BUTTON_STYLUS_PRIMARY}|{@link android.view.MotionEvent#BUTTON_STYLUS_SECONDARY}).</li>
319<li>
320For apps targeting a lower platform version, the
321{@link android.view.MotionEvent#getButtonState() getButtonState()} method returns
322{@link android.view.MotionEvent#BUTTON_SECONDARY} (for primary stylus button press),
323{@link android.view.MotionEvent#BUTTON_TERTIARY} (for secondary stylus button press), or both.
324</li>
325</ul>
326
327<h2 id="ble-scanning">Improved Bluetooth Low Energy Scanning</h2>
328<p>
329If your app performs performs Bluetooth Low Energy scans, use the new
330{@link android.bluetooth.le.ScanSettings.Builder#setCallbackType(int) setCallbackType()}
331method to specify that you want the system to notify callbacks when it first finds, or sees after a
332long time, an advertisement packet matching the set {@link android.bluetooth.le.ScanFilter}. This
333approach to scanning is more power-efficient than what’s provided in the previous platform version.
334</p>
335
336<h2 id="hotspot">Hotspot 2.0 Release 1 Support</h2>
337<p>
338This preview adds support for the Hotspot 2.0 Release 1 spec on Nexus 6 and Nexus 9 devices. To
339provision Hotspot 2.0 credentials in your app, use the new methods of the
340{@link android.net.wifi.WifiEnterpriseConfig} class, such as
341{@link android.net.wifi.WifiEnterpriseConfig#setPlmn(java.lang.String) setPlmn()} and
342{@link android.net.wifi.WifiEnterpriseConfig#setRealm(java.lang.String) setRealm()}. In the
343{@link android.net.wifi.WifiConfiguration} object, you can set the
344{@link android.net.wifi.WifiConfiguration#FQDN} and the
345{@link android.net.wifi.WifiConfiguration#providerFriendlyName} fields.
346The new {@link android.net.wifi.ScanResult#isPasspointNetwork()} method indicates if a detected
347network represents a Hotspot 2.0 access point.
348</p>
349
350<h2 id="4K-display">4K Display Mode</h2>
351<p>The platform now allows apps to request that the display resolution be upgraded to 4K rendering
352on compatible hardware. To query the current physical resolution, use the new
353{@link android.view.Display.Mode} APIs. If the UI is drawn at a lower logical resolution and is
354upscaled to a larger physical resolution, be aware that the physical resolution the
355{@link android.view.Display.Mode#getPhysicalWidth()} method returns may differ from the logical
356resolution reported by {@link android.view.Display#getSize(android.graphics.Point) getSize()}.</p>
357
358<p>You can request the system to change the physical resolution in your app as it runs, by setting
359the {@link android.view.WindowManager.LayoutParams#preferredDisplayModeId} property of your app’s
360window. This feature is useful if you want to switch to 4K display resolution. While in 4K display
361mode, the UI continues to be rendered at the original resolution (such as 1080p) and is upscaled to
3624K, but {@link android.view.SurfaceView} objects may show content at the native resolution.</p>
363
364<h2 id="behavior-themeable-colorstatelists">Themeable ColorStateLists</h2>
365<p>Theme attributes are now supported in
366{@link android.content.res.ColorStateList} for devices running the M Preview. The
367{@link android.content.res.Resources#getColorStateList(int) getColorStateList()} and
368{@link android.content.res.Resources#getColor(int) getColor()} methods have been deprecated. If
369you are calling these APIs, call the new
370{@link android.content.Context#getColorStateList(int) getColorStateList()} or
371{@link android.content.Context#getColor(int) getColor()} methods instead. These methods are also
372available in the v4 appcompat library via {@link android.support.v4.content.ContextCompat}.</p>
373
374<h2 id="audio">Audio Features</h2>
375
376<p>This preview adds enhancements to audio processing on Android, including: </p>
377<ul>
378 <li>Support for the <a href="http://en.wikipedia.org/wiki/MIDI" class="external-link">MIDI</a>
379protocol, with the new {@link android.media.midi} APIs. Use these APIs to send and receive MIDI
380events.</li>
381 <li>New {@link android.media.AudioRecord.Builder} and {@link android.media.AudioTrack.Builder}
382classes to create digital audio capture and playback objects respectively, and configure audio
383source and sink properties to override the system defaults.</li>
384 <li>API hooks for associating audio and input devices. This is particularly useful if your app
385allows users to start a voice search from a game controller or remote control connected to Android
386TV. The system invokes the new
387{@link android.app.Activity#onSearchRequested(android.view.SearchEvent) onSearchRequested()}
388callback when the user starts a search. To determine if the user's input device has a built-in
389microphone, retrieve the {@link android.view.InputDevice} object from that callback, then call the
390new {@link android.view.InputDevice#hasMicrophone()} method.</li>
391 <li>New {@link android.media.AudioManager#getDevices(int) getDevices()} method which lets you
392retrieve a list of all audio devices currently connected to the system. You can also register an
393{@link android.media.AudioDeviceCallback} object if you want the system to notify your app
394when an audio device connects or disconnects.</li>
395</ul>
396
397<h2 id="video">Video Features</h2>
398<p>This preview adds new capabilities to the video processing APIs, including:</p>
399<ul>
400<li>New {@link android.media.MediaSync} class which helps applications to synchronously render
401audio and video streams. The audio buffers are submitted in non-blocking fashion and are
402returned via a callback. It also supports dynamic playback rate.
403</li>
404<li>New {@link android.media.MediaDrm#EVENT_SESSION_RECLAIMED} event, which indicates that a
405session opened by the app has been reclaimed by the resource manager. If your app uses DRM sessions,
406you should handle this event and make sure not to use a reclaimed session.
407</li>
408<li>New {@link android.media.MediaCodec.CodecException#ERROR_RECLAIMED} error code, which indicates
409that the resource manager reclaimed the media resource used by the codec. With this exception, the
410codec must be released, as it has moved to terminal state.
411</li>
412<li>New {@link android.media.MediaCodecInfo.CodecCapabilities#getMaxSupportedInstances()
413getMaxSupportedInstances()} interface to get a hint for the max number of the supported
414concurrent codec instances.
415</li>
416<li>New {@link android.media.MediaPlayer#setPlaybackParams(android.media.PlaybackParams)
417setPlaybackParams()} method to set the media playback rate for fast or
418slow motion playback. It also stretches or speeds up the audio playback automatically in
419conjunction with the video.</li>
420</ul>
421
422<h2 id="camera">Camera Features</h2>
423<p>This preview includes the following new APIs for accessing the camera’s flashlight and for
424camera reprocessing of images:</p>
425
426<h3 id="flashlight">Flashlight API</h3>
427<p>If a camera device has a flash unit, you can call the
428{@link android.hardware.camera2.CameraManager#setTorchMode(java.lang.String, boolean) setTorchMode()}
429method to switch the flash unit’s torch mode on or off without opening the camera device. The app
430does not have exclusive ownership of the flash unit or the camera device. The torch mode is turned
431off and becomes unavailable whenever the camera device becomes unavailable, or when other camera
432resources keeping the torch on become unavailable. Other apps can also call
433{@link android.hardware.camera2.CameraManager#setTorchMode(java.lang.String, boolean) setTorchMode()}
434to turn off the torch mode. When the last app that turned on the torch mode is closed, the torch
435mode is turned off.</p>
436
437<p>You can register a callback to be notified about torch mode status by calling the
438{@link android.hardware.camera2.CameraManager#registerTorchCallback(android.hardware.camera2.CameraManager.TorchCallback, android.os.Handler) registerTorchCallback()}
439method. The first time the callback is registered, it is immediately called with the torch mode
440status of all currently known camera devices with a flash unit. If the torch mode is turned on or
441off successfully, the
442{@link android.hardware.camera2.CameraManager.TorchCallback#onTorchModeChanged(java.lang.String, boolean) onTorchModeChanged()}
443method is invoked.</p>
444
445<h3 id="reprocessing">Reprocessing API</h3>
446<p>The {@link android.hardware.camera2 Camera2} API is extended to support YUV and private
447opaque format image reprocessing. To determine if these reprocessing capabilities are available,
448call {@link android.hardware.camera2.CameraManager#getCameraCharacteristics(java.lang.String)
449getCameraCharacteristics()} and check for the
450{@link android.hardware.camera2.CameraCharacteristics#REPROCESS_MAX_CAPTURE_STALL} key. If a
451device supports reprocessing, you can create a reprocessable camera capture session by calling
452<a href="/reference/android/hardware/camera2/CameraDevice.html#createReprocessableCaptureSession(android.hardware.camera2.params.InputConfiguration, java.util.List<android.view.Surface>, android.hardware.camera2.CameraCaptureSession.StateCallback, android.os.Handler)"><code>createReprocessableCaptureSession()</code></a>,
453and create requests for input buffer reprocessing.</p>
454
455<p>Use the {@link android.media.ImageWriter} class to connect the input buffer flow to the camera
456reprocessing input. To get an empty buffer, follow this programming model:</p>
457
458<ol>
459<li>Call the {@link android.media.ImageWriter#dequeueInputImage()} method.</li>
460<li>Fill the data into the input buffer.</li>
461<li>Send the buffer to the camera by calling the
462{@link android.media.ImageWriter#queueInputImage(android.media.Image) queueInputImage()} method.</li>
463</ol>
464
465<p>If you are using a {@link android.media.ImageWriter} object together with an
466{@link android.graphics.ImageFormat#PRIVATE} image, your app cannot access the image
467data directly. Instead, pass the {@link android.graphics.ImageFormat#PRIVATE} image directly to the
468{@link android.media.ImageWriter} by calling the
469{@link android.media.ImageWriter#queueInputImage(android.media.Image) queueInputImage()} method
470without any buffer copy.</p>
471
472<p>The {@link android.media.ImageReader} class now supports
473{@link android.graphics.ImageFormat#PRIVATE} format image streams. This support allows your app to
474maintain a circular image queue of {@link android.media.ImageReader} output images, select one or
475more images, and send them to the {@link android.media.ImageWriter} for camera reprocessing.</p>
476
477<h2 id="afw">Android for Work Features</h2>
478<p>This preview includes the following new APIs for Android for Work:</p>
479<ul>
480 <li><strong>Enhanced controls for Corporate-Owned, Single-Use devices:</strong> The Device Owner
481can now control the following settings to improve management of
482Corporate-Owned, Single-Use (COSU) devices:
483 <ul>
484 <li>Disable or re-enable the keyguard with the
485{@link android.app.admin.DevicePolicyManager#setKeyguardDisabled(android.content.ComponentName, boolean)
486setKeyguardDisabled()} method.</li>
487 <li>Disable or re-enable the status bar (including quick settings, notifications, and the
488navigation swipe-up gesture that launches Google Now) with the
489{@link android.app.admin.DevicePolicyManager#setStatusBarDisabled(android.content.ComponentName, boolean) setStatusBarDisabled()}
490method.</li>
491 <li>Disable or re-enable safe boot with the {@link android.os.UserManager} constant
492{@link android.os.UserManager#DISALLOW_SAFE_BOOT}.</li>
493 <li>Prevent the screen from turning off while plugged in with the
494 {@link android.provider.Settings.Global#STAY_ON_WHILE_PLUGGED_IN} constant.</li>
495 </ul>
496 </li>
497 <li><strong>Silent install and uninstall of apps by Device Owner:</strong> A Device Owner can now
498silently install and uninstall applications using the {@link android.content.pm.PackageInstaller}
499APIs, independent of Google Play for Work. You can now provision devices through a Device Owner that
500fetches and installs apps without user interaction. This feature is useful for enabling one-touch
501provisioning of kiosks or other such devices without activating a Google account.</li>
502<li><strong>Silent enterprise certificate access: </strong> When an app calls
503{@link android.security.KeyChain#choosePrivateKeyAlias(android.app.Activity,android.security.KeyChainAliasCallback,java.lang.String[],java.security.Principal[],java.lang.String,int,java.lang.String) choosePrivateKeyAlias()},
504prior to the user being prompted to select a certificate, the Profile or Device Owner can now call
505the {@link android.app.admin.DeviceAdminReceiver#onChoosePrivateKeyAlias(android.content.Context, android.content.Intent, int, android.net.Uri, java.lang.String) onChoosePrivateKeyAlias()}
506method to provide the alias silently to the requesting application. This feature lets you grant
507managed apps access to certificates without user interaction.</li>
508<li><strong>Auto-acceptance of system updates.</strong> By setting a system update policy with
509{@link android.app.admin.DevicePolicyManager#setSystemUpdatePolicy(android.content.ComponentName, android.app.admin.SystemUpdatePolicy) setSystemUpdatePolicy()},
510a Device Owner can now auto-accept a system
511update, for instance in the case of a kiosk device, or postpone the update and prevent it being
512taken by the user for up to 30 days. Furthermore, an administrator can set a daily time window in
513which an update must be taken, for example during the hours when a kiosk device is not in use. When
514a system update is available, the system checks if the Work Policy Controller app has set a system
515update policy, and behaves accordingly.
516</li>
517<li>
518<strong>Delegated certificate installation:</strong> A Profile or Device Owner can now grant a
519third-party app the ability to call these {@link android.app.admin.DevicePolicyManager} certificate
520management APIs:
521<ul>
522 <li>{@link android.app.admin.DevicePolicyManager#getInstalledCaCerts(android.content.ComponentName)
523getInstalledCaCerts()}</li>
524 <li>{@link android.app.admin.DevicePolicyManager#hasCaCertInstalled(android.content.ComponentName,byte[])
525hasCaCertInstalled()}</li>
526 <li>{@link android.app.admin.DevicePolicyManager#installCaCert(android.content.ComponentName,byte[])
527installCaCert()}</li>
528 <li>{@link android.app.admin.DevicePolicyManager#uninstallCaCert(android.content.ComponentName,byte[])
529uninstallCaCert()}</li>
530 <li>{@link android.app.admin.DevicePolicyManager#uninstallAllUserCaCerts(android.content.ComponentName)
531uninstallAllUserCaCerts()}</li>
532 <li>{@link android.app.admin.DevicePolicyManager#installKeyPair(android.content.ComponentName,java.security.PrivateKey,java.security.cert.Certificate,java.lang.String)
533installKeyPair()}</li>
534</ul>
535</li>
536<img src="{@docRoot}preview/images/work-profile-screen.png"
537srcset="{@docRoot}preview/images/work-profile-screen.png 1x, {@docRoot}preview/images/work-profile-screen_2x.png 2x"
538style="float:right; margin:0 0 10px 20px" width="282" height="476" />
539<li><strong>Data usage tracking.</strong> A Profile or Device Owner can now query for the
540data usage statistics visible in <strong>Settings > Data</strong> usage by using the new
541{@link android.app.usage.NetworkStatsManager} methods. Profile Owners are automatically granted
542permission to query data on the profile they manage, while Device Owners get access to usage data
543of the managed primary user.</li>
544<li><strong>Runtime permission management:</strong>
545<p>A Profile or Device Owner can set a permission policy
546for all runtime requests of all applications using
547{@link android.app.admin.DevicePolicyManager#setPermissionPolicy(android.content.ComponentName, int)
548setPermissionPolicy()}, to either prompt the user to grant the permission or automatically grant or
549deny the permission silently. If the latter policy is set, the user cannot
550modify the selection made by the Profile or Device Owner within the app’s permissions screen in
551<strong>Settings</strong>.</p></li>
552<li><strong>VPN in Settings:</strong> VPN apps are now visible in
553 <strong>Settings > More > VPN</strong>.
554Additionally, the notifications that accompany VPN usage are now specific to how that VPN is
555configured. For Profile Owner, the notifications are specific to whether the VPN is configured
556for a managed profile, a personal profile, or both. For a Device Owner, the notifications are
557specific to whether the VPN is configured for the entire device.</li>
558<li><strong>Work status notification:</strong> A status bar briefcase icon now appears whenever
559an app from the managed profile has an activity in the foreground. Furthermore, if the device is
560unlocked directly to the activity of an app in the managed profile, a toast is displayed notifying
561the user that they are within the work profile.
562</li>
563</ul>
564
565<p class="note">
566 For a detailed view of all API changes in the M Developer Preview, see the <a href=
567 "{@docRoot}preview/download.html">API Differences Report</a>.
568</p>