From 61cc90e29c1beaad59b0bfe3d97ec7af16c71860 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Beno=C3=AEt=20Harrault?= <benoit@harrault.fr>
Date: Tue, 21 Feb 2023 11:22:41 +0100
Subject: [PATCH] Create initial empty application

---
 .gitignore                                    |  45 ++
 .gitlab-ci.yml                                | 124 ++++
 .metadata                                     |  10 +
 LICENSE                                       | 674 ++++++++++++++++++
 README.md                                     |  93 +--
 android/.gitignore                            |  11 +
 android/app/build.gradle                      |  70 ++
 android/app/src/debug/AndroidManifest.xml     |   7 +
 android/app/src/main/AndroidManifest.xml      |  30 +
 .../midisynth/MainActivity.java               |   6 +
 .../res/drawable-v21/launch_background.xml    |  10 +
 .../main/res/drawable/launch_background.xml   |  10 +
 .../src/main/res/mipmap-hdpi/ic_launcher.png  | Bin 0 -> 1647 bytes
 .../src/main/res/mipmap-hdpi/launch_image.png | Bin 0 -> 1647 bytes
 .../src/main/res/mipmap-mdpi/ic_launcher.png  | Bin 0 -> 1051 bytes
 .../src/main/res/mipmap-mdpi/launch_image.png | Bin 0 -> 1051 bytes
 .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 1967 bytes
 .../main/res/mipmap-xhdpi/launch_image.png    | Bin 0 -> 1967 bytes
 .../main/res/mipmap-xxhdpi/ic_launcher.png    | Bin 0 -> 3563 bytes
 .../main/res/mipmap-xxhdpi/launch_image.png   | Bin 0 -> 3563 bytes
 .../main/res/mipmap-xxxhdpi/ic_launcher.png   | Bin 0 -> 4932 bytes
 .../main/res/mipmap-xxxhdpi/launch_image.png  | Bin 0 -> 4932 bytes
 .../app/src/main/res/values-night/styles.xml  |   9 +
 android/app/src/main/res/values/styles.xml    |   9 +
 android/app/src/profile/AndroidManifest.xml   |   7 +
 android/build.gradle                          |  29 +
 android/gradle.properties                     |   5 +
 .../gradle/wrapper/gradle-wrapper.properties  |   6 +
 android/settings.gradle                       |  11 +
 assets/icons/button_back.png                  | Bin 0 -> 3771 bytes
 assets/icons/button_start.png                 | Bin 0 -> 3999 bytes
 assets/icons/placeholder.png                  | Bin 0 -> 170 bytes
 .../metadata/android/en-US/changelogs/1.txt   |   1 +
 .../android/en-US/full_description.txt        |   3 +
 .../android/en-US/images/featureGraphic.png   | Bin 0 -> 214 bytes
 .../metadata/android/en-US/images/icon.png    | Bin 0 -> 17070 bytes
 .../android/en-US/short_description.txt       |   1 +
 fastlane/metadata/android/en-US/title.txt     |   1 +
 .../metadata/android/fr-FR/changelogs/1.txt   |   1 +
 .../android/fr-FR/full_description.txt        |   3 +
 .../android/fr-FR/short_description.txt       |   1 +
 fastlane/metadata/android/fr-FR/title.txt     |   1 +
 fdroid_metadata.yml                           |  20 +
 icons/build_application_icons.sh              |  82 +++
 icons/build_icons.sh                          |   6 +
 icons/build_repository_icons.sh               | 118 +++
 icons/button_back.svg                         |   2 +
 icons/button_start.svg                        |   2 +
 icons/featureGraphic.svg                      |   2 +
 icons/icon.svg                                |  82 +++
 icons/placeholder.svg                         |   2 +
 lib/layout/board.dart                         |  16 +
 lib/layout/game.dart                          |  11 +
 lib/layout/parameters.dart                    | 148 ++++
 lib/main.dart                                 |  36 +
 lib/provider/data.dart                        |  57 ++
 lib/screens/home.dart                         |  62 ++
 lib/utils/game_utils.dart                     |  14 +
 pubspec.lock                                  | 292 ++++++++
 pubspec.yaml                                  |  23 +
 60 files changed, 2061 insertions(+), 92 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 .gitlab-ci.yml
 create mode 100644 .metadata
 create mode 100644 LICENSE
 create mode 100644 android/.gitignore
 create mode 100644 android/app/build.gradle
 create mode 100644 android/app/src/debug/AndroidManifest.xml
 create mode 100644 android/app/src/main/AndroidManifest.xml
 create mode 100644 android/app/src/main/java/org/benoitharrault/midisynth/MainActivity.java
 create mode 100644 android/app/src/main/res/drawable-v21/launch_background.xml
 create mode 100644 android/app/src/main/res/drawable/launch_background.xml
 create mode 100644 android/app/src/main/res/mipmap-hdpi/ic_launcher.png
 create mode 100644 android/app/src/main/res/mipmap-hdpi/launch_image.png
 create mode 100644 android/app/src/main/res/mipmap-mdpi/ic_launcher.png
 create mode 100644 android/app/src/main/res/mipmap-mdpi/launch_image.png
 create mode 100644 android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
 create mode 100644 android/app/src/main/res/mipmap-xhdpi/launch_image.png
 create mode 100644 android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
 create mode 100644 android/app/src/main/res/mipmap-xxhdpi/launch_image.png
 create mode 100644 android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
 create mode 100644 android/app/src/main/res/mipmap-xxxhdpi/launch_image.png
 create mode 100644 android/app/src/main/res/values-night/styles.xml
 create mode 100644 android/app/src/main/res/values/styles.xml
 create mode 100644 android/app/src/profile/AndroidManifest.xml
 create mode 100644 android/build.gradle
 create mode 100644 android/gradle.properties
 create mode 100644 android/gradle/wrapper/gradle-wrapper.properties
 create mode 100644 android/settings.gradle
 create mode 100644 assets/icons/button_back.png
 create mode 100644 assets/icons/button_start.png
 create mode 100644 assets/icons/placeholder.png
 create mode 100644 fastlane/metadata/android/en-US/changelogs/1.txt
 create mode 100644 fastlane/metadata/android/en-US/full_description.txt
 create mode 100644 fastlane/metadata/android/en-US/images/featureGraphic.png
 create mode 100644 fastlane/metadata/android/en-US/images/icon.png
 create mode 100644 fastlane/metadata/android/en-US/short_description.txt
 create mode 100644 fastlane/metadata/android/en-US/title.txt
 create mode 100644 fastlane/metadata/android/fr-FR/changelogs/1.txt
 create mode 100644 fastlane/metadata/android/fr-FR/full_description.txt
 create mode 100644 fastlane/metadata/android/fr-FR/short_description.txt
 create mode 100644 fastlane/metadata/android/fr-FR/title.txt
 create mode 100644 fdroid_metadata.yml
 create mode 100755 icons/build_application_icons.sh
 create mode 100755 icons/build_icons.sh
 create mode 100755 icons/build_repository_icons.sh
 create mode 100644 icons/button_back.svg
 create mode 100644 icons/button_start.svg
 create mode 100644 icons/featureGraphic.svg
 create mode 100644 icons/icon.svg
 create mode 100644 icons/placeholder.svg
 create mode 100644 lib/layout/board.dart
 create mode 100644 lib/layout/game.dart
 create mode 100644 lib/layout/parameters.dart
 create mode 100644 lib/main.dart
 create mode 100644 lib/provider/data.dart
 create mode 100644 lib/screens/home.dart
 create mode 100644 lib/utils/game_utils.dart
 create mode 100644 pubspec.lock
 create mode 100644 pubspec.yaml

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..361df94
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,45 @@
+# Miscellaneous
+*.class
+*.log
+*.pyc
+*.swp
+.DS_Store
+.atom/
+.buildlog/
+.history
+.svn/
+
+# IntelliJ related
+*.iml
+*.ipr
+*.iws
+.idea/
+
+# The .vscode folder contains launch configuration and tasks you configure in
+# VS Code which you may wish to be included in version control, so this line
+# is commented out by default.
+#.vscode/
+
+# Flutter/Dart/Pub related
+**/doc/api/
+.dart_tool/
+.flutter-plugins
+.flutter-plugins-dependencies
+.packages
+.pub-cache/
+.pub/
+/build/
+
+# Web related
+lib/generated_plugin_registrant.dart
+
+# Symbolication related
+app.*.symbols
+
+# Obfuscation related
+app.*.map.json
+
+# Android Studio will place build artifacts here
+/android/app/debug
+/android/app/profile
+/android/app/release
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..9d0e11e
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,124 @@
+image: cirrusci/flutter:latest
+
+stages:
+  - update
+  - build-debug
+  - build-release
+  - release
+  - deploy
+
+update:
+  stage: update
+  except:
+    - tags
+  script:
+    - flutter packages get
+    - flutter packages upgrade
+  interruptible: true
+
+android:build-debug:
+  stage: build-debug
+  except:
+    - tags
+  script:
+    # Flutter local configuration
+    - echo flutter.sdk=$FLUTTER_PATH > android/local.properties
+    - echo sdk.dir=$ANDROID_SDK_PATH >> android/local.properties
+    - echo flutter.buildMode=debug >> android/local.properties
+    # Android signing
+    - echo "$ANDROID_DEBUG_KEYSTORE_FILE" | base64 -d > android/app/my.keystore
+    - echo storeFile=my.keystore > android/key.properties
+    - echo storePassword=$ANDROID_DEBUG_KEYSTORE_PASSWORD >> android/key.properties
+    - echo keyAlias=$ANDROID_DEBUG_KEY_ALIAS >> android/key.properties
+    - echo keyPassword=$ANDROID_DEBUG_KEY_PASSWORD >> android/key.properties
+    # build flutter app
+    - flutter packages get
+    - flutter clean
+    - flutter build apk --debug
+    # prepare artifact
+    - find . -name "*.apk" # where is my apk?
+  artifacts:
+    paths:
+      - build/app/outputs/apk/debug
+    expire_in: 1 week
+  interruptible: true
+
+android:build-release:
+  stage: build-release
+  only:
+    - master
+  except:
+    - tags
+  dependencies:
+    - android:build-debug
+  script:
+    # Flutter local configuration
+    - echo flutter.sdk=$FLUTTER_PATH > android/local.properties
+    - echo sdk.dir=$ANDROID_SDK_PATH >> android/local.properties
+    - echo flutter.buildMode=release >> android/local.properties
+    # Android signing
+    - echo "$ANDROID_KEYSTORE_FILE" | base64 -d > android/app/my.keystore
+    - echo storeFile=my.keystore > android/key.properties
+    - echo storePassword=$ANDROID_KEYSTORE_PASSWORD >> android/key.properties
+    - echo keyAlias=$ANDROID_KEY_ALIAS >> android/key.properties
+    - echo keyPassword=$ANDROID_KEY_PASSWORD >> android/key.properties
+    # build flutter app
+    - VERSION_FILE="$(find . -name 'gradle.properties' | head -n1)"
+    - VERSION_NAME="$(grep '^app.versionName=' "${VERSION_FILE}" | cut -d'=' -f2)"
+    - VERSION_CODE="$(grep '^app.versionCode=' "${VERSION_FILE}" | cut -d'=' -f2)"
+    - TAG_NAME="Release_${VERSION_NAME}_${VERSION_CODE}"
+    - echo "${TAG_NAME}"
+    - >
+      if [ $(git tag -l "${TAG_NAME}") ]; then
+        echo "Tag ${TAG_NAME} already exists. Skipping build release."
+      else
+        flutter packages get
+        flutter clean
+        flutter build apk --release
+      fi
+    # prepare artifact
+    - find . -name "*.apk" # where is my apk?
+  artifacts:
+    paths:
+      - build/app/outputs/apk/release
+    expire_in: 1 week
+  interruptible: true
+
+application:release:
+  stage: release
+  image:
+    name: alpine/git
+    entrypoint: [""]
+  only:
+    - master
+  except:
+    - tags
+  dependencies:
+    - android:build-release
+  script:
+    - apk --no-cache add curl
+    - git config user.email "${GITLAB_USER_EMAIL}"
+    - git config user.name "${GITLAB_USER_NAME}"
+    - git remote set-url origin https://oauth2:${GITLAB_ACCESS_TOKEN}@${CI_SERVER_HOST}/${CI_PROJECT_PATH}
+    - VERSION_FILE="$(find . -name 'gradle.properties' | head -n1)"
+    - VERSION_NAME="$(grep '^app.versionName=' "${VERSION_FILE}" | cut -d'=' -f2)"
+    - VERSION_CODE="$(grep '^app.versionCode=' "${VERSION_FILE}" | cut -d'=' -f2)"
+    - TAG_NAME="Release_${VERSION_NAME}_${VERSION_CODE}"
+    - echo "${TAG_NAME}"
+    - >
+      if [ $(git tag -l "${TAG_NAME}") ]; then
+        echo "Tag ${TAG_NAME} already exists. Skipping release and tag creation."
+      else
+        git tag -a "${TAG_NAME}" -m "Release ${VERSION_NAME} (${VERSION_CODE})"
+        git push origin "${TAG_NAME}"
+        curl --silent -d "{\"token\": \"${JABBER_NOTIFICATION_TOKEN}\", \"message\": \"New tag for ${CI_PROJECT_PATH}: ${TAG_NAME}\"}" -H "Content-Type: application/json" -X POST ${JABBER_NOTIFICATION_URL}
+      fi
+
+android:deploy:
+  stage: deploy
+  only:
+    - tags
+  dependencies:
+    - application:release
+  script:
+    - curl "${REPOSITORY_UPDATE_WEBHOOK}?token=${REPOSITORY_TOKEN}"
diff --git a/.metadata b/.metadata
new file mode 100644
index 0000000..b2896b2
--- /dev/null
+++ b/.metadata
@@ -0,0 +1,10 @@
+# This file tracks properties of this Flutter project.
+# Used by Flutter tool to assess capabilities and perform upgrades etc.
+#
+# This file should be version controlled and should not be manually edited.
+
+version:
+  revision: 5bedb7b1d5698ce2c1c67aaf9afae7b3948b172a
+  channel: beta
+
+project_type: app
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..f288702
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,674 @@
+                    GNU GENERAL PUBLIC LICENSE
+                       Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+                            Preamble
+
+  The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+  The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works.  By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users.  We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors.  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+  To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights.  Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received.  You must make sure that they, too, receive
+or can get the source code.  And you must show them these terms so they
+know their rights.
+
+  Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+  For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software.  For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+  Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so.  This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software.  The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable.  Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products.  If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+  Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary.  To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+                       TERMS AND CONDITIONS
+
+  0. Definitions.
+
+  "This License" refers to version 3 of the GNU General Public License.
+
+  "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+  "The Program" refers to any copyrightable work licensed under this
+License.  Each licensee is addressed as "you".  "Licensees" and
+"recipients" may be individuals or organizations.
+
+  To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy.  The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+  A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+  To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy.  Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+  To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies.  Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+  An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License.  If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+  1. Source Code.
+
+  The "source code" for a work means the preferred form of the work
+for making modifications to it.  "Object code" means any non-source
+form of a work.
+
+  A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+  The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form.  A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+  The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities.  However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work.  For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+  The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+  The Corresponding Source for a work in source code form is that
+same work.
+
+  2. Basic Permissions.
+
+  All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met.  This License explicitly affirms your unlimited
+permission to run the unmodified Program.  The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work.  This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+  You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force.  You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright.  Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+  Conveying under any other circumstances is permitted solely under
+the conditions stated below.  Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+  3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+  No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+  When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+  4. Conveying Verbatim Copies.
+
+  You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+  You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+  5. Conveying Modified Source Versions.
+
+  You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+    a) The work must carry prominent notices stating that you modified
+    it, and giving a relevant date.
+
+    b) The work must carry prominent notices stating that it is
+    released under this License and any conditions added under section
+    7.  This requirement modifies the requirement in section 4 to
+    "keep intact all notices".
+
+    c) You must license the entire work, as a whole, under this
+    License to anyone who comes into possession of a copy.  This
+    License will therefore apply, along with any applicable section 7
+    additional terms, to the whole of the work, and all its parts,
+    regardless of how they are packaged.  This License gives no
+    permission to license the work in any other way, but it does not
+    invalidate such permission if you have separately received it.
+
+    d) If the work has interactive user interfaces, each must display
+    Appropriate Legal Notices; however, if the Program has interactive
+    interfaces that do not display Appropriate Legal Notices, your
+    work need not make them do so.
+
+  A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit.  Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+  6. Conveying Non-Source Forms.
+
+  You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+    a) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by the
+    Corresponding Source fixed on a durable physical medium
+    customarily used for software interchange.
+
+    b) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by a
+    written offer, valid for at least three years and valid for as
+    long as you offer spare parts or customer support for that product
+    model, to give anyone who possesses the object code either (1) a
+    copy of the Corresponding Source for all the software in the
+    product that is covered by this License, on a durable physical
+    medium customarily used for software interchange, for a price no
+    more than your reasonable cost of physically performing this
+    conveying of source, or (2) access to copy the
+    Corresponding Source from a network server at no charge.
+
+    c) Convey individual copies of the object code with a copy of the
+    written offer to provide the Corresponding Source.  This
+    alternative is allowed only occasionally and noncommercially, and
+    only if you received the object code with such an offer, in accord
+    with subsection 6b.
+
+    d) Convey the object code by offering access from a designated
+    place (gratis or for a charge), and offer equivalent access to the
+    Corresponding Source in the same way through the same place at no
+    further charge.  You need not require recipients to copy the
+    Corresponding Source along with the object code.  If the place to
+    copy the object code is a network server, the Corresponding Source
+    may be on a different server (operated by you or a third party)
+    that supports equivalent copying facilities, provided you maintain
+    clear directions next to the object code saying where to find the
+    Corresponding Source.  Regardless of what server hosts the
+    Corresponding Source, you remain obligated to ensure that it is
+    available for as long as needed to satisfy these requirements.
+
+    e) Convey the object code using peer-to-peer transmission, provided
+    you inform other peers where the object code and Corresponding
+    Source of the work are being offered to the general public at no
+    charge under subsection 6d.
+
+  A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+  A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling.  In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage.  For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product.  A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+  "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source.  The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+  If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information.  But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+  The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed.  Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+  Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+  7. Additional Terms.
+
+  "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law.  If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+  When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it.  (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.)  You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+  Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+    a) Disclaiming warranty or limiting liability differently from the
+    terms of sections 15 and 16 of this License; or
+
+    b) Requiring preservation of specified reasonable legal notices or
+    author attributions in that material or in the Appropriate Legal
+    Notices displayed by works containing it; or
+
+    c) Prohibiting misrepresentation of the origin of that material, or
+    requiring that modified versions of such material be marked in
+    reasonable ways as different from the original version; or
+
+    d) Limiting the use for publicity purposes of names of licensors or
+    authors of the material; or
+
+    e) Declining to grant rights under trademark law for use of some
+    trade names, trademarks, or service marks; or
+
+    f) Requiring indemnification of licensors and authors of that
+    material by anyone who conveys the material (or modified versions of
+    it) with contractual assumptions of liability to the recipient, for
+    any liability that these contractual assumptions directly impose on
+    those licensors and authors.
+
+  All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10.  If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term.  If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+  If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+  Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+  8. Termination.
+
+  You may not propagate or modify a covered work except as expressly
+provided under this License.  Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+  However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+  Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+  Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License.  If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+  9. Acceptance Not Required for Having Copies.
+
+  You are not required to accept this License in order to receive or
+run a copy of the Program.  Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance.  However,
+nothing other than this License grants you permission to propagate or
+modify any covered work.  These actions infringe copyright if you do
+not accept this License.  Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+  10. Automatic Licensing of Downstream Recipients.
+
+  Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License.  You are not responsible
+for enforcing compliance by third parties with this License.
+
+  An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations.  If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+  You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License.  For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+  11. Patents.
+
+  A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based.  The
+work thus licensed is called the contributor's "contributor version".
+
+  A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version.  For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+  Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+  In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement).  To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+  If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients.  "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+  If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+  A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License.  You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+  Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+  12. No Surrender of Others' Freedom.
+
+  If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all.  For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+  13. Use with the GNU Affero General Public License.
+
+  Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work.  The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+  14. Revised Versions of this License.
+
+  The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+  Each version is given a distinguishing version number.  If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation.  If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+  If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+  Later license versions may give you additional or different
+permissions.  However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+  15. Disclaimer of Warranty.
+
+  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+  16. Limitation of Liability.
+
+  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+  17. Interpretation of Sections 15 and 16.
+
+  If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+                     END OF TERMS AND CONDITIONS
+
+            How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+Also add information on how to contact you by electronic and paper mail.
+
+  If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+    <program>  Copyright (C) <year>  <name of author>
+    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License.  Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+  You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+<https://www.gnu.org/licenses/>.
+
+  The GNU General Public License does not permit incorporating your program
+into proprietary programs.  If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library.  If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.  But first, please read
+<https://www.gnu.org/licenses/why-not-lgpl.html>.
diff --git a/README.md b/README.md
index e4fe8d8..d50b5c8 100644
--- a/README.md
+++ b/README.md
@@ -1,92 +1 @@
-# org.benoitharrault.midisynth
-
-
-
-## Getting started
-
-To make it easy for you to get started with GitLab, here's a list of recommended next steps.
-
-Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
-
-## Add your files
-
-- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
-- [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:
-
-```
-cd existing_repo
-git remote add origin https://git.harrault.fr/android/org.benoitharrault.midisynth.git
-git branch -M master
-git push -uf origin master
-```
-
-## Integrate with your tools
-
-- [ ] [Set up project integrations](https://git.harrault.fr/android/org.benoitharrault.midisynth/-/settings/integrations)
-
-## Collaborate with your team
-
-- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
-- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
-- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
-- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
-- [ ] [Automatically merge when pipeline succeeds](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html)
-
-## Test and Deploy
-
-Use the built-in continuous integration in GitLab.
-
-- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html)
-- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
-- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
-- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
-- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
-
-***
-
-# Editing this README
-
-When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template.
-
-## Suggestions for a good README
-Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
-
-## Name
-Choose a self-explaining name for your project.
-
-## Description
-Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
-
-## Badges
-On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
-
-## Visuals
-Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
-
-## Installation
-Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
-
-## Usage
-Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
-
-## Support
-Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
-
-## Roadmap
-If you have ideas for releases in the future, it is a good idea to list them in the README.
-
-## Contributing
-State if you are open to contributions and what your requirements are for accepting them.
-
-For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
-
-You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
-
-## Authors and acknowledgment
-Show your appreciation to those who have contributed to the project.
-
-## License
-For open source projects, say how it is licensed.
-
-## Project status
-If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
+# MIDI synth
diff --git a/android/.gitignore b/android/.gitignore
new file mode 100644
index 0000000..0a741cb
--- /dev/null
+++ b/android/.gitignore
@@ -0,0 +1,11 @@
+gradle-wrapper.jar
+/.gradle
+/captures/
+/gradlew
+/gradlew.bat
+/local.properties
+GeneratedPluginRegistrant.java
+
+# Remember to never publicly share your keystore.
+# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
+key.properties
diff --git a/android/app/build.gradle b/android/app/build.gradle
new file mode 100644
index 0000000..340da46
--- /dev/null
+++ b/android/app/build.gradle
@@ -0,0 +1,70 @@
+def localProperties = new Properties()
+def localPropertiesFile = rootProject.file('local.properties')
+if (localPropertiesFile.exists()) {
+    localPropertiesFile.withReader('UTF-8') { reader ->
+        localProperties.load(reader)
+    }
+}
+
+def gradleProperties = new Properties()
+def gradlePropertiesFile = rootProject.file('gradle.properties')
+if (gradlePropertiesFile.exists()) {
+    gradlePropertiesFile.withReader('UTF-8') { reader ->
+        gradleProperties.load(reader)
+    }
+}
+
+def flutterRoot = localProperties.getProperty('flutter.sdk')
+if (flutterRoot == null) {
+    throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
+}
+
+def appVersionCode = gradleProperties.getProperty('app.versionCode')
+if (appVersionCode == null) {
+    appVersionCode = '1'
+}
+
+def appVersionName = gradleProperties.getProperty('app.versionName')
+if (appVersionName == null) {
+    appVersionName = '1.0'
+}
+
+apply plugin: 'com.android.application'
+apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
+
+def keystoreProperties = new Properties()
+def keystorePropertiesFile = rootProject.file('key.properties')
+if (keystorePropertiesFile.exists()) {
+    keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
+}
+
+android {
+    compileSdkVersion 31
+
+    defaultConfig {
+        applicationId "org.benoitharrault.midisynth"
+        minSdkVersion 16
+        targetSdkVersion 30
+        versionCode appVersionCode.toInteger()
+        versionName appVersionName
+        archivesBaseName = "$applicationId" + "_" + "$versionCode"
+    }
+
+    signingConfigs {
+        release {
+            keyAlias keystoreProperties['keyAlias']
+            keyPassword keystoreProperties['keyPassword']
+            storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
+            storePassword keystoreProperties['storePassword']
+        }
+    }
+    buildTypes {
+        release {
+            signingConfig signingConfigs.release
+        }
+    }
+}
+
+flutter {
+    source '../..'
+}
diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml
new file mode 100644
index 0000000..d743f3e
--- /dev/null
+++ b/android/app/src/debug/AndroidManifest.xml
@@ -0,0 +1,7 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+    package="org.benoitharrault.midisynth">
+    <!-- Flutter needs it to communicate with the running application
+         to allow setting breakpoints, to provide hot reload, etc.
+    -->
+    <uses-permission android:name="android.permission.INTERNET"/>
+</manifest>
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..b5b2736
--- /dev/null
+++ b/android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,30 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+    package="org.benoitharrault.midisynth">
+   <application
+        android:label="midisynth"
+        android:icon="@mipmap/ic_launcher">
+        <activity
+            android:name=".MainActivity"
+            android:launchMode="singleTop"
+            android:theme="@style/LaunchTheme"
+            android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
+            android:hardwareAccelerated="true"
+            android:windowSoftInputMode="adjustResize">
+            <meta-data
+              android:name="io.flutter.embedding.android.NormalTheme"
+              android:resource="@style/NormalTheme"
+              />
+            <meta-data
+              android:name="io.flutter.embedding.android.SplashScreenDrawable"
+              android:resource="@drawable/launch_background"
+              />
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN"/>
+                <category android:name="android.intent.category.LAUNCHER"/>
+            </intent-filter>
+        </activity>
+        <meta-data
+            android:name="flutterEmbedding"
+            android:value="2" />
+    </application>
+</manifest>
diff --git a/android/app/src/main/java/org/benoitharrault/midisynth/MainActivity.java b/android/app/src/main/java/org/benoitharrault/midisynth/MainActivity.java
new file mode 100644
index 0000000..d8b8ce8
--- /dev/null
+++ b/android/app/src/main/java/org/benoitharrault/midisynth/MainActivity.java
@@ -0,0 +1,6 @@
+package org.benoitharrault.midisynth;
+
+import io.flutter.embedding.android.FlutterActivity;
+
+public class MainActivity extends FlutterActivity {
+}
diff --git a/android/app/src/main/res/drawable-v21/launch_background.xml b/android/app/src/main/res/drawable-v21/launch_background.xml
new file mode 100644
index 0000000..428eb36
--- /dev/null
+++ b/android/app/src/main/res/drawable-v21/launch_background.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
+    <item android:drawable="?android:colorBackground" />
+
+    <item>
+        <bitmap
+            android:gravity="center"
+            android:src="@mipmap/launch_image" />
+    </item>
+</layer-list>
diff --git a/android/app/src/main/res/drawable/launch_background.xml b/android/app/src/main/res/drawable/launch_background.xml
new file mode 100644
index 0000000..e4551e9
--- /dev/null
+++ b/android/app/src/main/res/drawable/launch_background.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
+    <item android:drawable="@android:color/white" />
+
+    <item>
+        <bitmap
+            android:gravity="center"
+            android:src="@mipmap/launch_image" />
+    </item>
+</layer-list>
diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000000000000000000000000000000000000..9ae8f35eaabb43a3d94ade8643006e362d25ba70
GIT binary patch
literal 1647
zcmV-#29WuQP)<h;3K|Lk000e1NJLTq002k;002k`0{{R3VlzW^00009a7bBm001QV
z001QV0knzMUjP6A8FWQhbW?9;ba!ELWdL_~cP?peYja~^aAhuUa%Y?FJQ@H10;5n&
zR7L;){{R30009300Du4hRR930004jhK!5-<W-~KpGc%bhD}W><Z6qX;ARvGo9B~{R
zjv5+(7Z-FFE_4?zixn$?6eo5RCy5dyfDs~hA|iJpB8VU$fF2%r92|fgD}Wm)c^W2w
z7$kWYBY+kmdKMvt6d!sNAB7(udL12r9VdVsCVLzvgc>7+8X|xhA$u4gfEOQp9wvYt
zBzznrfE*%xhA60wD65Dltf@)4gD0b>NWP~_x~fRNp*6IRCaIq^vxO(8izTP6PQI8a
zuY)J1l_##MO}mpOtCT9QktnQ?C#{etu8$|HsZ6|(C#sMqtf)-9fG4GoC#$AQx{W5P
zrA)ehCZnTExuZ+Fe<h@%OSy_CsEQ}5p-Q-YC8dZasE8)1dnTiaCa8KQq=+V`dM2ZJ
zC8LKXsE8-3txUhHPQHsLsgEYBkS42?Cajz%u$?Kfohq@OEV7?1vY#)rpfIzcF|?vI
zwW2k(qcydoH@2iXx1~C_r8~E#Jh-MkxTin4r$D)=LAt3!x~W9Fsztl1M!Ty=ysS&T
ztxLVFOuns6zOPZgu~fjbS;Dhg!?aw(v|PlsUBtCs#I|3=wqeD%W5&2-#<*q2xn{?@
zXvn>9%D{EZz;?~Rcg?|f&B1ui!h6rde9y;*)5wR@$cWR)h}6l7)XIz1%8b>^j@HeQ
z*UppJ&Xm~BmDtah+0mNX)1KVZpWM`-+|{Js*QejvtKiwJ;o7d@+p*%@v*X;f<K496
z-L>T2w&dc!=;FZW=gREo%k1dQ?d;X??bz||+w$+*^77*J^5gaM<n{CA_4DTT^yc>T
z=l1pJ_x0)b_Urie?D+Wb`S|hr`SSYu^ZWYs`~3L*{Q3R;`~Cg={{H;_{{8;{{{R2~
z{{yuARR910Y;;miQvd-00s{jC1O){J1_uWS2?+`d3kwVl4Gs?v4-gR&5)%{^78e&8
z85tTH8yg)SA0QzjBP1nEOifKrPEJmJe}964f`f#FgocKPh=_@aii(Phi;Rtpj*gCx
zkC2d%k&=>=la!Q|ma40(ts0p&u>b%9)k#D_R9M69n9pkyK@`WoGqXvWU#)@~rPT@w
zr536}P-z7(Ui=%p3;s!Z6}*YiV+BD()LKhDDC(gHL9nLQ+BC`T&dhrrvYSAYn%zmU
zJ#-HXvoIgN`+m)v=V6~7@6dxp@~ylVNI-~mDww$sNC>H<OoOpR#62J(W!Cd#Vo?k>
zHq;$b7j$E!nDrD?LXZVn-E6#$NnUK9`;~xGyGrC{A4G=oBKypjHeH<FC|_G9W{yBY
zN)fn)Pms$SO~f%Mmvs%qe90Ff#~_t)j_^WJv8DE}38<`cR+Ohqs0GJ1a#rMdN=ec2
znsNpy>B;@c{wPI<2Fa*k9R9*~1Uev4CbR2<)=r>Xv%53duD)~uO(~#ZN9#i8{}f9t
zDnd;=ffRr*D|esFtX+L~B2#Hq@voC%kg>;KQ~*?NKN=m<Ym?v4)`4&h*>EV(DS7Ef
zp;R7k-3cf?C~~_1Faewfa3-!jg+0Td4`{BsX9tkI2LPa@H%UMjUVX#G>sYMKT*1>O
zN;^PxiXY?VWPJhi=j#hNH=PKS*{Wdz*se8z?cd-HK!a-_*cu2_!)P{*vAMUIqTWw~
zK)kyvV}Luabf9P-L{}XjtfD^la!~YX>z9w!pBt_A^7-d=;MvD@VDUpO70CKcz=X}X
zVb&H18!aFVe1}});Yw{db`mH9z$gJIGos}fqUEt<x%PE#P;Jr6i9ky$gZjYGB(sq*
zM<?wO=s$yK-xP7XPI=M7IxAvJT}5o2LB?9@T>O}fGsq9LrbrR935_eL)$p~6FMe#p
zz!lW2o6vTDO=}izKHF(oBJLQQ-d<MH;kr&{h1>V_D2|vORtv{RM!XcdtoAqS?<ty(
zc%86X&6V<bC6dl-7*_j@X3XhEHXGF<twf55Hi2)rXEwqd!uTTj<cFDzF}>3oFa=Vk
tm_#v{nEHWOP})HhxNjL@@F6H{e*tR&QqN+c)Xe|@002ovPDHLkV1n#J6U+br

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/mipmap-hdpi/launch_image.png b/android/app/src/main/res/mipmap-hdpi/launch_image.png
new file mode 100644
index 0000000000000000000000000000000000000000..9ae8f35eaabb43a3d94ade8643006e362d25ba70
GIT binary patch
literal 1647
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

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000000000000000000000000000000000000..33fdd7664a3ff97b07645ad96cbafe59b9e7e0a6
GIT binary patch
literal 1051
zcmV+$1mydPP)<h;3K|Lk000e1NJLTq001xm001xu0{{R3VB86{00009a7bBm000=K
z000=K0h@W>SpWb48FWQhbW?9;ba!ELWdL_~cP?peYja~^aAhuUa%Y?FJQ@H10i;k&
zR7L;){{R30009300Du4hRR930004jhK!5-<W-~LHD=UB`ByA)lk{}>}92{{R9F7_q
zfEO-{6)S)gCw3AffFdGyA|i+&Ab=hocpe^y92|fgD}Wm)c^4yq79oWdAb=kqdK@Nu
z8zg`lBYPMifEOo&9VC1mB!e6yfEyx!8X<g#DW`)asHsZ3tV+I<Cas|}w4yV#lP0T+
zCa8=is;EM_n<ucGC$OC<v5Y3FoF}lIDzTm{vY;=spfIzdG_|5NwWBq)qc*mqH@2lZ
zx28O}raic(KDenvx~oULt4O@8NxZUF!LnDvvsl8jTEn$o#I|3=wqV7!Va2*>$h&ID
zz;(>Rdd|Xo&%=Dr#C_1jf6&E%(Zzw$#)8qugwn@_(#M9=$%)j-iqz4Y+S#n(+OFZ+
zuj1RU;@q<1-L&N0wdCHm<leXC;JW7Fzvtq==;FZW<izRa#p>n8>gUSq=*{iu&h6>X
z?dj0&>d@}$(eCTg@9fp^?%46}+Vbz*^6=mD_U!og?fCfb`S|hr`SSYu^ZWbu{Qdj=
z{{8;{|Nocfq<;Va06BD0PE!B@0RjU91Ox>I1_uWS2?+`d3=Iws4-gR%5)u;@7Z@2E
z933DbBO@dxCs9&UQ{v;}<mKh%{r&xY-uf~C00FZ}L_t(YiS5?cQo=wKfMG(w2#5_(
z6npQzt`+RPcM*H9L<9v9L2T!x-2ft%EPLgR{x>I+*$+Y{lSLx=y%=&|SF>`Cn4D!k
zuU95%Q&L4s(Iu;6B1Ki>K-3y5nUBw}MHJO=@0Z1@T4+FvRxJ+*hSN0Dfacs(6)OO#
zLQe;ZGvk9mX`ln8SqUMKK?lmR6aPV|@pC@h`4|P*2e|Ye+U+}D8^AsVH~?5&9<*3&
z^9uk6bijOSwpiA-DS#1o0uh}EXT-q;&%Zpm{NQnW+;{Nketvb`!!3U%3a$|HIq|RV
zLA|IGj*-KU)?r3CO#n9-7z5x4IUdjkOh*CNXb-wE=)l14!{0DP23`l+g{}ZNL|0x6
zCdt4&hbFe#F=$&FMYCo!ve{1ty?FEmhHw-d;=pM#4&nPgVibmOG%O6$wJ2D%@;_u<
zAwL?T{dGY5stkiPI#3dN88e)g4&<lD1%XW6L<5@iiJUaJWy$JjK(&fv-#596`qrp5
zlt=8mQiV3Bpomamo<Yq@K4N5X8ohx~nl2%9{o$RLQz!{3Vr8G!3xtsp`u=Bwx;MEh
Vl7I$tQLF#}002ovPDHLkV1lIg<j4R3

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/mipmap-mdpi/launch_image.png b/android/app/src/main/res/mipmap-mdpi/launch_image.png
new file mode 100644
index 0000000000000000000000000000000000000000..33fdd7664a3ff97b07645ad96cbafe59b9e7e0a6
GIT binary patch
literal 1051
zcmV+$1mydPP)<h;3K|Lk000e1NJLTq001xm001xu0{{R3VB86{00009a7bBm000=K
z000=K0h@W>SpWb48FWQhbW?9;ba!ELWdL_~cP?peYja~^aAhuUa%Y?FJQ@H10i;k&
zR7L;){{R30009300Du4hRR930004jhK!5-<W-~LHD=UB`ByA)lk{}>}92{{R9F7_q
zfEO-{6)S)gCw3AffFdGyA|i+&Ab=hocpe^y92|fgD}Wm)c^4yq79oWdAb=kqdK@Nu
z8zg`lBYPMifEOo&9VC1mB!e6yfEyx!8X<g#DW`)asHsZ3tV+I<Cas|}w4yV#lP0T+
zCa8=is;EM_n<ucGC$OC<v5Y3FoF}lIDzTm{vY;=spfIzdG_|5NwWBq)qc*mqH@2lZ
zx28O}raic(KDenvx~oULt4O@8NxZUF!LnDvvsl8jTEn$o#I|3=wqV7!Va2*>$h&ID
zz;(>Rdd|Xo&%=Dr#C_1jf6&E%(Zzw$#)8qugwn@_(#M9=$%)j-iqz4Y+S#n(+OFZ+
zuj1RU;@q<1-L&N0wdCHm<leXC;JW7Fzvtq==;FZW<izRa#p>n8>gUSq=*{iu&h6>X
z?dj0&>d@}$(eCTg@9fp^?%46}+Vbz*^6=mD_U!og?fCfb`S|hr`SSYu^ZWbu{Qdj=
z{{8;{|Nocfq<;Va06BD0PE!B@0RjU91Ox>I1_uWS2?+`d3=Iws4-gR%5)u;@7Z@2E
z933DbBO@dxCs9&UQ{v;}<mKh%{r&xY-uf~C00FZ}L_t(YiS5?cQo=wKfMG(w2#5_(
z6npQzt`+RPcM*H9L<9v9L2T!x-2ft%EPLgR{x>I+*$+Y{lSLx=y%=&|SF>`Cn4D!k
zuU95%Q&L4s(Iu;6B1Ki>K-3y5nUBw}MHJO=@0Z1@T4+FvRxJ+*hSN0Dfacs(6)OO#
zLQe;ZGvk9mX`ln8SqUMKK?lmR6aPV|@pC@h`4|P*2e|Ye+U+}D8^AsVH~?5&9<*3&
z^9uk6bijOSwpiA-DS#1o0uh}EXT-q;&%Zpm{NQnW+;{Nketvb`!!3U%3a$|HIq|RV
zLA|IGj*-KU)?r3CO#n9-7z5x4IUdjkOh*CNXb-wE=)l14!{0DP23`l+g{}ZNL|0x6
zCdt4&hbFe#F=$&FMYCo!ve{1ty?FEmhHw-d;=pM#4&nPgVibmOG%O6$wJ2D%@;_u<
zAwL?T{dGY5stkiPI#3dN88e)g4&<lD1%XW6L<5@iiJUaJWy$JjK(&fv-#596`qrp5
zlt=8mQiV3Bpomamo<Yq@K4N5X8ohx~nl2%9{o$RLQz!{3Vr8G!3xtsp`u=Bwx;MEh
Vl7I$tQLF#}002ovPDHLkV1lIg<j4R3

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000000000000000000000000000000000000..88bb3cc5294aa2bce16454c37d70750a9e3c1be3
GIT binary patch
literal 1967
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
Bx9b1^

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/mipmap-xhdpi/launch_image.png b/android/app/src/main/res/mipmap-xhdpi/launch_image.png
new file mode 100644
index 0000000000000000000000000000000000000000..88bb3cc5294aa2bce16454c37d70750a9e3c1be3
GIT binary patch
literal 1967
zcmV;g2T=HlP)<h;3K|Lk000e1NJLTq003YB003YJ0{{R3)kcR300009a7bBm001#f
z001#f0XNAX9{>OV8FWQhbW?9;ba!ELWdL_~cP?peYja~^aAhuUa%Y?FJQ@H10@hGW
zR7L;){{R30009300Du4hRR93009C300Du5MfB-XQ05h30GiEb0nJX)RBqVJlB$6N?
zfE*lg92|}s8h{rUbQdmk7cPqxD}WRyb`&Rx5+r~mB!CejcOoKpA|i+&Ab=hocpe^y
z92|fgD}Wmtc^fEs8z_bvCV&_uc^D*y7bAccA$k@eg%u!x6d!sYA9^1tdL12r9VdVs
zCVLwsfEpuv8X|yzE2<eGdwU_J7$ATcD1d+{rxzxG9wvaLQ@kA{d>tf%93y}nB77Sn
zfEpou8X$lfC43kpfQBTbphvi-O}?T_xrQdFh$g6qC8@1YzlSENs!F`7NxQ93z=bEL
zg(s(xC##Ytt)e!yqc*m$PQR{BzOPZhhb5=4P{5ieu$(8bo+`1NCa;GlsEa15j3%m+
zCashwt(GUQoF}lIDY2d`vY#!opDwbWFSDR8v!F1up)s_fGPI#Hw4yY%qcydoHnyWT
zwxl?=q&c^xI=7}ixTrw6s6o1@Lb|C#x~W9Fsztl1M!Ty=ysb>WtxdkJPQI>Bzpqfg
zuTj6SQoylQ!Le4svRA^hSi-bh!?aw(v|PlsUBtCs#I|3=wqV7$WyiT@$GK<6x@gF|
zYstH8$-HdIylu+9aLT@L%f4~Tz<15Veb2;w(8Pbx#evbrg3-r>(#M9=$%xd;jn&SS
z*v^&M&z9NGm)X#m+0dEV(VE)Po7&Qx+tQue(w^JXp4`))+|;1l)S=zfqTSV_-Pfnz
z*Qnpvso>kM;@h#}+_dA}wB+5j<leUA-nZr6xaHru<>0&K<HG6V!|CP4>gC7l=gaKq
z%<SmR?dZ<!>d@}$(eCQf@9Wd=>(uY;)$r`r@a@;|?bz||+41h$@$TF5@7wb4-16_;
z^YGsD@Za<C;Pmm~^z!2L^5gaM<n{CA_4MZU_3HQb>-hNZ`T6qt`t$qx^!xw*|NsC0
z5TCiK0001FbW%=J009940|NsD1O){J1qKHP2nh)a3kwSj4Gj(s4-XFz5fKs+6B82@
z6%`g27Z@2C85$ZJ9337WA0HqfAR;0nBO@dwCMPH<Dk>{0EU&Mzvb40dwe9Zi?(XjH
z@bK~R`}_O+SW0=N000B(Nkl<ZXx{Cb-)kII6vw~k&dly?(zLr34Wg;q(n6@DQmn<I
zpilJ&_~5hl5AeaazVsi+AK<&tA{APEETldNG5&Z7qM%T0Vq)S_7cH$MlbxA+=NupQ
z*UWY|W_Rv_g_);&891N)-h1vj=gwId6MozR@V^5PKsn3_Ao~FbM7aPEh{#X?5h=$}
zdF&@*gk=bTh&<0xO40cCncWC!LRNw2mAsNOHbFQsIzon!0?@mDWx;~q{QS>@mEKnO
z0Q64vx!o-bfZDU0Z`~GYGu+<#`_%_lJU@w#HkEV;Zr8qBW?P3VDOW_dy{QZEJm22&
ztyGL-T6^ub?Ymw{>;dF(90DOpPl4l>ZAPF&5kXu{(pBJiC5!e|MR5{Scaw=6rK~Eb
zu;(}_1pws=L61C+=P3os9yFT(a>$|VNmh0NsuTAom(i$5`URi>6acFL|BN#@xBnPf
z0k|JMIpoc&pCmQ_Cx+R_?1^7(09xhD+E?e#+^S!?cIg_XPrr2i<x{;^b~afzzCZcX
zPP`Fse8`_4uAjE=Mb#rW&MpJM)bq!-CgP@NZ(dvm0Q`0D^@#vZT?qgH*UJ~?Z`lXT
z&x2+bv4}+gxNHGH)9t}N6<PUEdl1OTfRi5_pq6~UGl)K08x`;-F9W#Xp}vON0`S8Q
z;QG73)H&cz1IOoJz6D-$@cSlk{*93Vv+GL$7HX(3;l%~un|na1)&OeffL~Ve-W<Xu
z;FStCmw+dZkGaX*xxZ&F^Qk+%<o6=MK!|kc|G{t%WPN}c8H^qe&{+#gPpkoCUj<@S
zL3$#SP(ax?Y(c>v2<`*BcgqoXertTE67K>*-TxE7-PvF-58#WrZ2;S!zOd1~Q-oKK
zZ2?$Wd8Q8F#@x1*XgdBSeWbdG_L)tf@X84Yjy%l(s&OkJ&jNtg3jftsy>&DOfLaVd
zRhuINR^R@36gjs?27FzA>fkqLY5X?&9;~ky<$D1r00rRj2S`6aESt}M-tQKgw(J|}
zSHM;Y2^&t(?H`CF%-SX(j!hzo^gi#47@GiYhH;c|Z;3>-6WLS{L`|IrK#Z~JMzW)|
z)~O{DNF?EuH9#}qM7JENqks`L#nuOS-fM~xNdq8E_sdnXfe?Q9x9;zw0fO%?>KPl2
zocLj5wc7~Hgo-ac-=CTGOCF8gEY;y&5QJf>r|f3VccMeZMvdFfVc{r_3^N9HV}(Sk
z5ZY5?cEtrOQ5>5XL;A@ALz1{k0pn<30BjPYS%v~c3+p`XA{N6&hPB)wOxjQ$KqCGB
z8gTp51R==*=;oPWDN`VzJV8kgkdy7^&WTqQ{{pK}z0u3Nx%2=4002ovPDHLkV1n2g
Bx9b1^

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000000000000000000000000000000000000..e784e5626218e3e83dddb4954b00f4f9d48d7c53
GIT binary patch
literal 3563
zcmai1c{J2-7yo`|FqXs^l1Ypulr>qieQ7Y0Fv^ytu_SxQ*r~C`6rm*hB+F3Qf3ho5
zmSjtmE!meCBJo;Y{odan?>X-u?;rQMpXWLEJkNQ~=iGZgH;!PW&(4Zw1pt5@kHcO*
z^of6rndxwy)B9d?=vcgQSA78hzwyVwx|^$8hlhM5T}#pxuN$NQ`&&*xKtO<u>rHoG
zM|*E48LwN;87u1O!y5zfSZ&k5uRk(_yir>`?}bDaqX<SKf)yTJI`TD7vx4Qbss@S%
zlw40shgaq8J&*qQsLGXnMxt=wON^uu`mWG`(xbNuhPBsWOc5-po<|)WebXT>`79%@
zmDVTTI}Y^|Ddvx>+(S;iypG>r`4He?pjGNW@vr&4@zuthPX^p=*SL9JxG+!v6NXq}
zh#Sn6fMGX}lk=V_JKg_&6!YT*Pf_e?`NU`>|BPM~g0}Kl*3^V8QC7XP&3Jj>dFqv9
zx?QRI8Hb2Qr~20YaSR`u$??gw`EW7ifVK;&sx7IQ3~8-!)>3Zk)|DS}L6O(_u}tv1
z*CI)>wl%OzdNI929@*nP9x{um$-?SK(k@l*TzPk~TzdIPNb3qKK_)RXtU<)&6Ob1n
z9zfyu@rKJwJ#*eP{(uzVo0Z^~dn*?D#VzYxZ+@yo>vYBGWwtltWopYDTJ4<p+h@_j
z@Islbs+k1!8kYvi7}Xmbuj8*u`64oWqlAjS7{n9|N81yUJ+BEn-RI6|X(~In%zpR<
zdL$xOeRV;K6ng}8*?v+HmF!dRd=pJHu{i&<;^{`(#UzTRXF9<rZ0dKX)o-`U<Hb#S
zqJu)MQ@b6Y!NPA!u+6u3J~Iv-9RBx~nw#%YbW(P`UoDG#u|Rbib8G!2(%pQ68%ch|
zdto{$_hSdU<5sNKT$6ayf<(RpMCS=*id{b?=r%~%XyNX^95yw;Q<-V}gKGj^o0brF
z_Kh<=%hzW6h=tKKQMO;XG1_$QG++H3-TE1`@dq8z?UL&r+d@Hpv!|h8UcvepiCCxL
zkSyoTDW{=@*x|?1t?uKSxi*YqJ-3>Fwm5Po6*hjXT<m+<P15mjAADw={zzDq@<3^1
zJqmKu)8=JabMU&6%0;!b@OMSACS6=R+uQQYh#Yz^ii|KbT7WSV?z`tZUOC5_c%xDd
z3v=eIV?4<#0B2~|+M%iznm*B%0x2Bi{((7hj-E^}7>;Jw`s$)+@`;LTCK7>U^}a%y
zVCPhz5R6+K*?z|I!!O37I6fUNjE-mvDJHEzgVoj8ai>t$RTCSLkInhC9CU$&5DHwc
zVEa7%fpLM%oWwkk#uZ(5-aY4C1QRW62bPB6W^YJI=s$K|=oct&&87zkV}&m{$Lio-
zB+b<ooE07T8bp8qp*#?CiC7?IuL4pYo|dY7ZU2$W1J9?!l*<{)CRiUCt;WHM#5iq6
z?;?bbK1~4H;81>dhX|`)ffZwYhe=|Z8|nl7Wm^TQEE%ya)~^kIY6^WX&+#wAL~kVZ
zHz3g=c3+3P!VcYKl~^#XU1B$Blot=uVu7|(knD6IoM9q{9pl8PNB+)EjZRRo);7QR
zSr~?81PL*ThUCNCLt-cZ5(C5jKitQ{5c?-EZ*xp}DSP<K52EB<_t@E0f-rRZ%;QYI
z?>WwIAFI7|sN(N_W&L(a@+0;Xj-lPyuQZ$M*(NP)h8v{#lhK;n!fv3Oif<&Ks|Fb=
zr`MCFYa>(Je9cnZtmjq(1?qigvUiV@nm3z<>1*uUTeH^E-{XzFI+}^<w+tJCi%lAa
zhNpd-4BnS?^xWH0yJKr}0;Isnl(E|Oj}wD|0?#vj-})Y%mI^5t>}-ZVsmmQG_EHHu
zP#*mLqbp$MV2u7uV|~g~+LM7+2$*J8>KeH<|K6<*oLkfgwV>`=Is-z;CPIMOsPX}A
zH{i?k8Q7;Q;Md*Ci$Q5&G&+23enOM$;OB3DpAlIO5^L|BS6O~pP<rwBo=@%Wu%Rnj
z6w=_NO82brEZx&WP6T;m)Xa{o-n&awlQuS}1CkSLdxqK{*s6!70Gp=d6};oY=3g(@
zCtk^n_OWwjBS`Jhi3lWBfR!_WV`$$v0jp96b2(spKfSOrRxV?g$i|oq9}|Jr5Q$rT
zJW#C4lXWFcTOo`35vx@cHJh0baPkjDR7;R~;6vRi)3~8m(-*G40L3wnqYW9dU#Keg
z4TozO=IIp!4ohR^Nq3iAk~}7f?BdW#W@$!&ulh4NM^V(0jjJ=d7Oj;#l+iQ2T<EO*
z_i-uCrc=8a*($}nLji%;O!L)(OKw#&4fhLs)KAnn-Z`*TJko7>@bhHQ-UZt!>Q6<B
z={c?EH8^rz|KLD;MR`KgzR6w3-Ut0ZR~o|BO58>t=d3Q#8=RWY_fGn@>znT4x&jY;
zLiQ~S(E&4&OT|9*``)-A73S*K;mI&i9!9lNgm@}Ru#M&MZ@|vDQ5azO+$_G{rWEX5
zRRqrC$-=PS?F$wpaJq3q+>~5~Uf23s1*8{)y>U#6P|wgjEFREhrKX_)TLQc)$RQB?
znpMg)-|v$JxRUkAEg&J@h^!#YS?xn&?#(NH4Y;{pf#)TS*uBq{At#`yD{z+>P4dM%
zhwK{9!*P<T@60V>+`52$Tq%N@VFhS7VxVr%x@5;?zIDO5#;oefq68osPK``8dncP?
zQpiR%M4gF%OL*PYJbZ?&^JpE=|74MwpaK;4v-H-Ego6sIa%8KFucYwsib%InufZu9
zfm09?oPTi)8t{WDXsVDuFEZlbM_!=)KvEQ-%S45zZh$0nc21>8KBiucEMU+D*szH&
zv55nsL2A#|b5Ms(=mij_FAkyYFbhNHj3h0Dp-I3cN0UrXljVV?I^*H<H=nzWCd?Hp
zYOy?LqgufZ+l2WY_xjP%QME0a^AwM!?WER9me-?>o*%L*vwRl2Dbm`YXwGW6X9dCY
zUC$kZb-|y%h9({wF!qLP38vmTpEH_2E|*%VYqMv#74|_@_~5O$M%6Wog;5kH61ZHo
zH-zxZLaq91OjQSf1ZwHXRd><EpJ!o*sUT*Cq|%shg{?`cBsS>bpUSI{|CJ!e%n4GM
zA-#AJ$R37URkPWCTV#J!Ik0$XG1MlSk!ma{6IiX}vDc>AlWb{V))HrwV?pw^Z*20B
zT~s3u5{<CSp=F>_`Xsb>5AYMJ5)CBL%LPikOhlk8T5t!x`@!_ar>UD49$GfiG^L0r
z{-K<BeRySkvqVEZ;|Y4@8h3M1_TSa<PnA3rEdPy#p}+V42$}!E#cX7GHhv`N^5mH}
zSylhI4*5F==ALa?!F6feiR{|p>vGUXO&M}Q2+(qmlNt!(j;FZsEQ_&FO*8BSvQ@P*
zfo=i2a;cN|d4-@gptoRl8p$Zq{W$_Drmrmq$UCvLN<XfRMEOSP%gaYK)z(T1u<~It
z8N^%hKDQc}|FptKyW*<8+QI1;aQF&o{G(8fc3x`SQ<#D-Q@g@W%D(xM0sP8xi`)V%
zeIaTX(Vlr~_|gJnTKk>Ek(O8HOPS#XeU&>S9$lzld=m$VDSx%w6Vwu^WPMxbB84tz
z?$92|d`MGNk!0H$OU^L4O3Xp{gGu+_{7nHM!?6e$PFU9XYMkNf+)>Z}1U4Y(m{P;;
zYx3OZj)X4bsZM0hFdeX6BVH&k{F3MZgM=o~QWf2R*wkQP`fVPkS-ZZGFWT$i#Uqjh
zPG=x$3(j)J*)YqNB?E1(@=Yw??Chf&^urOFD`$2XfJ7QgpBDcK7Q%glb$itMNpfT!
zUz-ClQ0x~A3+83frEpsNwSJuV+v;n6DknI75?2BKp{i5TBYv+@7-$h!HC(<zKamhm
z!Y=Cx`jm&+N>jBV7lb~$F%EFOAgWGqA!_-?g=OJl9gMx&=`VPQ{wjsFi|S;ijtZF3
z5S@V`@fdEqpW;yzX1k~J9=)ch&!SC1dQ<p~keb$R#E{SrPbwIQE*s$}1!zCWBxx+o
zN<w=hH!Pm!lH@4O6TSW`i90AkdZ+lD85>&TThx(6Wo#_Ai+`zbe{fP=^vx#;d|vM5
zcv-d2f>ufnt)Chi%)%N+P~niH3N#)P^C(7=^)kLXC~jfl=fgfnd?%-TZ`p+*UTZ|}
z>sA?+P7MB6l&w8+nD1B2nEjpK+O7%JUOn>-O(-O}3SB}o%{bJ-U3>DCatw_rRSH6k
z%8@r^)BT47<ZbFY6guVJWS2=Uv#GU?m(}-=RN(i?#BYKVi?`_X<IIGR*1>vWOg3wA
zW(~`uu0AjA2}Wh{t}~Vrk<-;h{X-Fr_5s7h`d9g5{6F-_qq=&fx6{~iRpI3zyW#n$
z%cI=s{x#a2mTyYRWS8$t^Zl)+Yl5x2P@&3qbwS8#Pu@mU=9rVuvS5pn<tX#4{e}(a
zWv3ZJOo!){VP1d#&A(U?HNwUwS{&+{JhQ#u&K}2@z;kyQ^4BQayvp#WtKTmRIX$sa
zGV?eRB5BwMji8VSnn<i%mi@;z_HQT28R2rgS0<Aj9EYu4P1;jt<zAzh$f4FJ1rkT)
zCT)Sq0va7xUXDNudc&T}>vLliv9~cn(|Ij2ULhfoj#BC|@I0oD6JlOeT6;S$TI3Cj
uBy_SB>vy+hal#vpZF}|4q(d>;6LhjT>pawy@a}L>1Ms>=*b*JPh<^i<TurP1

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/mipmap-xxhdpi/launch_image.png b/android/app/src/main/res/mipmap-xxhdpi/launch_image.png
new file mode 100644
index 0000000000000000000000000000000000000000..e784e5626218e3e83dddb4954b00f4f9d48d7c53
GIT binary patch
literal 3563
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

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 0000000000000000000000000000000000000000..e04f7f59227462afd96780ffe8708a58eb55be41
GIT binary patch
literal 4932
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
Bp925@

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/mipmap-xxxhdpi/launch_image.png b/android/app/src/main/res/mipmap-xxxhdpi/launch_image.png
new file mode 100644
index 0000000000000000000000000000000000000000..e04f7f59227462afd96780ffe8708a58eb55be41
GIT binary patch
literal 4932
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
Bp925@

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/values-night/styles.xml b/android/app/src/main/res/values-night/styles.xml
new file mode 100644
index 0000000..c6e7031
--- /dev/null
+++ b/android/app/src/main/res/values-night/styles.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+    <style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
+        <item name="android:windowBackground">@drawable/launch_background</item>
+    </style>
+    <style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
+        <item name="android:windowBackground">?android:colorBackground</item>
+    </style>
+</resources>
diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml
new file mode 100644
index 0000000..ff81bae
--- /dev/null
+++ b/android/app/src/main/res/values/styles.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+    <style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
+        <item name="android:windowBackground">@drawable/launch_background</item>
+    </style>
+    <style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
+        <item name="android:windowBackground">?android:colorBackground</item>
+    </style>
+</resources>
diff --git a/android/app/src/profile/AndroidManifest.xml b/android/app/src/profile/AndroidManifest.xml
new file mode 100644
index 0000000..d743f3e
--- /dev/null
+++ b/android/app/src/profile/AndroidManifest.xml
@@ -0,0 +1,7 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+    package="org.benoitharrault.midisynth">
+    <!-- Flutter needs it to communicate with the running application
+         to allow setting breakpoints, to provide hot reload, etc.
+    -->
+    <uses-permission android:name="android.permission.INTERNET"/>
+</manifest>
diff --git a/android/build.gradle b/android/build.gradle
new file mode 100644
index 0000000..c9e3db0
--- /dev/null
+++ b/android/build.gradle
@@ -0,0 +1,29 @@
+buildscript {
+    repositories {
+        google()
+        jcenter()
+    }
+
+    dependencies {
+        classpath 'com.android.tools.build:gradle:4.1.0'
+    }
+}
+
+allprojects {
+    repositories {
+        google()
+        jcenter()
+    }
+}
+
+rootProject.buildDir = '../build'
+subprojects {
+    project.buildDir = "${rootProject.buildDir}/${project.name}"
+}
+subprojects {
+    project.evaluationDependsOn(':app')
+}
+
+task clean(type: Delete) {
+    delete rootProject.buildDir
+}
diff --git a/android/gradle.properties b/android/gradle.properties
new file mode 100644
index 0000000..ed6dcb0
--- /dev/null
+++ b/android/gradle.properties
@@ -0,0 +1,5 @@
+org.gradle.jvmargs=-Xmx1536M
+android.useAndroidX=true
+android.enableJetifier=true
+app.versionName=0.0.1
+app.versionCode=4
diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..bc6a58a
--- /dev/null
+++ b/android/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Fri Jun 23 08:50:38 CEST 2017
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
diff --git a/android/settings.gradle b/android/settings.gradle
new file mode 100644
index 0000000..44e62bc
--- /dev/null
+++ b/android/settings.gradle
@@ -0,0 +1,11 @@
+include ':app'
+
+def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
+def properties = new Properties()
+
+assert localPropertiesFile.exists()
+localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }
+
+def flutterSdkPath = properties.getProperty("flutter.sdk")
+assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
+apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"
diff --git a/assets/icons/button_back.png b/assets/icons/button_back.png
new file mode 100644
index 0000000000000000000000000000000000000000..cc48ffb1dbb653d9a996f139dfbe02969724bfa5
GIT binary patch
literal 3771
zcmYLMdpy(s_kV4+HMh)NLUbjJTuQmkWpW8~iA3m=DMCo*Zb>TZB192t$t5w7yUbEy
zl;kokF@$o@{qFnrdHjCg?;o%C>w2z_bKd89?hvd_^7BaY008*SOpR@!xqf?~QP9`6
z*JlSbar>J(T?IhK2pWbkGW{?bI@}e6KNDnk#WRR>K9C4VBofxk@AB0P=lzM;D}fi&
zr*tF%*lB8JY+xV4p3LyFw;z@M<aL#8t=p=q{`hgnCk<~6U;UsXmgybY;ksr?;GlOg
z)<#FpyO&T}^D*1kC;SwXx|gyS?HRx=*e;=Dg7|LVefz{~bycn=wFXsn*{wd(UIYod
z^riJ&rU0E5@}+;2G^#gOH&+KU76Ih5e?RTnz&09rlv$D-oy4jRr?IMM?@hz&cVo4c
zjFc=~at^wEPWgqXETF&H*ZRmUePsEUPZTMr=#8%0yO!D9OWsdPp0p+%dl))s0+t(y
zw}`ii`5Q0iu_=X_4=m=Kx|=!$-<OQ)!=&y{*YJ2JO(^6lp3Ul;@~$4`_vVS>2h$D2
zLe2esUe=1Q{6)JD1ccVIQsH+8_*#E&j<%b02(X6qxt2vcxW@C>-o3cj+n|-vlEX-c
zM-<R{*W-NGnki_#1S+~*I#k?+IKrxx!(o<el87r;?{YPuY(J@KcK>O8m(W0TP`nQu
zMnCkmmIQiAp!j}~L)TGby7o>c-9_9n2>)Ymt={B{b!*(iGmvUGT3#y`7JoX|ze;K6
zuKzyN;~ZA!)jBS5FyW9(@MI0|<)%TYHb=m}hGrz~X{wXzUpshw=jqI0HEFGXU@pkA
z9iIj2?!n;1pqM+mo1NU(eT?Drr_)|2S^Ivh(8bxDsXA3ta5kmij4bOM$Oz@*lNWSm
z{-G6Zh0U`av)->}Obo#r;PDZngRbL0@%(oxgmC>EjDUS8Wb!G}siJ`8lsi}I=2U#|
zn*2q^Z;3p9d*|uPg{^l6<jlK?LVV~vSmS2tOP?!05<q14R3m#Nr{{>&GZcFym%YlC
zrppM`pJNw)*6@>#<LZ2)72JO|Fh%17A2(<D?SvMJ%YH#J*(p<fKUw#Wy=EM|GgeoD
z?oA-qX!kRH7zA?KZ}wxNr`s(xn2cBY!{46><X7=Ctsdg38@IStYr-<$THX6dAXhJ<
zbOldFo?Fa^Z7lefDnIarNUNhxG!rw4`t^|v$@bab(W)ZP4xbruT9gB1fB`tbhr|IO
z3!pWC@&*9_8~_+}2VMR5*yCj6j3NfW^KM*SB?g@mHwZ5qNXBU08`O{!kzVHeh>H8V
z^RtF|$CqrCAl`g71_>h@X3oSp{>j!$4ED+if3Ih2tD&y*9tUKdnU&y>cjl1j`oIT&
zk8v@=J_HD)9t;tcMyIKdaopNYvYp}|0l56_6GdNTxYMlPq!HTR>o<)W2x5S#@M4hO
zb4qqdQB%D1x<NTI?xD@~ehCBc#4g*}P#al0Iya!Y^al<j@6S_J%GG6$MhdMDWWo6v
zG(*5?jJbT9y21Xg$G_>%TxgL4Gj@zF<r#Cvuu)x<AOh53D^<P)TRwKXp^tX9zX9qG
zC6A?kvziPtxc+k?>1L3(5l@$la?Y19-s3gld5vtdLeVmN$w;!^dV@C_z_K0u9SPM(
zT?jM6pW2?!Wkr}duF}4Oc3*|4=sh11Hw^)r<Az1hsHY}%+QeepQTh(zCXJ4M3p&Ho
zBI^U4G734r3(|*V!Hhx~<8oz8i-W%rLU%zwz3L8|?)?jLn8%kM1Po)^FXkea7jhj*
znjTWjA29x&cSHZS0-Xmg`?&5oq2h5OvWPRaZi6^|Q7Tu_5rw#w)!xstKElSJLG2D_
zQ=#gZ8s7=N!^<a6R7qoPV)UODlB{omdTrzq?yHLd<0A6dMJJ{2%F@&wd*C=g6YceB
z<0-0-*}aJ^V`+pcFGF!)TFTix8ZSv#S_+$y0|?9&O35bCT<DB{(xJB8*<U{GJX7@m
zK?Z6)RHZP6v;+!T_pR|mTnfaiI6He0kh_dkDh=LO$nOd9R4#Mq4prIa8<NYhO0t3o
zVB12d9KE-=w=v;F_t=430E7F=Q*@D1qJ^xWv4(4M^&p<M3Y8HR@)WTMh@XiY<Sy~v
z@>gM7sBOhRin~Ck9~3Ivn57)Z_p;d>o^y<QTLxO9S5|tWk>b#s)BnCP;nDte`ff~1
z)Qukj%}N^_BY;+|<?!fwcu!9|*mN}WtRNtU<c`&kRFU4Xc`58EA*IS~ZO4yQ{$2W<
z7{#~=Fz#AzyQr74>g|$m@%UZNt-T=t>)c27=EWii6<}g8&gCa1(?Tj1vDMIj6?u$i
z>%_PPm||qnUgIM>pCn#|Sd0lj<Ab!yvjHM5=x63IW97<Eo(quZCTCC{lP>%=p&S)Q
zg-p4|?cZLUW~-^b-_D=7D*`QR4eOzm#7fE4UFhwK84oI0$`^qBQUKwTD+F!cZI*WA
z3)MGY@N5l)rstOyAtBMTqV<=~G(_Vag$+e(?(bd3;5Ok>JHxIoCDAz<8rwqMz~WTf
zl5t$80!4SpS#BMJTZAY7N&OqO%93g_nvo-`A+&NRoXB2I-r`@rJPcYk5~epCYTm%`
z+Kq`oKa+wjM=fQQYM{0a6_mY^3#u*;Lcv0~4|cr08p55h@!oS~i-3eYYfutW1S_WD
zY{+ute-QFtRYo>6e-Bd*Mj&}$$#UQaO0dBWl>g<YxMOffoaMfi4Xg)8kG*dSoDwQG
z!~r6j@XC$3by7v&RsM@~&35Qq=d;wh!fhKRX_jO6s7H_o_Dcm<Cg<IG%SB<<{uugM
zU6ygmnA^y?+r-cSBos&$gR$7aP9f7lKiBP`k^g90ogv*w#R0lhlp=EyYg=0<0>z74
z*3LuuyssfEIFSu6<jmjhmccve%R(gUL5)|c>xHR1C?!9h&rtbb$>9cZ@)fn#nY4-R
zT_pY+M>8+N`cdU`dHp)uC-`0PyrD#$;GEwq{Be7K8^6LlyZdMi?i?$-8$lCtO}^$x
z32Y&*Pynnm)F$|*!SZSIA5%6sn>aA`PGK{hs^o(|?o}+m<n}NNBKrw<aZbKjD4(l4
ztJWo>kdlh{H=E>HOrz~wD;kA6CaagtAttr%wa0xOedwI+200c{dCkU^u~yM^OpzHn
z9{jLlBq0Y45#IF}Ux0plL@^>nyDTy+4N-SQRmI-@j{o)$Kz`8cMA8i#WA@5h#TK%<
z17B?6p<3b|gbyvdg#X?>(Fj>AOXd`^B+n}{mE0i@LQHR;P9||HGm~6rA|WF%xQTvw
zUS(#!fJ#o<#-Yf4Fa#MSVwpr&?Dpdj3I!G5kSx#^`Jh@-sZS6F38n4%ljqjFmRag7
zHasO0ur0Da7w@EQlz_e?JZiJ@W#6Faw!#tTlIflF{So*lzVGzTZfg=jnGN`9$QF}0
zobj(_Pbq;H-$8)~LT$ay7=$DJ-gz2)jt;K~QDjO@Abf+*${>KAB2&STG8<cEpAzzT
zb!`>N>wY+|Ziv1Esx1|+rJ}^40Yd}$(>rS-aM|R|=dRh*+O7PGrohF$(=*yNVLIac
zh9I`R4e#`{kagVRLQ_|VHg$&7T}D`a(Q<OW0xCYA<4fe?7rid>PVJabrF~(Kq@(B+
z4JJ@Je!IW6b##!<4I@v)&vKesJB(Nz4{t|zJa>xDeXv<Ma=(8Ws-zjz*TQvFB@}-3
z00u1A$lqGABwM(gybkJVE<(@cAB<)DSmup(pyA-7&$|($xPvYM>ajqcxo;%d52|+G
zl$oI}Hdg3)D;rO7!J~)${V=%e_!VA3hh*A!Pex>QamH&)3~2JkAHS5znJMMP_i(e#
zGlUTYtqF&xKhvJP;L&%!Q|EE!#qSjyc;s(Izq=FldEmtRQc}pEzQuQgIo(`N{&_40
zce7K1nisp~(KKp4w-uxk=J15FV3B7|H@sF#2DmO9gg0dW4~(FJ?EjDm4hf%UReUbj
zDMuQ?Ud3#Km}m5YQM2*RGknNAo^j!TPL|h}1rXHzc2vFj=5wIgz8FzLY1wQzMLv=-
zu6G%NN&f<;krLWPIHE_$`t${PoMlhqY{8jDUHH6b%BVZEpZ9c#II^EynjMwy)q8>u
zl?U(G7;ieqmeAdg%PLztHaQpkLsjZoJiJ!6Ys8PV?rjQ8tWC_gAsk1(&|j6v=oR4R
zU<<eE*Ev5VFa(Vev-I2H!_iwPm{!owJyOU1F~zm_Z+^(A{6PHauMUIv;`z;%ML>Mi
zs(9A{zP5EuxIcoO#9Mq2B(F@-b1TzYDi?#{5b{5p;+)mjcjG$jK)a;S6;f(?ifh)=
zZiIWK6>GAw07GakX!~&QS1YZh)~Wl-VGu4FDD_I`a`loWAEqh1ozhaQUNFm-`e*vD
zpe(sndPr*5fi6oD{k{P_RBhy12?V<nUd~;29$xQ;7wZvNt5?@DsdJVW`s-D%Ph_qy
z&JWJ{B`sX6Xj%3}&bUveeGShmY1KK;h2r&?`!e11N{du;XsZdiELm9k>}boX@l!4?
zRO04KR+4kZ7o7`7$KUL0UNl86hjqB%=M>9h?ZjJ${(6D^i=Cr=1Rt{%&B)=Lt_Zcy
z7UTj62)l<@AC2yF4|CUz6IkCJF?GIofp&qvsN-6`kG4R+&I1#&!KV|}tOGrE6lUT1
zzg8kdj(X+mGQHHVm#tL}lf*TP3;CDs9&I#4Nc<|=%xST%;u#BGiU=IB-)@;AZA=bn
zdr^r@Pc{Ad`?<;B|GTVI@#)Fm_nS3O=;<XjmUQ>`E;wSt`^D1Sjvy*Cr~OZjRrKUk
z6(~O}iXSN}iWsT^GjT0DTQDs`srfr-o)(?8VNlQM(Xa(8Oc1MMP0eq&slW_xWn5(F
G9`hgE`n)3m

literal 0
HcmV?d00001

diff --git a/assets/icons/button_start.png b/assets/icons/button_start.png
new file mode 100644
index 0000000000000000000000000000000000000000..6845e2f5c21598ab61f1684d2075aeec0334bf23
GIT binary patch
literal 3999
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
Lv6WG|0fqi=I{^Hh

literal 0
HcmV?d00001

diff --git a/assets/icons/placeholder.png b/assets/icons/placeholder.png
new file mode 100644
index 0000000000000000000000000000000000000000..814df31be6ddc4275ebe4490c79365578dbef1f0
GIT binary patch
literal 170
zcmeAS@N?(olHy`uVBq!ia0vp^2SAvS8AxUb{c{0QoCO|{#S9G6r$CrdZsi1VprB-l
zYeY$Kep*R+Vo@qXd3m{BW?pu2a$-TMUVc&f>~}U&Kt;>}J|V9E|NmcpMEV4f%UBZR
z7tG-B>_!@pBkk$p7$PD0_MjmnkatMo_wqPi{sbVCp+HCI00Uz?`^9%4o~Nsy%Q~lo
FCIGwBFRTCn

literal 0
HcmV?d00001

diff --git a/fastlane/metadata/android/en-US/changelogs/1.txt b/fastlane/metadata/android/en-US/changelogs/1.txt
new file mode 100644
index 0000000..8e65583
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/1.txt
@@ -0,0 +1 @@
+Init empty application
\ No newline at end of file
diff --git a/fastlane/metadata/android/en-US/full_description.txt b/fastlane/metadata/android/en-US/full_description.txt
new file mode 100644
index 0000000..7f4726f
--- /dev/null
+++ b/fastlane/metadata/android/en-US/full_description.txt
@@ -0,0 +1,3 @@
+MIDI Synth.
+
+Play music with external MIDI master keyboard.
\ No newline at end of file
diff --git a/fastlane/metadata/android/en-US/images/featureGraphic.png b/fastlane/metadata/android/en-US/images/featureGraphic.png
new file mode 100644
index 0000000000000000000000000000000000000000..d94cd4c48e61c0b2a131b828585ef141878cbe03
GIT binary patch
literal 214
zcmeAS@N?(olHy`uVBq!ia0y~yU;#22zc4ZbshKa%W&kP90*}aI1_r*vAk26?e?<yV
zP_o1|q9iy!t)x7$D3zhSyj(9cFS|H7u^?41zbJk7I~ysWBIW>}5ZCE7|39wtx&h>d
wc)B=-NJzdt$jAufH7)qJzRcqQkVOI5A^!Ud17oR-Ml{F}Pgg&ebxsLQ0EdGumH+?%

literal 0
HcmV?d00001

diff --git a/fastlane/metadata/android/en-US/images/icon.png b/fastlane/metadata/android/en-US/images/icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..1127d426fbe51df9b20cb4a69e6905907574bf9b
GIT binary patch
literal 17070
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

literal 0
HcmV?d00001

diff --git a/fastlane/metadata/android/en-US/short_description.txt b/fastlane/metadata/android/en-US/short_description.txt
new file mode 100644
index 0000000..bb1b073
--- /dev/null
+++ b/fastlane/metadata/android/en-US/short_description.txt
@@ -0,0 +1 @@
+MIDI Synth
\ No newline at end of file
diff --git a/fastlane/metadata/android/en-US/title.txt b/fastlane/metadata/android/en-US/title.txt
new file mode 100644
index 0000000..bb1b073
--- /dev/null
+++ b/fastlane/metadata/android/en-US/title.txt
@@ -0,0 +1 @@
+MIDI Synth
\ No newline at end of file
diff --git a/fastlane/metadata/android/fr-FR/changelogs/1.txt b/fastlane/metadata/android/fr-FR/changelogs/1.txt
new file mode 100644
index 0000000..966e32b
--- /dev/null
+++ b/fastlane/metadata/android/fr-FR/changelogs/1.txt
@@ -0,0 +1 @@
+Création de l'application vide
\ No newline at end of file
diff --git a/fastlane/metadata/android/fr-FR/full_description.txt b/fastlane/metadata/android/fr-FR/full_description.txt
new file mode 100644
index 0000000..95c460d
--- /dev/null
+++ b/fastlane/metadata/android/fr-FR/full_description.txt
@@ -0,0 +1,3 @@
+Synthé MIDI.
+
+Jouez de la musique avec un clavier MIDI externe.
diff --git a/fastlane/metadata/android/fr-FR/short_description.txt b/fastlane/metadata/android/fr-FR/short_description.txt
new file mode 100644
index 0000000..93fa4ef
--- /dev/null
+++ b/fastlane/metadata/android/fr-FR/short_description.txt
@@ -0,0 +1 @@
+Synthé MIDI
\ No newline at end of file
diff --git a/fastlane/metadata/android/fr-FR/title.txt b/fastlane/metadata/android/fr-FR/title.txt
new file mode 100644
index 0000000..93fa4ef
--- /dev/null
+++ b/fastlane/metadata/android/fr-FR/title.txt
@@ -0,0 +1 @@
+Synthé MIDI
\ No newline at end of file
diff --git a/fdroid_metadata.yml b/fdroid_metadata.yml
new file mode 100644
index 0000000..072a098
--- /dev/null
+++ b/fdroid_metadata.yml
@@ -0,0 +1,20 @@
+AuthorName:   'Benoît Harrault'
+Categories:
+  - Games
+  - Music
+Name:         MIDI Synth
+AutoName:     MidiSynth
+License:      GPL-3.0-only
+WebSite:      'https://git.harrault.fr/android/org.benoitharrault.midisynth'
+SourceCode:   https://git.harrault.fr/android/org.benoitharrault.midisynth
+IssueTracker: https://git.harrault.fr/android/org.benoitharrault.midisynth/issues
+Changelog:    https://git.harrault.fr/android/org.benoitharrault.midisynth/-/tags
+Summary:      MIDI Synth
+
+Description:  |-
+    MIDI Synth.
+
+    Play music with external MIDI master keyboard.
+
+RepoType:     git
+Repo:         'https://git.harrault.fr/android/org.benoitharrault.midisynth.git'
diff --git a/icons/build_application_icons.sh b/icons/build_application_icons.sh
new file mode 100755
index 0000000..2ae9291
--- /dev/null
+++ b/icons/build_application_icons.sh
@@ -0,0 +1,82 @@
+#! /bin/bash
+
+# Check dependencies
+command -v inkscape >/dev/null 2>&1 || { echo >&2 "I require inkscape but it's not installed. Aborting."; exit 1; }
+command -v scour >/dev/null 2>&1 || { echo >&2 "I require scour but it's not installed. Aborting."; exit 1; }
+command -v optipng >/dev/null 2>&1 || { echo >&2 "I require optipng but it's not installed. Aborting."; exit 1; }
+
+CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
+BASE_DIR="$(dirname "${CURRENT_DIR}")"
+ASSETS_DIR="${BASE_DIR}/assets"
+
+OPTIPNG_OPTIONS="-preserve -quiet -o7"
+ICON_SIZE=192
+
+#######################################################
+
+# Game images
+AVAILABLE_GAME_IMAGES="
+  button_back
+  button_start
+  placeholder
+"
+
+# Settings images
+AVAILABLES_GAME_SETTINGS="
+"
+
+#######################################################
+
+# optimize svg
+function optimize_svg() {
+  SOURCE="$1"
+
+  cp ${SOURCE} ${SOURCE}.tmp
+  scour \
+      --remove-descriptive-elements \
+      --enable-id-stripping \
+      --enable-viewboxing \
+      --enable-comment-stripping \
+      --nindent=4 \
+      --quiet \
+      -i ${SOURCE}.tmp \
+      -o ${SOURCE}
+  rm ${SOURCE}.tmp
+}
+
+# build icons
+function build_icon() {
+  SOURCE="$1"
+  TARGET="$2"
+
+  echo "Building ${TARGET}"
+
+  if [ ! -f "${SOURCE}" ]; then
+    echo "Missing file: ${SOURCE}"
+    exit 1
+  fi
+
+  optimize_svg "${SOURCE}"
+
+  inkscape \
+      --export-width=${ICON_SIZE} \
+      --export-height=${ICON_SIZE} \
+      --export-filename=${TARGET} \
+      ${SOURCE}
+
+  optipng ${OPTIPNG_OPTIONS} ${TARGET}
+}
+
+#######################################################
+
+# Create output folders
+mkdir -p ${ASSETS_DIR}/icons
+
+# Delete existing generated images
+find ${ASSETS_DIR}/icons -type f -name "*.png" -delete
+
+# build game images
+for GAME_IMAGE in ${AVAILABLE_GAME_IMAGES}
+do
+  build_icon ${CURRENT_DIR}/${GAME_IMAGE}.svg ${ASSETS_DIR}/icons/${GAME_IMAGE}.png
+done
diff --git a/icons/build_icons.sh b/icons/build_icons.sh
new file mode 100755
index 0000000..915a16c
--- /dev/null
+++ b/icons/build_icons.sh
@@ -0,0 +1,6 @@
+#! /bin/bash
+
+CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
+
+"${CURRENT_DIR}/build_application_icons.sh"
+"${CURRENT_DIR}/build_repository_icons.sh"
diff --git a/icons/build_repository_icons.sh b/icons/build_repository_icons.sh
new file mode 100755
index 0000000..27dbe26
--- /dev/null
+++ b/icons/build_repository_icons.sh
@@ -0,0 +1,118 @@
+#! /bin/bash
+
+# Check dependencies
+command -v inkscape >/dev/null 2>&1 || { echo >&2 "I require inkscape but it's not installed. Aborting."; exit 1; }
+command -v scour >/dev/null 2>&1 || { echo >&2 "I require scour but it's not installed. Aborting."; exit 1; }
+command -v optipng >/dev/null 2>&1 || { echo >&2 "I require optipng but it's not installed. Aborting."; exit 1; }
+
+CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
+BASE_DIR="$(dirname "${CURRENT_DIR}")"
+
+SOURCE_ICON="${CURRENT_DIR}/icon.svg"
+SOURCE_FASTLANE="${CURRENT_DIR}/featureGraphic.svg"
+SOURCE_LAUNCH_IMAGE="${CURRENT_DIR}/icon.svg"
+
+OPTIPNG_OPTIONS="-preserve -quiet -o7"
+
+if [ ! -f "${SOURCE_ICON}" ]; then
+  echo "Missing file: ${SOURCE_ICON}"
+fi
+
+if [ ! -f "${SOURCE_FASTLANE}" ]; then
+  echo "Missing file: ${SOURCE_FASTLANE}"
+fi
+
+if [ ! -f "${SOURCE_LAUNCH_IMAGE}" ]; then
+  echo "Missing file: ${SOURCE_LAUNCH_IMAGE}"
+fi
+
+function optimize_svg() {
+  SVG="$1"
+
+  cp ${SVG} ${SVG}.tmp
+  scour \
+      --remove-descriptive-elements \
+      --enable-id-stripping \
+      --enable-viewboxing \
+      --enable-comment-stripping \
+      --nindent=4 \
+      --quiet \
+      -i ${SVG}.tmp \
+      -o ${SVG}
+  rm ${SVG}.tmp
+}
+
+# optimize source svg files
+optimize_svg ${SOURCE_ICON}
+optimize_svg ${SOURCE_FASTLANE}
+optimize_svg ${SOURCE_LAUNCH_IMAGE}
+
+# build icons
+function build_application_icon() {
+  ICON_SIZE="$1"
+  TARGET="$2"
+
+  echo "Building ${TARGET}"
+
+  TARGET_PNG="${TARGET}.png"
+
+  inkscape \
+      --export-width=${ICON_SIZE} \
+      --export-height=${ICON_SIZE} \
+      --export-filename=${TARGET_PNG} \
+      ${SOURCE_ICON}
+
+  optipng ${OPTIPNG_OPTIONS} ${TARGET_PNG}
+}
+
+# build fastlane image
+function build_fastlane_image() {
+  WIDTH="$1"
+  HEIGHT="$2"
+  TARGET="$3"
+
+  echo "Building ${TARGET}"
+
+  TARGET_PNG="${TARGET}.png"
+
+  inkscape \
+      --export-width=${WIDTH} \
+      --export-height=${HEIGHT} \
+      --export-filename=${TARGET_PNG} \
+      ${SOURCE_FASTLANE}
+
+  optipng ${OPTIPNG_OPTIONS} ${TARGET_PNG}
+}
+
+# build launch images (splash screen)
+function build_launch_image() {
+  ICON_SIZE="$1"
+  TARGET="$2"
+
+  echo "Building ${TARGET}"
+
+  TARGET_PNG="${TARGET}.png"
+
+  inkscape \
+      --export-width=${ICON_SIZE} \
+      --export-height=${ICON_SIZE} \
+      --export-filename=${TARGET_PNG} \
+      ${SOURCE_LAUNCH_IMAGE}
+
+  optipng ${OPTIPNG_OPTIONS} ${TARGET_PNG}
+}
+
+build_application_icon  72 ${BASE_DIR}/android/app/src/main/res/mipmap-hdpi/ic_launcher
+build_application_icon  48 ${BASE_DIR}/android/app/src/main/res/mipmap-mdpi/ic_launcher
+build_application_icon  96 ${BASE_DIR}/android/app/src/main/res/mipmap-xhdpi/ic_launcher
+build_application_icon 144 ${BASE_DIR}/android/app/src/main/res/mipmap-xxhdpi/ic_launcher
+build_application_icon 192 ${BASE_DIR}/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher
+build_application_icon 512 ${BASE_DIR}/fastlane/metadata/android/en-US/images/icon
+
+build_launch_image  72 ${BASE_DIR}/android/app/src/main/res/mipmap-hdpi/launch_image
+build_launch_image  48 ${BASE_DIR}/android/app/src/main/res/mipmap-mdpi/launch_image
+build_launch_image  96 ${BASE_DIR}/android/app/src/main/res/mipmap-xhdpi/launch_image
+build_launch_image 144 ${BASE_DIR}/android/app/src/main/res/mipmap-xxhdpi/launch_image
+build_launch_image 192 ${BASE_DIR}/android/app/src/main/res/mipmap-xxxhdpi/launch_image
+
+build_fastlane_image 1024 500 ${BASE_DIR}/fastlane/metadata/android/en-US/images/featureGraphic
diff --git a/icons/button_back.svg b/icons/button_back.svg
new file mode 100644
index 0000000..2622a57
--- /dev/null
+++ b/icons/button_back.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 93.665 93.676" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect x=".44662" y=".89101" width="92.772" height="91.894" ry="11.689" fill="#e41578" stroke="#fff" stroke-width=".238"/><path d="m59.387 71.362c1.1248 1.1302 4.0012 1.1302 4.0012 0v-45.921c0-1.1316-2.8832-1.1316-4.0121 0l-37.693 20.918c-1.1289 1.1248-1.1479 2.9551-0.02171 4.084z" fill="#fefeff" stroke="#930e4e" stroke-linecap="round" stroke-linejoin="round" stroke-width="8.257"/><path d="m57.857 68.048c0.96243 0.96706 3.4236 0.96706 3.4236 0v-39.292c0-0.96825-2.467-0.96825-3.4329 0l-32.252 17.898c-0.96594 0.96243-0.9822 2.5285-0.01858 3.4945z" fill="#fefeff" stroke="#feffff" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.314"/></svg>
diff --git a/icons/button_start.svg b/icons/button_start.svg
new file mode 100644
index 0000000..e9d49d2
--- /dev/null
+++ b/icons/button_start.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 93.665 93.676" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect x=".44662" y=".89101" width="92.772" height="91.894" ry="11.689" fill="#49a1ee" stroke="#fff" stroke-width=".238"/><path d="m34.852 25.44c-1.1248-1.1302-4.0012-1.1302-4.0012 0v45.921c0 1.1316 2.8832 1.1316 4.0121 0l37.693-20.918c1.1289-1.1248 1.1479-2.9551 0.02171-4.084z" fill="#fefeff" stroke="#105ca1" stroke-linecap="round" stroke-linejoin="round" stroke-width="8.257"/><path d="m36.382 28.754c-0.96243-0.96706-3.4236-0.96706-3.4236 0v39.292c0 0.96825 2.467 0.96825 3.4329 0l32.252-17.898c0.96594-0.96243 0.9822-2.5285 0.01858-3.4945z" fill="#fefeff" stroke="#feffff" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.314"/></svg>
diff --git a/icons/featureGraphic.svg b/icons/featureGraphic.svg
new file mode 100644
index 0000000..2033f31
--- /dev/null
+++ b/icons/featureGraphic.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 1024 500" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect width="1024" height="500" rx="0" ry="0" fill="#977cff"/></svg>
diff --git a/icons/icon.svg b/icons/icon.svg
new file mode 100644
index 0000000..7b7d4dd
--- /dev/null
+++ b/icons/icon.svg
@@ -0,0 +1,82 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg version="1.1" viewBox="0 0 28.747 28.747" xmlns="http://www.w3.org/2000/svg">
+    <defs>
+        <filter id="filter6206-7" x="-.072" y="-.072" width="1.144" height="1.144" color-interpolation-filters="sRGB">
+            <feGaussianBlur stdDeviation="0.658125"/>
+        </filter>
+    </defs>
+    <g transform="translate(0 -1093.8)">
+        <path transform="matrix(1.0781 0 0 1.0641 -.093733 2.7509)" d="m4.4177 1028.2v1.6051h-1.6052v18.192h1.6052v2.1402h18.192v-2.1402h2.1402v-18.192h-2.1402v-1.6051z" fill="#1a237e" filter="url(#filter6206-7)" opacity=".2"/>
+        <rect x="2.9987" y="1096.8" width="22.749" height="22.749" rx="1.1973" ry="1.1974" fill="#9c27b0"/>
+        <g transform="translate(-22.32 1056.5)">
+            <path d="m0 0h51.2v51.2h-51.2z" fill="none" stroke-width="1.0667"/>
+            <g transform="matrix(.33601 0 0 .33601 1.5296 73.043)">
+                <path d="m0 0h51.2v51.2h-51.2z" fill="none" stroke-width="1.0667"/>
+            </g>
+            <g transform="matrix(.37187 0 0 .37187 38.802 63.239)">
+                <path d="m0 0h51.2v51.2h-51.2z" fill="none" stroke-width="1.0667"/>
+                <g transform="matrix(2.6891 0 0 2.6891 -82.906 -48.45)">
+                    <path d="m0 0h51.2v51.2h-51.2z" fill="none" stroke-width="1.0667"/>
+                </g>
+            </g>
+        </g>
+        <path d="m4.1958 1096.8c-0.66332 0-1.1979 0.5346-1.1979 1.1979v0.3334c0-0.6634 0.53459-1.1979 1.1979-1.1979h20.354c0.66332 0 1.1979 0.5345 1.1979 1.1979v-0.3334c0-0.6633-0.5346-1.1979-1.1979-1.1979z" fill="#fff" opacity=".2"/>
+        <rect x="128" y="546.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="128" y="631.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="128" y="674.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="128" y="589.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="128" y="717.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="213.33" y="546.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="213.33" y="631.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="213.33" y="674.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="213.33" y="589.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="213.33" y="717.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="298.67" y="546.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="298.67" y="631.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="298.67" y="674.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="298.67" y="589.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="298.67" y="717.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="170.67" y="546.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="170.67" y="631.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="170.67" y="674.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="170.67" y="589.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="170.67" y="717.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="256" y="546.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="256" y="631.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="256" y="674.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="256" y="589.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="256" y="717.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="128" y="759.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="213.33" y="759.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="298.67" y="759.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="170.67" y="759.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="256" y="759.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="341.33" y="589.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="341.33" y="631.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="341.33" y="717.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="341.33" y="546.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="341.33" y="674.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="341.33" y="759.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="160" y="578.52" width="192" height="192" fill="none" stroke-width="1.0667"/>
+        <g transform="matrix(.37344 0 0 .37344 4.7333 1097.4)">
+            <path d="m0 0h51.2v51.2h-51.2z" fill="none" stroke-width="1.0667"/>
+        </g>
+        <g transform="matrix(.36471 0 0 .36471 5.1356 1097.4)">
+            <path d="m0 0h51.2v51.2h-51.2z" fill="none" stroke-width="1.0667"/>
+        </g>
+        <g transform="matrix(.41585 0 0 .41585 84.325 1055.9)">
+            <g transform="matrix(.062269 0 0 .062269 -28.238 185.29)">
+                <g transform="matrix(38.618 0 0 38.618 14724 -13542)">
+                    <g transform="matrix(.71436 0 0 .71436 -400.52 188.34)">
+                        <path d="m1293.2-120.67c-181.75 0.2763-511.18 0.13525-699.05 0.13998-2.3216 10.413-3.593 21.251-3.593 32.384v114c207.65 0.73695 494.72 0.38136 706.23 0.3733v-114.37c0-11.18-1.2522-22.07-3.593-32.523zm-458.69 295.56c-78.385-4e-3 -158.85 0.17892-243.95 0.55995v138.63c286.34-0.39317 421.73-0.13827 706.23-0.32664v-137.75c-163.2-0.53005-311.22-1.1113-462.28-1.1199z" opacity="0" stroke-width="1.4932"/>
+                    </g>
+                </g>
+            </g>
+        </g>
+        <path d="m24.549 1119.5c0.66325 0 1.1979-0.5346 1.1979-1.1979v-0.3333c0 0.6632-0.53461 1.1978-1.1979 1.1978h-20.354c-0.66325 0-1.1979-0.5346-1.1979-1.1978v0.3333c0 0.6633 0.53461 1.1979 1.1979 1.1979z" fill="#1a237e" opacity=".2"/>
+    </g>
+    <g transform="matrix(.030895 0 0 .030895 3.56 1.0629)" fill="#fff">
+        <path d="m561.01 391.11h-422.01c-11.246 0-20.406 9.1445-20.406 20.391v128.86c0 11.246 9.1445 20.406 20.406 20.406h422.01c5.9531 0 11.316-2.5664 15.043-6.6445h1.3984v-1.707c2.4844-3.3711 3.9492-7.5508 3.9492-12.051v-128.86c0-11.25-9.1445-20.391-20.391-20.391zm-368.74 154.72h-53.27c-3.0195 0-5.4609-2.457-5.4609-5.4609v-128.87c0-2.0469 1.1289-3.8242 2.7812-4.7539 13.617 0.0156 27.461-0.21094 40.754 0.15625 0.49219 58.039-0.16797 31.211 0.32422 89.261 4.5703 0.53516 10.273-0.16797 14.844 0.35156 0.25391 40.805 0.26953 8.3872 0.0273 49.305zm64.574 0h-62.852c-0.22656-40.922-0.22656-8.5042 0.043-49.305 4.9531-0.53516 11.035 0.18359 15.988-0.35156 0.38281-57.984 0.0547-30.601 0.16797-88.901 0.0859-0.25391 0.25391-0.4375 0.49219-0.53516 10.004 0.11328 20.434-0.23828 30.168 0.18359 0.38281 58.039 0.0547 30.731 0.15625 89.081 4.2344 0.55078 10.895-0.18359 15.664 0.35156 0.60937 40.457 0.33984 8.4652 0.17187 49.465zm63.598 0h-61.75c-0.53516-40.527-0.22656-9.3522-0.0703-49.485 4.5859-0.41016 10.684-0.0547 15-0.18359 0.76172-57.434 0.11328-31.281 0.32422-88.901 0-0.30859 0.12891-0.46484 0.32422-0.53516 15.383 0.11328 31.199-0.23828 46.312 0.18359-0.0977 99.02 0.21484 39.517-0.14062 138.92zm63.953 0h-62.188c-0.25391-99.383-0.25391-39.407 0.0156-138.75 0.11328-0.16797 0.29688-0.26953 0.49219-0.36719 15.227 0.11328 30.875-0.23828 45.832 0.18359 0.38281 57.926 0.0547 30.491 0.16797 88.721 4.5703 0.83203 10.539 0.12891 15.648 0.35156 0.24219 41 0.25781 8.7502 0.0312 49.855zm63.289 0h-61.566c-0.23828-41.09-0.22656-8.8602 0.043-49.855 5.0664-0.11328 10.539 0.23828 15.324-0.18359 0.38281-57.871 0.0547-30.381 0.16797-88.541 0.0977-0.25391 0.25391-0.4375 0.49219-0.53516 9.8359 0.11328 20.109-0.23828 29.676 0.18359 0.49219 58.168-0.16797 31.451 0.32422 89.611 4.8398 0.53516 10.809-0.16797 15.648 0.36719-0.0977 40.344-0.10938 8.1671-0.10938 48.945zm65.051 0h-63.23c-0.52344-40.43-0.22656-8.2662-0.0703-48.945 4.6836-0.53516 10.484 0.16797 15.168-0.36719 0.59375-50.25 0.32422-16.321 0.32422-67.531 0-7.2539-0.12891-15.238 0.16797-21.902 0.11328-0.16797 0.29688-0.26953 0.49219-0.36719 10.273 0.11328 20.984-0.23828 30.988 0.18359 0.38281 57.926 0.0547 31.451 0.15625 89.081 4.2891 0.66406 11.43-0.41016 15.988 0.53516 0.24219 40.816 0.25781 8.3992 0.0156 49.325zm53.734-5.4727c0 3.0195-2.457 5.4609-5.4609 5.4609h-46.539c-0.23828-40.797-0.22656-9.2272 0.043-49.485 4.6289-0.41016 9.9492-0.0547 14.844-0.18359 0.76172-57.434 0.11328-31.281 0.32422-88.901-0.0156-0.30859 0.12891-0.46484 0.32422-0.53516 11.133 0.0859 22.492-0.0859 33.641-0.0156 1.6914 0.92969 2.8359 2.7227 2.8359 4.7969l4e-3 128.86z" fill-rule="evenodd"/>
+        <path d="m241.58 300.89c-11.246 0-20.407 9.1456-20.407 20.392l1e-3 77.093 257.65 2e-3 2e-3 -77.092c0-11.25-9.1442-20.391-20.391-20.391v-4e-3zm37.444 25.037h15.312l10.625 24.968 10.688-24.968h15.281v46.655h-11.375v-34.125l-10.75 25.157h-7.6245l-10.75-25.157v34.125h-11.405zm60.199 0h12.032v46.655h-12.032zm20.326 0h12.687c3.1042 0 5.7192 0.0824 7.8442 0.24902 2.125 0.14584 4.2599 0.44841 6.4058 0.90674 2.1458 0.4375 4.062 1.1151 5.7495 2.0317 1.7083 0.89583 3.2922 2.0521 4.7505 3.4688 4.3125 4.1667 6.4688 9.7079 6.4688 16.625 0 2.5417-0.29118 4.9067-0.87451 7.0942-0.58334 2.1875-1.3646 4.0724-2.3438 5.6558-0.97917 1.5625-2.1468 2.9688-3.501 4.2188-1.3333 1.25-2.7282 2.2599-4.1865 3.0308-1.4375 0.77084-2.9588 1.3958-4.563 1.875-3.5 1-8.75 1.5-15.75 1.5h-12.687zm49.636 0h12.032v46.655h-12.032zm-37.605 9.0938v28.468h4.3125c4.875 0 8.6151-1.2074 11.219-3.624 2.625-2.4167 3.9375-5.9692 3.9375-10.657 0-4.6666-1.3026-8.1979-3.9067-10.594s-6.3542-3.5933-11.25-3.5933z"/>
+    </g>
+</svg>
diff --git a/icons/placeholder.svg b/icons/placeholder.svg
new file mode 100644
index 0000000..23ace81
--- /dev/null
+++ b/icons/placeholder.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 102 102" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"/>
diff --git a/lib/layout/board.dart b/lib/layout/board.dart
new file mode 100644
index 0000000..8b3e251
--- /dev/null
+++ b/lib/layout/board.dart
@@ -0,0 +1,16 @@
+import 'package:flutter/material.dart';
+import 'package:midisynth/provider/data.dart';
+
+class Board {
+  static Container buildGameBoard(Data myProvider, double screenWidth) {
+    return Container(
+      child: Column(
+        mainAxisAlignment: MainAxisAlignment.spaceBetween,
+        crossAxisAlignment: CrossAxisAlignment.center,
+        children: [
+          Text(''),
+        ],
+      ),
+    );
+  }
+}
diff --git a/lib/layout/game.dart b/lib/layout/game.dart
new file mode 100644
index 0000000..3a0990b
--- /dev/null
+++ b/lib/layout/game.dart
@@ -0,0 +1,11 @@
+import 'package:flutter/material.dart';
+import 'package:midisynth/layout/board.dart';
+import 'package:midisynth/provider/data.dart';
+
+class Game {
+  static Container buildGameWidget(Data myProvider, double screenWidth) {
+    return Container(
+      child: Board.buildGameBoard(myProvider, screenWidth),
+    );
+  }
+}
diff --git a/lib/layout/parameters.dart b/lib/layout/parameters.dart
new file mode 100644
index 0000000..002d990
--- /dev/null
+++ b/lib/layout/parameters.dart
@@ -0,0 +1,148 @@
+import 'package:flutter/material.dart';
+import 'package:midisynth/provider/data.dart';
+import 'package:midisynth/utils/game_utils.dart';
+
+class Parameters {
+  static double separatorHeight = 2.0;
+  static double blockMargin = 3.0;
+  static double blockPadding = 2.0;
+  static Color buttonBackgroundColor = Colors.white;
+  static Color buttonBorderColorActive = Colors.blue;
+  static Color buttonBorderColorInactive = Colors.white;
+  static double buttonBorderWidth = 10.0;
+  static double buttonBorderRadius = 8.0;
+  static double buttonPadding = 0.0;
+  static double buttonMargin = 0.0;
+
+  static Container buildParametersSelector(Data myProvider) {
+    List<Widget> lines = [];
+
+    List parameters = myProvider.availableParameters;
+    for (var index = 0; index < parameters.length; index++) {
+      lines.add(buildParameterSelector(myProvider, parameters[index]));
+      lines.add(SizedBox(height: separatorHeight));
+    }
+
+    Widget buttonsBlock = buildStartNewGameButton(myProvider);
+
+    return Container(
+      child: Column(
+        mainAxisAlignment: MainAxisAlignment.start,
+        crossAxisAlignment: CrossAxisAlignment.center,
+        children: [
+          SizedBox(height: separatorHeight),
+          Expanded(
+            child: Column(
+              mainAxisSize: MainAxisSize.min,
+              mainAxisAlignment: MainAxisAlignment.center,
+              children: lines,
+            ),
+          ),
+          SizedBox(height: separatorHeight),
+          Container(
+            child: buttonsBlock,
+          ),
+        ],
+      ),
+    );
+  }
+
+  static Image buildImageWidget(String imageAssetCode) {
+    return Image(
+      image: AssetImage('assets/icons/' + imageAssetCode + '.png'),
+      fit: BoxFit.fill,
+    );
+  }
+
+  static Container buildImageContainerWidget(String imageAssetCode) {
+    return Container(
+      child: buildImageWidget(imageAssetCode),
+    );
+  }
+
+  static Column buildDecorationImageWidget() {
+    return Column(
+      children: [
+        TextButton(
+          child: buildImageContainerWidget('placeholder'),
+          onPressed: () => null,
+        ),
+      ],
+    );
+  }
+
+  static Container buildStartNewGameButton(Data myProvider) {
+    return Container(
+      margin: EdgeInsets.all(blockMargin),
+      padding: EdgeInsets.all(blockPadding),
+      child: Table(
+        defaultColumnWidth: IntrinsicColumnWidth(),
+        children: [
+          TableRow(
+            children: [
+              buildDecorationImageWidget(),
+              Column(
+                children: [
+                  TextButton(
+                    child: buildImageContainerWidget('button_start'),
+                    onPressed: () => GameUtils.startNewGame(myProvider),
+                  ),
+                ],
+              ),
+              buildDecorationImageWidget(),
+            ],
+          ),
+        ],
+      ),
+    );
+  }
+
+  static Widget buildParameterSelector(Data myProvider, String parameterCode) {
+    List availableValues = myProvider.getParameterAvailableValues(parameterCode);
+
+    if (availableValues.length == 1) {
+      return SizedBox(height: 0.0);
+    }
+
+    return Table(
+      defaultColumnWidth: IntrinsicColumnWidth(),
+      children: [
+        TableRow(
+          children: [
+            for (var index = 0; index < availableValues.length; index++)
+              Column(
+                children: [
+                  _buildParameterButton(myProvider, parameterCode, availableValues[index])
+                ],
+              ),
+          ],
+        ),
+      ],
+    );
+  }
+
+  static Widget _buildParameterButton(
+      Data myProvider, String parameterCode, String parameterValue) {
+    String currentValue = myProvider.getParameterValue(parameterCode).toString();
+
+    bool isActive = (parameterValue == currentValue);
+    String imageAsset = parameterCode + '_' + parameterValue;
+
+    return TextButton(
+      child: Container(
+        margin: EdgeInsets.all(buttonMargin),
+        padding: EdgeInsets.all(buttonPadding),
+        decoration: BoxDecoration(
+          color: buttonBackgroundColor,
+          borderRadius: BorderRadius.circular(buttonBorderRadius),
+          border: Border.all(
+            color: isActive ? buttonBorderColorActive : buttonBorderColorInactive,
+            width: buttonBorderWidth,
+          ),
+        ),
+        child: buildImageWidget(imageAsset),
+      ),
+      onPressed: () => myProvider.setParameterValue(parameterCode, parameterValue),
+    );
+  }
+}
diff --git a/lib/main.dart b/lib/main.dart
new file mode 100644
index 0000000..1f5b4b5
--- /dev/null
+++ b/lib/main.dart
@@ -0,0 +1,36 @@
+import 'package:flutter/material.dart';
+import 'package:flutter/services.dart';
+import 'package:midisynth/provider/data.dart';
+import 'package:midisynth/screens/home.dart';
+import 'package:provider/provider.dart';
+import 'package:overlay_support/overlay_support.dart';
+
+void main() {
+  WidgetsFlutterBinding.ensureInitialized();
+  SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp])
+      .then((value) => runApp(MyApp()));
+}
+
+class MyApp extends StatelessWidget {
+  @override
+  Widget build(BuildContext context) {
+    return ChangeNotifierProvider(
+      create: (BuildContext context) => Data(),
+      child: Consumer<Data>(builder: (context, data, child) {
+        return OverlaySupport(
+          child: MaterialApp(
+            debugShowCheckedModeBanner: false,
+            theme: ThemeData(
+              primaryColor: Colors.blue,
+              visualDensity: VisualDensity.adaptivePlatformDensity,
+            ),
+            home: Home(),
+            routes: {
+              Home.id: (context) => Home(),
+            },
+          ),
+        );
+      }),
+    );
+  }
+}
diff --git a/lib/provider/data.dart b/lib/provider/data.dart
new file mode 100644
index 0000000..b4e5434
--- /dev/null
+++ b/lib/provider/data.dart
@@ -0,0 +1,57 @@
+import 'package:flutter/foundation.dart';
+import 'package:shared_preferences/shared_preferences.dart';
+
+class Data extends ChangeNotifier {
+  // Configuration available parameters
+  List _availableParameters = [];
+
+  List get availableParameters => _availableParameters;
+
+  // Application default configuration
+
+  // Application current configuration
+  String getParameterValue(String parameterCode) {
+    switch (parameterCode) {
+    }
+    return '';
+  }
+
+  List getParameterAvailableValues(String parameterCode) {
+    switch (parameterCode) {
+    }
+    return [];
+  }
+
+  void setParameterValue(String parameterCode, String parameterValue) async {
+    switch (parameterCode) {
+    }
+    final prefs = await SharedPreferences.getInstance();
+    prefs.setString(parameterCode, parameterValue);
+  }
+
+  // Game data
+  bool _gameIsRunning = false;
+  bool _gameIsFinished = false;
+
+  bool get isGameRunning => _gameIsRunning;
+  void updateGameIsRunning(bool gameIsRunning) {
+    _gameIsRunning = gameIsRunning;
+    notifyListeners();
+  }
+
+  bool get isGameFinished => _gameIsFinished;
+  void updateGameIsFinished(bool gameIsFinished) {
+    _gameIsFinished = gameIsFinished;
+    notifyListeners();
+  }
+
+  void redraw() {
+    notifyListeners();
+  }
+
+  void resetGame() {
+    _gameIsRunning = false;
+    _gameIsFinished = false;
+    notifyListeners();
+  }
+}
diff --git a/lib/screens/home.dart b/lib/screens/home.dart
new file mode 100644
index 0000000..b892f27
--- /dev/null
+++ b/lib/screens/home.dart
@@ -0,0 +1,62 @@
+import 'package:flutter/material.dart';
+import 'package:midisynth/layout/game.dart';
+import 'package:midisynth/layout/parameters.dart';
+import 'package:midisynth/provider/data.dart';
+import 'package:midisynth/utils/game_utils.dart';
+import 'package:provider/provider.dart';
+import 'package:overlay_support/overlay_support.dart';
+
+class Home extends StatefulWidget {
+  static const String id = 'home';
+
+  @override
+  _HomeState createState() => _HomeState();
+}
+
+class _HomeState extends State<Home> {
+  @override
+  void initState() {
+    super.initState();
+  }
+
+  @override
+  Widget build(BuildContext context) {
+    Data myProvider = Provider.of<Data>(context);
+    double screenWidth = MediaQuery.of(context).size.width;
+
+    List<Widget> menuActions = [];
+
+    if (myProvider.isGameRunning) {
+      menuActions = [
+        TextButton(
+          child: Container(
+            decoration: BoxDecoration(
+              borderRadius: BorderRadius.circular(4),
+              border: Border.all(
+                color: Colors.blue,
+                width: 4,
+              ),
+            ),
+            child: Image(
+              image: AssetImage('assets/icons/button_back.png'),
+              fit: BoxFit.fill,
+            ),
+          ),
+          onPressed: () => toast('Long press to quit game...'),
+          onLongPress: () => GameUtils.quitGame(myProvider),
+        ),
+      ];
+    }
+
+    return Scaffold(
+      appBar: AppBar(
+        actions: menuActions,
+      ),
+      body: SafeArea(
+        child: myProvider.isGameRunning
+            ? Game.buildGameWidget(myProvider, screenWidth)
+            : Parameters.buildParametersSelector(myProvider),
+      ),
+    );
+  }
+}
diff --git a/lib/utils/game_utils.dart b/lib/utils/game_utils.dart
new file mode 100644
index 0000000..f617350
--- /dev/null
+++ b/lib/utils/game_utils.dart
@@ -0,0 +1,14 @@
+import 'package:midisynth/provider/data.dart';
+
+class GameUtils {
+  static Future<void> quitGame(Data myProvider) async {
+    myProvider.updateGameIsRunning(false);
+  }
+
+  static Future<void> startNewGame(Data myProvider) async {
+    print('Starting new game');
+
+    myProvider.resetGame();
+    myProvider.updateGameIsRunning(true);
+  }
+}
diff --git a/pubspec.lock b/pubspec.lock
new file mode 100644
index 0000000..d298465
--- /dev/null
+++ b/pubspec.lock
@@ -0,0 +1,292 @@
+# Generated by pub
+# See https://dart.dev/tools/pub/glossary#lockfile
+packages:
+  async:
+    dependency: transitive
+    description:
+      name: async
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "2.9.0"
+  boolean_selector:
+    dependency: transitive
+    description:
+      name: boolean_selector
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "2.1.0"
+  characters:
+    dependency: transitive
+    description:
+      name: characters
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "1.2.1"
+  clock:
+    dependency: transitive
+    description:
+      name: clock
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "1.1.1"
+  collection:
+    dependency: transitive
+    description:
+      name: collection
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "1.16.0"
+  fake_async:
+    dependency: transitive
+    description:
+      name: fake_async
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "1.3.1"
+  ffi:
+    dependency: transitive
+    description:
+      name: ffi
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "2.0.1"
+  file:
+    dependency: transitive
+    description:
+      name: file
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "6.1.4"
+  flutter:
+    dependency: "direct main"
+    description: flutter
+    source: sdk
+    version: "0.0.0"
+  flutter_test:
+    dependency: "direct dev"
+    description: flutter
+    source: sdk
+    version: "0.0.0"
+  flutter_web_plugins:
+    dependency: transitive
+    description: flutter
+    source: sdk
+    version: "0.0.0"
+  js:
+    dependency: transitive
+    description:
+      name: js
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "0.6.4"
+  matcher:
+    dependency: transitive
+    description:
+      name: matcher
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "0.12.12"
+  material_color_utilities:
+    dependency: transitive
+    description:
+      name: material_color_utilities
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "0.1.5"
+  meta:
+    dependency: transitive
+    description:
+      name: meta
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "1.8.0"
+  nested:
+    dependency: transitive
+    description:
+      name: nested
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "1.0.0"
+  overlay_support:
+    dependency: "direct main"
+    description:
+      name: overlay_support
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "2.1.0"
+  path:
+    dependency: transitive
+    description:
+      name: path
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "1.8.2"
+  path_provider_linux:
+    dependency: transitive
+    description:
+      name: path_provider_linux
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "2.1.8"
+  path_provider_platform_interface:
+    dependency: transitive
+    description:
+      name: path_provider_platform_interface
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "2.0.5"
+  path_provider_windows:
+    dependency: transitive
+    description:
+      name: path_provider_windows
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "2.1.3"
+  platform:
+    dependency: transitive
+    description:
+      name: platform
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "3.1.0"
+  plugin_platform_interface:
+    dependency: transitive
+    description:
+      name: plugin_platform_interface
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "2.1.3"
+  process:
+    dependency: transitive
+    description:
+      name: process
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "4.2.4"
+  provider:
+    dependency: "direct main"
+    description:
+      name: provider
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "6.0.5"
+  shared_preferences:
+    dependency: "direct main"
+    description:
+      name: shared_preferences
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "2.0.17"
+  shared_preferences_android:
+    dependency: transitive
+    description:
+      name: shared_preferences_android
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "2.0.15"
+  shared_preferences_foundation:
+    dependency: transitive
+    description:
+      name: shared_preferences_foundation
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "2.1.3"
+  shared_preferences_linux:
+    dependency: transitive
+    description:
+      name: shared_preferences_linux
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "2.1.3"
+  shared_preferences_platform_interface:
+    dependency: transitive
+    description:
+      name: shared_preferences_platform_interface
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "2.1.0"
+  shared_preferences_web:
+    dependency: transitive
+    description:
+      name: shared_preferences_web
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "2.0.4"
+  shared_preferences_windows:
+    dependency: transitive
+    description:
+      name: shared_preferences_windows
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "2.1.3"
+  sky_engine:
+    dependency: transitive
+    description: flutter
+    source: sdk
+    version: "0.0.99"
+  source_span:
+    dependency: transitive
+    description:
+      name: source_span
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "1.9.0"
+  stack_trace:
+    dependency: transitive
+    description:
+      name: stack_trace
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "1.10.0"
+  stream_channel:
+    dependency: transitive
+    description:
+      name: stream_channel
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "2.1.0"
+  string_scanner:
+    dependency: transitive
+    description:
+      name: string_scanner
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "1.1.1"
+  term_glyph:
+    dependency: transitive
+    description:
+      name: term_glyph
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "1.2.1"
+  test_api:
+    dependency: transitive
+    description:
+      name: test_api
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "0.4.12"
+  vector_math:
+    dependency: transitive
+    description:
+      name: vector_math
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "2.1.2"
+  win32:
+    dependency: transitive
+    description:
+      name: win32
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "3.1.3"
+  xdg_directories:
+    dependency: transitive
+    description:
+      name: xdg_directories
+      url: "https://pub.dartlang.org"
+    source: hosted
+    version: "1.0.0"
+sdks:
+  dart: ">=2.17.0 <3.0.0"
+  flutter: ">=3.0.0"
diff --git a/pubspec.yaml b/pubspec.yaml
new file mode 100644
index 0000000..2a56fd6
--- /dev/null
+++ b/pubspec.yaml
@@ -0,0 +1,23 @@
+name: midisynth
+description: MIDI Synth
+publish_to: 'none'
+version: 1.0.0+1
+
+environment:
+  sdk: ">=2.16.1 <3.0.0"
+
+dependencies:
+  flutter:
+    sdk: flutter
+  provider: ^6.0.2
+  shared_preferences: ^2.0.6
+  overlay_support: ^2.0.1
+
+dev_dependencies:
+  flutter_test:
+    sdk: flutter
+
+flutter:
+  uses-material-design: true
+  assets:
+    - assets/icons/
-- 
GitLab