Luca Stefani | 7f9fff2 | 2016-07-18 13:47:55 +0200 | [diff] [blame^] | 1 | The majority of smali/baksmali is written and copyrighted by me (Ben Gruver) |
| 2 | and released under the following license: |
| 3 | |
| 4 | ******************************************************************************* |
| 5 | Copyright (c) 2010 Ben Gruver (JesusFreke) |
| 6 | All rights reserved. |
| 7 | |
| 8 | Redistribution and use in source and binary forms, with or without |
| 9 | modification, are permitted provided that the following conditions |
| 10 | are met: |
| 11 | 1. Redistributions of source code must retain the above copyright |
| 12 | notice, this list of conditions and the following disclaimer. |
| 13 | 2. Redistributions in binary form must reproduce the above copyright |
| 14 | notice, this list of conditions and the following disclaimer in the |
| 15 | documentation and/or other materials provided with the distribution. |
| 16 | 3. The name of the author may not be used to endorse or promote products |
| 17 | derived from this software without specific prior written permission. |
| 18 | |
| 19 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 20 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 21 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 22 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 23 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 24 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 | INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 28 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 | ******************************************************************************* |
| 30 | |
| 31 | |
| 32 | Unless otherwise stated in the code/commit message, any changes with the |
| 33 | committer of bgruv@google.com is copyrighted by Google Inc. and released |
| 34 | under the following license: |
| 35 | |
| 36 | ******************************************************************************* |
| 37 | Copyright 2011, Google Inc. |
| 38 | All rights reserved. |
| 39 | |
| 40 | Redistribution and use in source and binary forms, with or without |
| 41 | modification, are permitted provided that the following conditions are |
| 42 | met: |
| 43 | |
| 44 | * Redistributions of source code must retain the above copyright |
| 45 | notice, this list of conditions and the following disclaimer. |
| 46 | * Redistributions in binary form must reproduce the above |
| 47 | copyright notice, this list of conditions and the following disclaimer |
| 48 | in the documentation and/or other materials provided with the |
| 49 | distribution. |
| 50 | * Neither the name of Google Inc. nor the names of its |
| 51 | contributors may be used to endorse or promote products derived from |
| 52 | this software without specific prior written permission. |
| 53 | |
| 54 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 55 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 56 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 57 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 58 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 59 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 60 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 61 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 62 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 63 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 64 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 65 | ******************************************************************************* |
| 66 | |
| 67 | |
| 68 | Various portions of the code are taken from the Android Open Source Project, |
| 69 | and are used in accordance with the following license: |
| 70 | |
| 71 | ******************************************************************************* |
| 72 | Copyright (C) 2007 The Android Open Source Project |
| 73 | |
| 74 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 75 | you may not use this file except in compliance with the License. |
| 76 | You may obtain a copy of the License at |
| 77 | |
| 78 | http://www.apache.org/licenses/LICENSE-2.0 |
| 79 | |
| 80 | Unless required by applicable law or agreed to in writing, software |
| 81 | distributed under the License is distributed on an "AS IS" BASIS, |
| 82 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 83 | See the License for the specific language governing permissions and |
| 84 | limitations under the License. |
| 85 | ******************************************************************************* |
| 86 | |
| 87 | |
| 88 | Some parts of the smalidea plugin are based on code from the IDEA project, per the |
| 89 | following license |
| 90 | |
| 91 | ******************************************************************************* |
| 92 | Copyright 2000-2014 JetBrains s.r.o. |
| 93 | |
| 94 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 95 | you may not use this file except in compliance with the License. |
| 96 | You may obtain a copy of the License at |
| 97 | |
| 98 | http://www.apache.org/licenses/LICENSE-2.0 |
| 99 | |
| 100 | Unless required by applicable law or agreed to in writing, software |
| 101 | distributed under the License is distributed on an "AS IS" BASIS, |
| 102 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 103 | See the License for the specific language governing permissions and |
| 104 | limitations under the License. |
| 105 | ******************************************************************************* |