Book Image

Android 6 Essentials

By : Yossi Elkrief
Book Image

Android 6 Essentials

By: Yossi Elkrief

Overview of this book

Android 6 is the latest and greatest version of the Android operating system, and comes packed with cutting edge new features for you to harness for the benefit of building better applications. This step-by-step guide will take you through the basics of the Android Marshmallow permissions model and beyond into other crucial areas such as the Audio,Video,Camera API and Android’s at work features. Learn how to create, deploy, and manage Android applications with Marshmallow’s API and the latest functionalities. The combination of instructions and real-world examples will make your application deployment and testing a breeze.
Table of Contents (16 chapters)
Android 6 Essentials
Credits
About the Author
Acknowledgments
About the Reviewer
www.PacktPub.com
Preface
Index

Audio features


Android Marshmallow 6.0 adds some enrichments to the audio features that we will cover in the upcoming sections.

Support for the MIDI protocol

The android.media.midi package was added in Android 6.0 (API 23).

With the new midi APIs, you can now send and receive MIDI (short for Musical Instrument Digital Interface) events in a much simpler way than earlier.

The package was built to provide us with capabilities to do the following:

  • Connect and use a MIDI keyboard

  • Connect to other MIDI controllers

  • Use external MIDI synthesizers, external peripherals, lights, show control, and so on

  • Allow dynamic music generation from games or music-creation apps

  • Allow the creation and passing of MIDI messages between apps

  • Allow Android devices to act as multi-touch controllers when connected to a laptop

When dealing with MIDI, you must declare it in the manifest, as follows:

<uses-feature android:name="android.software.midi" android:required="true"/>

Pay attention to the required part; in a manner similar...