• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

.google/23-Nov-2023-1913

Application/23-Nov-2023-3,4881,961

gradle/wrapper/23-Nov-2023-66

screenshots/23-Nov-2023-

CONTRIBUTING.mdD23-Nov-20231.5 KiB3627

LICENSED23-Nov-202311.1 KiB204170

README.mdD23-Nov-20232.5 KiB6848

build.gradleD23-Nov-202312 130

gradlewD23-Nov-20235 KiB165122

gradlew.batD23-Nov-20232.3 KiB9166

settings.gradleD23-Nov-202323 31

README.md

1
2Android MidiScope Sample
3===================================
4
5Sample demonstrating how to use the MIDI API to receive and process MIDI signals coming from an
6attached device.
7
8Introduction
9------------
10
11The Android MIDI API ([android.media.midi][1]) allows developers to connect a MIDI device to Android
12and process MIDI signals coming from it. This sample demonstrates some basic features of the MIDI
13API, such as enumeration of currently available devices (Information includes name, vendor,
14capabilities, etc), notification when MIDI devices are plugged in or unplugged, and receiving MIDI
15signals. This sample simply shows all the received MIDI signals to the screen log and does not play
16any sound for them.
17[1]: https://developer.android.com/reference/android/media/midi/package-summary.html
18
19Pre-requisites
20--------------
21
22- Android SDK 27
23- Android Build Tools v27.0.2
24- Android Support Repository
25
26Screenshots
27-------------
28
29<img src="screenshots/1-main.png" height="400" alt="Screenshot"/> <img src="screenshots/2-signals.png" height="400" alt="Screenshot"/>
30
31Getting Started
32---------------
33
34This sample uses the Gradle build system. To build this project, use the
35"gradlew build" command or use "Import Project" in Android Studio.
36
37Support
38-------
39
40- Google+ Community: https://plus.google.com/communities/105153134372062985968
41- Stack Overflow: http://stackoverflow.com/questions/tagged/android
42
43If you've found an error in this sample, please file an issue:
44https://github.com/googlesamples/android-MidiScope
45
46Patches are encouraged, and may be submitted by forking this project and
47submitting a pull request through GitHub. Please see CONTRIBUTING.md for more details.
48
49License
50-------
51
52Copyright 2017 The Android Open Source Project, Inc.
53
54Licensed to the Apache Software Foundation (ASF) under one or more contributor
55license agreements.  See the NOTICE file distributed with this work for
56additional information regarding copyright ownership.  The ASF licenses this
57file to you under the Apache License, Version 2.0 (the "License"); you may not
58use this file except in compliance with the License.  You may obtain a copy of
59the License at
60
61http://www.apache.org/licenses/LICENSE-2.0
62
63Unless required by applicable law or agreed to in writing, software
64distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
65WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
66License for the specific language governing permissions and limitations under
67the License.
68