diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
commit | 54b6cfa9a9e5b861a9930af873580d6dc20f773c (patch) | |
tree | 35051494d2af230dce54d6b31c6af8fc24091316 /data | |
download | frameworks_base-54b6cfa9a9e5b861a9930af873580d6dc20f773c.zip frameworks_base-54b6cfa9a9e5b861a9930af873580d6dc20f773c.tar.gz frameworks_base-54b6cfa9a9e5b861a9930af873580d6dc20f773c.tar.bz2 |
Initial Contribution
Diffstat (limited to 'data')
93 files changed, 681 insertions, 0 deletions
diff --git a/data/etc/Android.mk b/data/etc/Android.mk new file mode 100644 index 0000000..fe4a222 --- /dev/null +++ b/data/etc/Android.mk @@ -0,0 +1,32 @@ +# +# Copyright (C) 2008 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +LOCAL_PATH := $(my-dir) + +######################## +include $(CLEAR_VARS) + +LOCAL_MODULE := permissions.xml + +LOCAL_MODULE_TAGS := user development + +# This will install the file in /system/etc +# +LOCAL_MODULE_CLASS := ETC + +LOCAL_SRC_FILES := $(LOCAL_MODULE) + +include $(BUILD_PREBUILT) diff --git a/data/etc/permissions.xml b/data/etc/permissions.xml new file mode 100644 index 0000000..bdaefff --- /dev/null +++ b/data/etc/permissions.xml @@ -0,0 +1,130 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2008 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- This file is used to define the mappings between lower-level system + user and group IDs and the higher-level permission names managed + by the platform. + + Be VERY careful when editing this file! Mistakes made here can open + big security holes. +--> +<permissions> + + <!-- ================================================================== --> + <!-- ================================================================== --> + <!-- ================================================================== --> + + <!-- The following tags are associating low-level group IDs with + permission names. By specifying such a mapping, you are saying + that any application process granted the given permission will + also be running with the given group ID attached to its process, + so it can perform any filesystem (read, write, execute) operations + allowed for that group. --> + + <permission name="android.permission.BLUETOOTH_ADMIN" > + <group gid="net_bt_admin" /> + </permission> + + <permission name="android.permission.BLUETOOTH" > + <group gid="net_bt" /> + </permission> + + <permission name="android.permission.INTERNET" > + <group gid="inet" /> + </permission> + + <permission name="android.permission.CAMERA" > + <group gid="camera" /> + </permission> + + <permission name="android.permission.READ_LOGS" > + <group gid="log" /> + </permission> + + <!-- The group that /cache belongs to, linked to the permission + set on the applications that can access /cache --> + <permission name="android.permission.ACCESS_CACHE_FILESYSTEM" > + <group gid="cache" /> + </permission> + + <!-- RW permissions to any system resources owned by group 'diag'. + This is for carrier and manufacture diagnostics tools that must be + installable from the framework. Be careful. --> + <permission name="android.permission.DIAGNOSTIC" > + <group gid="input" /> + <group gid="diag" /> + </permission> + + <!-- ================================================================== --> + <!-- ================================================================== --> + <!-- ================================================================== --> + + <!-- The following tags are assigning high-level permissions to specific + user IDs. These are used to allow specific core system users to + perform the given operations with the higher-level framework. For + example, we give a wide variety of permissions to the shell user + since that is the user the adb shell runs under and developers and + others should have a fairly open environment in which to + interact with the system. --> + + <!-- System tool permissions granted to the shell. --> + <assign-permission name="android.permission.GET_TASKS" uid="shell" /> + <assign-permission name="android.permission.CHANGE_CONFIGURATION" uid="shell" /> + <assign-permission name="android.permission.REORDER_TASKS" uid="shell" /> + <assign-permission name="android.permission.SET_ANIMATION_SCALE" uid="shell" /> + <assign-permission name="android.permission.SET_PREFERRED_APPLICATIONS" uid="shell" /> + <assign-permission name="android.permission.WRITE_SETTINGS" uid="shell" /> + <assign-permission name="android.permission.BROADCAST_STICKY" uid="shell" /> + <!-- Development tool permissions granted to the shell. --> + <assign-permission name="android.permission.SET_DEBUG_APP" uid="shell" /> + <assign-permission name="android.permission.SET_PROCESS_LIMIT" uid="shell" /> + <assign-permission name="android.permission.SET_ALWAYS_FINISH" uid="shell" /> + <assign-permission name="android.permission.DUMP" uid="shell" /> + <assign-permission name="android.permission.SIGNAL_PERSISTENT_PROCESSES" uid="shell" /> + <!-- Internal permissions granted to the shell. --> + <assign-permission name="android.permission.FORCE_BACK" uid="shell" /> + <assign-permission name="android.permission.BATTERY_STATS" uid="shell" /> + <assign-permission name="android.permission.INTERNAL_SYSTEM_WINDOW" uid="shell" /> + <assign-permission name="android.permission.INJECT_EVENTS" uid="shell" /> + <assign-permission name="android.permission.SET_ACTIVITY_WATCHER" uid="shell" /> + <assign-permission name="android.permission.READ_INPUT_STATE" uid="shell" /> + <assign-permission name="android.permission.SET_ORIENTATION" uid="shell" /> + <assign-permission name="android.permission.INSTALL_PACKAGES" uid="shell" /> + <assign-permission name="android.permission.CLEAR_APP_USER_DATA" uid="shell" /> + <assign-permission name="android.permission.DELETE_CACHE_FILES" uid="shell" /> + <assign-permission name="android.permission.DELETE_PACKAGES" uid="shell" /> + <assign-permission name="android.permission.ACCESS_SURFACE_FLINGER" uid="shell" /> + <assign-permission name="android.permission.READ_FRAME_BUFFER" uid="shell" /> + <assign-permission name="android.permission.DEVICE_POWER" uid="shell" /> + + <assign-permission name="android.permission.MODIFY_AUDIO_SETTINGS" uid="media" /> + <assign-permission name="android.permission.ACCESS_DRM" uid="media" /> + + <!-- This is a list of all the libraries available for application + code to link against. --> + + <library name="com.google.android.maps" + file="/system/framework/com.google.android.maps.jar" /> + <library name="com.google.android.gtalkservice" + file="/system/framework/com.google.android.gtalkservice.jar" /> + <library name="android.awt" + file="/system/framework/android.awt.jar" /> + <library name="android.test.runner" + file="/system/framework/android.test.runner.jar" /> + <library name="com.android.im.plugin" + file="/system/framework/com.android.im.plugin.jar"/> + +</permissions> diff --git a/data/fonts/Ahem.ttf b/data/fonts/Ahem.ttf Binary files differnew file mode 100644 index 0000000..17e6c60 --- /dev/null +++ b/data/fonts/Ahem.ttf diff --git a/data/fonts/Android.mk b/data/fonts/Android.mk new file mode 100644 index 0000000..299cdd4 --- /dev/null +++ b/data/fonts/Android.mk @@ -0,0 +1,35 @@ +# Copyright (C) 2008 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +copy_from := \ + DroidSans.ttf \ + DroidSans-Bold.ttf \ + DroidSerif-Regular.ttf \ + DroidSerif-Bold.ttf \ + DroidSerif-Italic.ttf \ + DroidSerif-BoldItalic.ttf \ + DroidSansMono.ttf \ + DroidSansFallback.ttf + +copy_to := $(addprefix $(TARGET_OUT)/fonts/,$(copy_from)) + +$(copy_to) : PRIVATE_MODULE := fonts +$(copy_to) : $(TARGET_OUT)/fonts/% : $(LOCAL_PATH)/% | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(copy_to) + diff --git a/data/fonts/DroidSans-Bold.ttf b/data/fonts/DroidSans-Bold.ttf Binary files differnew file mode 100644 index 0000000..fc60df4 --- /dev/null +++ b/data/fonts/DroidSans-Bold.ttf diff --git a/data/fonts/DroidSans.ttf b/data/fonts/DroidSans.ttf Binary files differnew file mode 100644 index 0000000..458ba59 --- /dev/null +++ b/data/fonts/DroidSans.ttf diff --git a/data/fonts/DroidSansFallback.ttf b/data/fonts/DroidSansFallback.ttf Binary files differnew file mode 100755 index 0000000..38b5b1a --- /dev/null +++ b/data/fonts/DroidSansFallback.ttf diff --git a/data/fonts/DroidSansMono.ttf b/data/fonts/DroidSansMono.ttf Binary files differnew file mode 100644 index 0000000..4546611 --- /dev/null +++ b/data/fonts/DroidSansMono.ttf diff --git a/data/fonts/DroidSerif-Bold.ttf b/data/fonts/DroidSerif-Bold.ttf Binary files differnew file mode 100644 index 0000000..b6add0e --- /dev/null +++ b/data/fonts/DroidSerif-Bold.ttf diff --git a/data/fonts/DroidSerif-BoldItalic.ttf b/data/fonts/DroidSerif-BoldItalic.ttf Binary files differnew file mode 100644 index 0000000..921434f --- /dev/null +++ b/data/fonts/DroidSerif-BoldItalic.ttf diff --git a/data/fonts/DroidSerif-Italic.ttf b/data/fonts/DroidSerif-Italic.ttf Binary files differnew file mode 100644 index 0000000..1ef1f75 --- /dev/null +++ b/data/fonts/DroidSerif-Italic.ttf diff --git a/data/fonts/DroidSerif-Regular.ttf b/data/fonts/DroidSerif-Regular.ttf Binary files differnew file mode 100644 index 0000000..239ba38 --- /dev/null +++ b/data/fonts/DroidSerif-Regular.ttf diff --git a/data/fonts/MODULE_LICENSE_APACHE2 b/data/fonts/MODULE_LICENSE_APACHE2 new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/data/fonts/MODULE_LICENSE_APACHE2 diff --git a/data/fonts/NOTICE b/data/fonts/NOTICE new file mode 100644 index 0000000..c5b1efa --- /dev/null +++ b/data/fonts/NOTICE @@ -0,0 +1,190 @@ + + Copyright (c) 2005-2008, The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + diff --git a/data/fonts/README.txt b/data/fonts/README.txt new file mode 100644 index 0000000..1a96dfd --- /dev/null +++ b/data/fonts/README.txt @@ -0,0 +1,18 @@ +Copyright (C) 2008 The Android Open Source Project + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +########## + +This directory contains the fonts for the platform. They are licensed +under the Apache 2 license. diff --git a/data/fonts/fonts.xml b/data/fonts/fonts.xml new file mode 100644 index 0000000..2bce846 --- /dev/null +++ b/data/fonts/fonts.xml @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2008 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<fonts> + <font ttf="DroidSans"> + <name>sans-serif</name> + <name>arial</name> + <name>helvetica</name> + <name>tahoma</name> + <name>verdana</name> + </font> + <font ttf="DroidSerif"> + <name>serif</name> + <name>times</name> + <name>times new roman</name> + <name>palatino</name> + <name>georgia</name> + <name>baskerville</name> + <name>goudy</name> + <name>fantasy</name> + <name>cursive</name> + <name>ITC Stone Serif</name> + </font> + <font ttf="DroidSansMono"> + <name>monospace</name> + <name>courier</name> + <name>courier new</name> + <name>monaco</name> + </font> + <font ttf="DroidSansFallback" /> +</fonts>
\ No newline at end of file diff --git a/data/sounds/Alarm_Beep_01.ogg b/data/sounds/Alarm_Beep_01.ogg Binary files differnew file mode 100644 index 0000000..b7de5af --- /dev/null +++ b/data/sounds/Alarm_Beep_01.ogg diff --git a/data/sounds/Alarm_Beep_02.ogg b/data/sounds/Alarm_Beep_02.ogg Binary files differnew file mode 100644 index 0000000..43ea34e --- /dev/null +++ b/data/sounds/Alarm_Beep_02.ogg diff --git a/data/sounds/Alarm_Beep_03.ogg b/data/sounds/Alarm_Beep_03.ogg Binary files differnew file mode 100644 index 0000000..9d80037 --- /dev/null +++ b/data/sounds/Alarm_Beep_03.ogg diff --git a/data/sounds/Alarm_Buzzer.ogg b/data/sounds/Alarm_Buzzer.ogg Binary files differnew file mode 100644 index 0000000..4234f37 --- /dev/null +++ b/data/sounds/Alarm_Buzzer.ogg diff --git a/data/sounds/Alarm_Classic.ogg b/data/sounds/Alarm_Classic.ogg Binary files differnew file mode 100644 index 0000000..651cdcf --- /dev/null +++ b/data/sounds/Alarm_Classic.ogg diff --git a/data/sounds/Alarm_Rooster_01.ogg b/data/sounds/Alarm_Rooster_01.ogg Binary files differnew file mode 100644 index 0000000..36b57b7 --- /dev/null +++ b/data/sounds/Alarm_Rooster_01.ogg diff --git a/data/sounds/Alarm_Rooster_02.ogg b/data/sounds/Alarm_Rooster_02.ogg Binary files differnew file mode 100644 index 0000000..d20bd1d --- /dev/null +++ b/data/sounds/Alarm_Rooster_02.ogg diff --git a/data/sounds/Android.mk b/data/sounds/Android.mk new file mode 100644 index 0000000..94e7670 --- /dev/null +++ b/data/sounds/Android.mk @@ -0,0 +1,233 @@ +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +# don't understand what's wrong here... bs +# +#copy_from := $(wildcard $(LOCAL_PATH)/*.mp3) +#copy_to := $(addprefix $(TARGET_OUT)/sounds/,$(patsubst $(LOCAL_PATH)/%,%,$(copy_from))) +# +#$(copy_to) : PRIVATE_MODULE := sounds +#$(copy_to) : $(TARGET_OUT)/sounds/% : $(LOCAL_PATH)/% | $(ACP) +# $(transform-prebuilt-to-target) +# +#ALL_PREBUILT += $(copy_to) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/notifications/F1_MissedCall.ogg +$(TARGET_OUT)/media/audio/notifications/F1_MissedCall.ogg : $(LOCAL_PATH)/F1_MissedCall.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/notifications/F1_New_MMS.ogg +$(TARGET_OUT)/media/audio/notifications/F1_New_MMS.ogg : $(LOCAL_PATH)/F1_New_MMS.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/notifications/F1_New_SMS.ogg +$(TARGET_OUT)/media/audio/notifications/F1_New_SMS.ogg : $(LOCAL_PATH)/F1_New_SMS.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/alarms/Alarm_Buzzer.ogg +$(TARGET_OUT)/media/audio/alarms/Alarm_Buzzer.ogg : $(LOCAL_PATH)/Alarm_Buzzer.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/alarms/Alarm_Beep_01.ogg +$(TARGET_OUT)/media/audio/alarms/Alarm_Beep_01.ogg : $(LOCAL_PATH)/Alarm_Beep_01.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/alarms/Alarm_Beep_02.ogg +$(TARGET_OUT)/media/audio/alarms/Alarm_Beep_02.ogg : $(LOCAL_PATH)/Alarm_Beep_02.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/alarms/Alarm_Classic.ogg +$(TARGET_OUT)/media/audio/alarms/Alarm_Classic.ogg : $(LOCAL_PATH)/Alarm_Classic.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/alarms/Alarm_Beep_03.ogg +$(TARGET_OUT)/media/audio/alarms/Alarm_Beep_03.ogg : $(LOCAL_PATH)/Alarm_Beep_03.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/alarms/Alarm_Rooster_02.ogg +$(TARGET_OUT)/media/audio/alarms/Alarm_Rooster_02.ogg : $(LOCAL_PATH)/Alarm_Rooster_02.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/Ring_Classic_02.ogg +$(TARGET_OUT)/media/audio/ringtones/Ring_Classic_02.ogg : $(LOCAL_PATH)/Ring_Classic_02.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/Ring_Digital_02.ogg +$(TARGET_OUT)/media/audio/ringtones/Ring_Digital_02.ogg : $(LOCAL_PATH)/Ring_Digital_02.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/Ring_Synth_04.ogg +$(TARGET_OUT)/media/audio/ringtones/Ring_Synth_04.ogg : $(LOCAL_PATH)/Ring_Synth_04.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/Ring_Synth_02.ogg +$(TARGET_OUT)/media/audio/ringtones/Ring_Synth_02.ogg : $(LOCAL_PATH)/Ring_Synth_02.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/sounds/test.mid +$(TARGET_OUT)/sounds/test.mid : $(LOCAL_PATH)/test.mid | $(ACP) + $(transform-prebuilt-to-target) +# +# --- New Wave Labs ringtones +# +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/BeatPlucker.ogg +$(TARGET_OUT)/media/audio/ringtones/BeatPlucker.ogg : $(LOCAL_PATH)/newwavelabs/BeatPlucker.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/BentleyDubs.ogg +$(TARGET_OUT)/media/audio/ringtones/BentleyDubs.ogg : $(LOCAL_PATH)/newwavelabs/BentleyDubs.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/BirdLoop.ogg +$(TARGET_OUT)/media/audio/ringtones/BirdLoop.ogg : $(LOCAL_PATH)/newwavelabs/BirdLoop.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/CaribbeanIce.ogg +$(TARGET_OUT)/media/audio/ringtones/CaribbeanIce.ogg : $(LOCAL_PATH)/newwavelabs/CaribbeanIce.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/CrazyDream.ogg +$(TARGET_OUT)/media/audio/ringtones/CrazyDream.ogg : $(LOCAL_PATH)/newwavelabs/CrazyDream.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/CurveBall.ogg +$(TARGET_OUT)/media/audio/ringtones/CurveBall.ogg : $(LOCAL_PATH)/newwavelabs/CurveBall.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/DreamTheme.ogg +$(TARGET_OUT)/media/audio/ringtones/DreamTheme.ogg : $(LOCAL_PATH)/newwavelabs/DreamTheme.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/EtherShake.ogg +$(TARGET_OUT)/media/audio/ringtones/EtherShake.ogg : $(LOCAL_PATH)/newwavelabs/EtherShake.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/FriendlyGhost.ogg +$(TARGET_OUT)/media/audio/ringtones/FriendlyGhost.ogg : $(LOCAL_PATH)/newwavelabs/FriendlyGhost.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/GameOverGuitar.ogg +$(TARGET_OUT)/media/audio/ringtones/GameOverGuitar.ogg : $(LOCAL_PATH)/newwavelabs/GameOverGuitar.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/Growl.ogg +$(TARGET_OUT)/media/audio/ringtones/Growl.ogg : $(LOCAL_PATH)/newwavelabs/Growl.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/InsertCoin.ogg +$(TARGET_OUT)/media/audio/ringtones/InsertCoin.ogg : $(LOCAL_PATH)/newwavelabs/InsertCoin.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/LoopyLounge.ogg +$(TARGET_OUT)/media/audio/ringtones/LoopyLounge.ogg : $(LOCAL_PATH)/newwavelabs/LoopyLounge.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/LoveFlute.ogg +$(TARGET_OUT)/media/audio/ringtones/LoveFlute.ogg : $(LOCAL_PATH)/newwavelabs/LoveFlute.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/MidEvilJaunt.ogg +$(TARGET_OUT)/media/audio/ringtones/MidEvilJaunt.ogg : $(LOCAL_PATH)/newwavelabs/MidEvilJaunt.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/MildlyAlarming.ogg +$(TARGET_OUT)/media/audio/ringtones/MildlyAlarming.ogg : $(LOCAL_PATH)/newwavelabs/MildlyAlarming.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/NewPlayer.ogg +$(TARGET_OUT)/media/audio/ringtones/NewPlayer.ogg : $(LOCAL_PATH)/newwavelabs/NewPlayer.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/Noises1.ogg +$(TARGET_OUT)/media/audio/ringtones/Noises1.ogg : $(LOCAL_PATH)/newwavelabs/Noises1.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/Noises2.ogg +$(TARGET_OUT)/media/audio/ringtones/Noises2.ogg : $(LOCAL_PATH)/newwavelabs/Noises2.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/Noises3.ogg +$(TARGET_OUT)/media/audio/ringtones/Noises3.ogg : $(LOCAL_PATH)/newwavelabs/Noises3.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/OrganDub.ogg +$(TARGET_OUT)/media/audio/ringtones/OrganDub.ogg : $(LOCAL_PATH)/newwavelabs/OrganDub.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/RomancingTheTone.ogg +$(TARGET_OUT)/media/audio/ringtones/RomancingTheTone.ogg : $(LOCAL_PATH)/newwavelabs/RomancingTheTone.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/SitarVsSitar.ogg +$(TARGET_OUT)/media/audio/ringtones/SitarVsSitar.ogg : $(LOCAL_PATH)/newwavelabs/SitarVsSitar.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/SpringyJalopy.ogg +$(TARGET_OUT)/media/audio/ringtones/SpringyJalopy.ogg : $(LOCAL_PATH)/newwavelabs/SpringyJalopy.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/Terminated.ogg +$(TARGET_OUT)/media/audio/ringtones/Terminated.ogg : $(LOCAL_PATH)/newwavelabs/Terminated.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/TwirlAway.ogg +$(TARGET_OUT)/media/audio/ringtones/TwirlAway.ogg : $(LOCAL_PATH)/newwavelabs/TwirlAway.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/VeryAlarmed.ogg +$(TARGET_OUT)/media/audio/ringtones/VeryAlarmed.ogg : $(LOCAL_PATH)/newwavelabs/VeryAlarmed.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ringtones/World.ogg +$(TARGET_OUT)/media/audio/ringtones/World.ogg : $(LOCAL_PATH)/newwavelabs/World.ogg | $(ACP) + $(transform-prebuilt-to-target) +# +# --- New Wave Labs notifications +# +ALL_PREBUILT += $(TARGET_OUT)/media/audio/notifications/CaffeineSnake.ogg +$(TARGET_OUT)/media/audio/notifications/CaffeineSnake.ogg : $(LOCAL_PATH)/newwavelabs/CaffeineSnake.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/notifications/DearDeer.ogg +$(TARGET_OUT)/media/audio/notifications/DearDeer.ogg : $(LOCAL_PATH)/newwavelabs/DearDeer.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/notifications/DontPanic.ogg +$(TARGET_OUT)/media/audio/notifications/DontPanic.ogg : $(LOCAL_PATH)/newwavelabs/DontPanic.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/notifications/Highwire.ogg +$(TARGET_OUT)/media/audio/notifications/Highwire.ogg : $(LOCAL_PATH)/newwavelabs/Highwire.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/notifications/KzurbSonar.ogg +$(TARGET_OUT)/media/audio/notifications/KzurbSonar.ogg : $(LOCAL_PATH)/newwavelabs/KzurbSonar.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/notifications/OnTheHunt.ogg +$(TARGET_OUT)/media/audio/notifications/OnTheHunt.ogg : $(LOCAL_PATH)/newwavelabs/OnTheHunt.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/notifications/Voila.ogg +$(TARGET_OUT)/media/audio/notifications/Voila.ogg : $(LOCAL_PATH)/newwavelabs/Voila.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/ui/Effect_Tick.ogg +$(TARGET_OUT)/media/audio/ui/Effect_Tick.ogg : $(LOCAL_PATH)/Effect_Tick.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/notifications/Beat_Box_Android.ogg +$(TARGET_OUT)/media/audio/notifications/Beat_Box_Android.ogg : $(LOCAL_PATH)/notifications/Beat_Box_Android.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/notifications/Heaven.ogg +$(TARGET_OUT)/media/audio/notifications/Heaven.ogg : $(LOCAL_PATH)/notifications/Heaven.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/notifications/TaDa.ogg +$(TARGET_OUT)/media/audio/notifications/TaDa.ogg : $(LOCAL_PATH)/notifications/TaDa.ogg | $(ACP) + $(transform-prebuilt-to-target) + +ALL_PREBUILT += $(TARGET_OUT)/media/audio/notifications/Tinkerbell.ogg +$(TARGET_OUT)/media/audio/notifications/Tinkerbell.ogg : $(LOCAL_PATH)/notifications/Tinkerbell.ogg | $(ACP) + $(transform-prebuilt-to-target) diff --git a/data/sounds/Effect_Tick.ogg b/data/sounds/Effect_Tick.ogg Binary files differnew file mode 100644 index 0000000..c899a7d --- /dev/null +++ b/data/sounds/Effect_Tick.ogg diff --git a/data/sounds/F1_MissedCall.ogg b/data/sounds/F1_MissedCall.ogg Binary files differnew file mode 100644 index 0000000..396d78f --- /dev/null +++ b/data/sounds/F1_MissedCall.ogg diff --git a/data/sounds/F1_NewVoicemail.ogg b/data/sounds/F1_NewVoicemail.ogg Binary files differnew file mode 100644 index 0000000..c56f68b --- /dev/null +++ b/data/sounds/F1_NewVoicemail.ogg diff --git a/data/sounds/F1_New_MMS.ogg b/data/sounds/F1_New_MMS.ogg Binary files differnew file mode 100644 index 0000000..d3cbdfc --- /dev/null +++ b/data/sounds/F1_New_MMS.ogg diff --git a/data/sounds/F1_New_SMS.ogg b/data/sounds/F1_New_SMS.ogg Binary files differnew file mode 100644 index 0000000..1c6851d --- /dev/null +++ b/data/sounds/F1_New_SMS.ogg diff --git a/data/sounds/Ring_Classic_01.ogg b/data/sounds/Ring_Classic_01.ogg Binary files differnew file mode 100644 index 0000000..b5e6077 --- /dev/null +++ b/data/sounds/Ring_Classic_01.ogg diff --git a/data/sounds/Ring_Classic_02.ogg b/data/sounds/Ring_Classic_02.ogg Binary files differnew file mode 100644 index 0000000..aeb2d5b --- /dev/null +++ b/data/sounds/Ring_Classic_02.ogg diff --git a/data/sounds/Ring_Classic_03.ogg b/data/sounds/Ring_Classic_03.ogg Binary files differnew file mode 100644 index 0000000..2b14eb4 --- /dev/null +++ b/data/sounds/Ring_Classic_03.ogg diff --git a/data/sounds/Ring_Classic_04.ogg b/data/sounds/Ring_Classic_04.ogg Binary files differnew file mode 100644 index 0000000..7474ac5 --- /dev/null +++ b/data/sounds/Ring_Classic_04.ogg diff --git a/data/sounds/Ring_Classic_05.ogg b/data/sounds/Ring_Classic_05.ogg Binary files differnew file mode 100644 index 0000000..b9ef5b1 --- /dev/null +++ b/data/sounds/Ring_Classic_05.ogg diff --git a/data/sounds/Ring_Digital_01.ogg b/data/sounds/Ring_Digital_01.ogg Binary files differnew file mode 100644 index 0000000..39d2bb8 --- /dev/null +++ b/data/sounds/Ring_Digital_01.ogg diff --git a/data/sounds/Ring_Digital_02.ogg b/data/sounds/Ring_Digital_02.ogg Binary files differnew file mode 100644 index 0000000..f823739 --- /dev/null +++ b/data/sounds/Ring_Digital_02.ogg diff --git a/data/sounds/Ring_Digital_03.ogg b/data/sounds/Ring_Digital_03.ogg Binary files differnew file mode 100644 index 0000000..2b70ee8 --- /dev/null +++ b/data/sounds/Ring_Digital_03.ogg diff --git a/data/sounds/Ring_Digital_04.ogg b/data/sounds/Ring_Digital_04.ogg Binary files differnew file mode 100644 index 0000000..d2ca486 --- /dev/null +++ b/data/sounds/Ring_Digital_04.ogg diff --git a/data/sounds/Ring_Digital_05.ogg b/data/sounds/Ring_Digital_05.ogg Binary files differnew file mode 100644 index 0000000..efde497 --- /dev/null +++ b/data/sounds/Ring_Digital_05.ogg diff --git a/data/sounds/Ring_Synth_01.ogg b/data/sounds/Ring_Synth_01.ogg Binary files differnew file mode 100644 index 0000000..ec2e628 --- /dev/null +++ b/data/sounds/Ring_Synth_01.ogg diff --git a/data/sounds/Ring_Synth_02.ogg b/data/sounds/Ring_Synth_02.ogg Binary files differnew file mode 100644 index 0000000..4fc1920 --- /dev/null +++ b/data/sounds/Ring_Synth_02.ogg diff --git a/data/sounds/Ring_Synth_03.ogg b/data/sounds/Ring_Synth_03.ogg Binary files differnew file mode 100644 index 0000000..bb45ecb --- /dev/null +++ b/data/sounds/Ring_Synth_03.ogg diff --git a/data/sounds/Ring_Synth_04.ogg b/data/sounds/Ring_Synth_04.ogg Binary files differnew file mode 100644 index 0000000..ec2d9ac --- /dev/null +++ b/data/sounds/Ring_Synth_04.ogg diff --git a/data/sounds/Ring_Synth_05.ogg b/data/sounds/Ring_Synth_05.ogg Binary files differnew file mode 100644 index 0000000..674434e --- /dev/null +++ b/data/sounds/Ring_Synth_05.ogg diff --git a/data/sounds/newwavelabs/BeatPlucker.ogg b/data/sounds/newwavelabs/BeatPlucker.ogg Binary files differnew file mode 100644 index 0000000..347b5aa --- /dev/null +++ b/data/sounds/newwavelabs/BeatPlucker.ogg diff --git a/data/sounds/newwavelabs/BentleyDubs.ogg b/data/sounds/newwavelabs/BentleyDubs.ogg Binary files differnew file mode 100644 index 0000000..5bb082d --- /dev/null +++ b/data/sounds/newwavelabs/BentleyDubs.ogg diff --git a/data/sounds/newwavelabs/BirdLoop.ogg b/data/sounds/newwavelabs/BirdLoop.ogg Binary files differnew file mode 100644 index 0000000..ed1074b --- /dev/null +++ b/data/sounds/newwavelabs/BirdLoop.ogg diff --git a/data/sounds/newwavelabs/CaffeineSnake.ogg b/data/sounds/newwavelabs/CaffeineSnake.ogg Binary files differnew file mode 100644 index 0000000..98cdd14 --- /dev/null +++ b/data/sounds/newwavelabs/CaffeineSnake.ogg diff --git a/data/sounds/newwavelabs/CaribbeanIce.ogg b/data/sounds/newwavelabs/CaribbeanIce.ogg Binary files differnew file mode 100644 index 0000000..bb150b5 --- /dev/null +++ b/data/sounds/newwavelabs/CaribbeanIce.ogg diff --git a/data/sounds/newwavelabs/CousinJones.ogg b/data/sounds/newwavelabs/CousinJones.ogg Binary files differnew file mode 100644 index 0000000..9bc6312 --- /dev/null +++ b/data/sounds/newwavelabs/CousinJones.ogg diff --git a/data/sounds/newwavelabs/CrazyDream.ogg b/data/sounds/newwavelabs/CrazyDream.ogg Binary files differnew file mode 100644 index 0000000..907316a --- /dev/null +++ b/data/sounds/newwavelabs/CrazyDream.ogg diff --git a/data/sounds/newwavelabs/CurveBall.ogg b/data/sounds/newwavelabs/CurveBall.ogg Binary files differnew file mode 100644 index 0000000..e3d3fdf --- /dev/null +++ b/data/sounds/newwavelabs/CurveBall.ogg diff --git a/data/sounds/newwavelabs/DearDeer.ogg b/data/sounds/newwavelabs/DearDeer.ogg Binary files differnew file mode 100644 index 0000000..f092433 --- /dev/null +++ b/data/sounds/newwavelabs/DearDeer.ogg diff --git a/data/sounds/newwavelabs/DontPanic.ogg b/data/sounds/newwavelabs/DontPanic.ogg Binary files differnew file mode 100644 index 0000000..35c9478 --- /dev/null +++ b/data/sounds/newwavelabs/DontPanic.ogg diff --git a/data/sounds/newwavelabs/DreamTheme.ogg b/data/sounds/newwavelabs/DreamTheme.ogg Binary files differnew file mode 100644 index 0000000..2729f07 --- /dev/null +++ b/data/sounds/newwavelabs/DreamTheme.ogg diff --git a/data/sounds/newwavelabs/EtherShake.ogg b/data/sounds/newwavelabs/EtherShake.ogg Binary files differnew file mode 100644 index 0000000..f1d645a --- /dev/null +++ b/data/sounds/newwavelabs/EtherShake.ogg diff --git a/data/sounds/newwavelabs/FriendlyGhost.ogg b/data/sounds/newwavelabs/FriendlyGhost.ogg Binary files differnew file mode 100644 index 0000000..f250560 --- /dev/null +++ b/data/sounds/newwavelabs/FriendlyGhost.ogg diff --git a/data/sounds/newwavelabs/GameOverGuitar.ogg b/data/sounds/newwavelabs/GameOverGuitar.ogg Binary files differnew file mode 100644 index 0000000..7c5c1d5 --- /dev/null +++ b/data/sounds/newwavelabs/GameOverGuitar.ogg diff --git a/data/sounds/newwavelabs/Growl.ogg b/data/sounds/newwavelabs/Growl.ogg Binary files differnew file mode 100644 index 0000000..5361b3f --- /dev/null +++ b/data/sounds/newwavelabs/Growl.ogg diff --git a/data/sounds/newwavelabs/Highwire.ogg b/data/sounds/newwavelabs/Highwire.ogg Binary files differnew file mode 100644 index 0000000..85ffcb9 --- /dev/null +++ b/data/sounds/newwavelabs/Highwire.ogg diff --git a/data/sounds/newwavelabs/InsertCoin.ogg b/data/sounds/newwavelabs/InsertCoin.ogg Binary files differnew file mode 100644 index 0000000..f5a4a38 --- /dev/null +++ b/data/sounds/newwavelabs/InsertCoin.ogg diff --git a/data/sounds/newwavelabs/KzurbSonar.ogg b/data/sounds/newwavelabs/KzurbSonar.ogg Binary files differnew file mode 100644 index 0000000..8cd17ae --- /dev/null +++ b/data/sounds/newwavelabs/KzurbSonar.ogg diff --git a/data/sounds/newwavelabs/LoopyLounge.ogg b/data/sounds/newwavelabs/LoopyLounge.ogg Binary files differnew file mode 100644 index 0000000..ce559ec --- /dev/null +++ b/data/sounds/newwavelabs/LoopyLounge.ogg diff --git a/data/sounds/newwavelabs/LoveFlute.ogg b/data/sounds/newwavelabs/LoveFlute.ogg Binary files differnew file mode 100644 index 0000000..35904b5 --- /dev/null +++ b/data/sounds/newwavelabs/LoveFlute.ogg diff --git a/data/sounds/newwavelabs/MidEvilJaunt.ogg b/data/sounds/newwavelabs/MidEvilJaunt.ogg Binary files differnew file mode 100644 index 0000000..e4273a9 --- /dev/null +++ b/data/sounds/newwavelabs/MidEvilJaunt.ogg diff --git a/data/sounds/newwavelabs/MildlyAlarming.ogg b/data/sounds/newwavelabs/MildlyAlarming.ogg Binary files differnew file mode 100644 index 0000000..9f03f3b --- /dev/null +++ b/data/sounds/newwavelabs/MildlyAlarming.ogg diff --git a/data/sounds/newwavelabs/NewPlayer.ogg b/data/sounds/newwavelabs/NewPlayer.ogg Binary files differnew file mode 100644 index 0000000..997aac1 --- /dev/null +++ b/data/sounds/newwavelabs/NewPlayer.ogg diff --git a/data/sounds/newwavelabs/Noises1.ogg b/data/sounds/newwavelabs/Noises1.ogg Binary files differnew file mode 100644 index 0000000..2950c6d --- /dev/null +++ b/data/sounds/newwavelabs/Noises1.ogg diff --git a/data/sounds/newwavelabs/Noises2.ogg b/data/sounds/newwavelabs/Noises2.ogg Binary files differnew file mode 100644 index 0000000..3f17526 --- /dev/null +++ b/data/sounds/newwavelabs/Noises2.ogg diff --git a/data/sounds/newwavelabs/Noises3.ogg b/data/sounds/newwavelabs/Noises3.ogg Binary files differnew file mode 100644 index 0000000..788508e --- /dev/null +++ b/data/sounds/newwavelabs/Noises3.ogg diff --git a/data/sounds/newwavelabs/NoiseyDing.ogg b/data/sounds/newwavelabs/NoiseyDing.ogg Binary files differnew file mode 100644 index 0000000..dd9b23b --- /dev/null +++ b/data/sounds/newwavelabs/NoiseyDing.ogg diff --git a/data/sounds/newwavelabs/OnTheHunt.ogg b/data/sounds/newwavelabs/OnTheHunt.ogg Binary files differnew file mode 100644 index 0000000..dd407f6 --- /dev/null +++ b/data/sounds/newwavelabs/OnTheHunt.ogg diff --git a/data/sounds/newwavelabs/OrganDub.ogg b/data/sounds/newwavelabs/OrganDub.ogg Binary files differnew file mode 100644 index 0000000..e18bbe0 --- /dev/null +++ b/data/sounds/newwavelabs/OrganDub.ogg diff --git a/data/sounds/newwavelabs/RomancingTheTone.ogg b/data/sounds/newwavelabs/RomancingTheTone.ogg Binary files differnew file mode 100644 index 0000000..aac4cb2 --- /dev/null +++ b/data/sounds/newwavelabs/RomancingTheTone.ogg diff --git a/data/sounds/newwavelabs/SitarVsSitar.ogg b/data/sounds/newwavelabs/SitarVsSitar.ogg Binary files differnew file mode 100644 index 0000000..0b421b8 --- /dev/null +++ b/data/sounds/newwavelabs/SitarVsSitar.ogg diff --git a/data/sounds/newwavelabs/SpringyJalopy.ogg b/data/sounds/newwavelabs/SpringyJalopy.ogg Binary files differnew file mode 100644 index 0000000..d4c596e --- /dev/null +++ b/data/sounds/newwavelabs/SpringyJalopy.ogg diff --git a/data/sounds/newwavelabs/Terminated.ogg b/data/sounds/newwavelabs/Terminated.ogg Binary files differnew file mode 100644 index 0000000..1b780b9 --- /dev/null +++ b/data/sounds/newwavelabs/Terminated.ogg diff --git a/data/sounds/newwavelabs/TwirlAway.ogg b/data/sounds/newwavelabs/TwirlAway.ogg Binary files differnew file mode 100644 index 0000000..faa685d --- /dev/null +++ b/data/sounds/newwavelabs/TwirlAway.ogg diff --git a/data/sounds/newwavelabs/VeryAlarmed.ogg b/data/sounds/newwavelabs/VeryAlarmed.ogg Binary files differnew file mode 100644 index 0000000..22b3ae1 --- /dev/null +++ b/data/sounds/newwavelabs/VeryAlarmed.ogg diff --git a/data/sounds/newwavelabs/Voila.ogg b/data/sounds/newwavelabs/Voila.ogg Binary files differnew file mode 100644 index 0000000..2c6409d --- /dev/null +++ b/data/sounds/newwavelabs/Voila.ogg diff --git a/data/sounds/newwavelabs/World.ogg b/data/sounds/newwavelabs/World.ogg Binary files differnew file mode 100644 index 0000000..03cafe6 --- /dev/null +++ b/data/sounds/newwavelabs/World.ogg diff --git a/data/sounds/notifications/Beat_Box_Android.ogg b/data/sounds/notifications/Beat_Box_Android.ogg Binary files differnew file mode 100644 index 0000000..c5d5747 --- /dev/null +++ b/data/sounds/notifications/Beat_Box_Android.ogg diff --git a/data/sounds/notifications/Bees_Knees.ogg b/data/sounds/notifications/Bees_Knees.ogg Binary files differnew file mode 100644 index 0000000..1a3cd69 --- /dev/null +++ b/data/sounds/notifications/Bees_Knees.ogg diff --git a/data/sounds/notifications/Cheeper.ogg b/data/sounds/notifications/Cheeper.ogg Binary files differnew file mode 100644 index 0000000..5c59013 --- /dev/null +++ b/data/sounds/notifications/Cheeper.ogg diff --git a/data/sounds/notifications/Heaven.ogg b/data/sounds/notifications/Heaven.ogg Binary files differnew file mode 100644 index 0000000..368c32d --- /dev/null +++ b/data/sounds/notifications/Heaven.ogg diff --git a/data/sounds/notifications/IM_Me.ogg b/data/sounds/notifications/IM_Me.ogg Binary files differnew file mode 100644 index 0000000..2d65ec2 --- /dev/null +++ b/data/sounds/notifications/IM_Me.ogg diff --git a/data/sounds/notifications/ShortCircuit.ogg b/data/sounds/notifications/ShortCircuit.ogg Binary files differnew file mode 100644 index 0000000..80be87e --- /dev/null +++ b/data/sounds/notifications/ShortCircuit.ogg diff --git a/data/sounds/notifications/Star_Struck.ogg b/data/sounds/notifications/Star_Struck.ogg Binary files differnew file mode 100644 index 0000000..d9e6167 --- /dev/null +++ b/data/sounds/notifications/Star_Struck.ogg diff --git a/data/sounds/notifications/TaDa.ogg b/data/sounds/notifications/TaDa.ogg Binary files differnew file mode 100644 index 0000000..c3dc025 --- /dev/null +++ b/data/sounds/notifications/TaDa.ogg diff --git a/data/sounds/notifications/Tinkerbell.ogg b/data/sounds/notifications/Tinkerbell.ogg Binary files differnew file mode 100644 index 0000000..434e96b --- /dev/null +++ b/data/sounds/notifications/Tinkerbell.ogg diff --git a/data/sounds/ring3.ogg b/data/sounds/ring3.ogg Binary files differnew file mode 100644 index 0000000..a0793d9 --- /dev/null +++ b/data/sounds/ring3.ogg diff --git a/data/sounds/ringer.ogg b/data/sounds/ringer.ogg Binary files differnew file mode 100644 index 0000000..75a01f3 --- /dev/null +++ b/data/sounds/ringer.ogg diff --git a/data/sounds/test.mid b/data/sounds/test.mid Binary files differnew file mode 100755 index 0000000..d4ead53 --- /dev/null +++ b/data/sounds/test.mid |