blob: b4375d58184111fa172449599d11693ff41639dd [file] [log] [blame]
JesusFreke@JesusFreke.com4b06cfb2010-08-02 00:57:56 +00001The majority of smali/baksmali is written and copyrighted by me (Ben Gruver)
2and released under the following license:
3
4*******************************************************************************
5Copyright (c) 2010 Ben Gruver (JesusFreke)
6All rights reserved.
7
8Redistribution and use in source and binary forms, with or without
9modification, are permitted provided that the following conditions
10are met:
111. Redistributions of source code must retain the above copyright
12 notice, this list of conditions and the following disclaimer.
132. 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.
163. 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
19THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29*******************************************************************************
30
31
Ben Gruver880e82d2011-11-14 11:56:47 -080032Unless otherwise stated in the code/commit message, any changes with the
33committer of bgruv@google.com is copyrighted by Google Inc. and released
34under the following license:
35
36*******************************************************************************
37Copyright 2011, Google Inc.
38All rights reserved.
39
40Redistribution and use in source and binary forms, with or without
41modification, are permitted provided that the following conditions are
42met:
43
44 * Redistributions of source code must retain the above copyright
45notice, this list of conditions and the following disclaimer.
46 * Redistributions in binary form must reproduce the above
47copyright notice, this list of conditions and the following disclaimer
48in the documentation and/or other materials provided with the
49distribution.
50 * Neither the name of Google Inc. nor the names of its
51contributors may be used to endorse or promote products derived from
52this software without specific prior written permission.
53
54THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
55"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
56LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
57A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
58OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
59SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
60LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
61DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
62THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
63(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
64OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
65*******************************************************************************
66
67
JesusFreke@JesusFreke.com4b06cfb2010-08-02 00:57:56 +000068Various portions of the code are taken from the Android Open Source Project,
69and are used in accordance with the following license:
70
71*******************************************************************************
72Copyright (C) 2007 The Android Open Source Project
73
74Licensed under the Apache License, Version 2.0 (the "License");
75you may not use this file except in compliance with the License.
76You may obtain a copy of the License at
77
78 http://www.apache.org/licenses/LICENSE-2.0
79
80Unless required by applicable law or agreed to in writing, software
81distributed under the License is distributed on an "AS IS" BASIS,
82WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
83See the License for the specific language governing permissions and
84limitations under the License.
85*******************************************************************************
86
87
88The smali mojo plugin is (very loosely) based on an unknown mojo plugin with
89the following license:
90
91*******************************************************************************
92Copyright 2001-2005 The Apache Software Foundation.
93
94Licensed under the Apache License, Version 2.0 (the "License");
95you may not use this file except in compliance with the License.
96You may obtain a copy of the License at
97
98 http://www.apache.org/licenses/LICENSE-2.0
99
100Unless required by applicable law or agreed to in writing, software
101distributed under the License is distributed on an "AS IS" BASIS,
102WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
103See the License for the specific language governing permissions and
104limitations under the License.
JesusFreke@JesusFreke.coma6e56712010-08-02 00:58:12 +0000105*******************************************************************************
106
107
108The RadixTree implementation in the "util" project is taken from
109http://code.google.com/p/radixtree/ (version .3), and is used with minor
110modifications in accordance with the following license:
111
112*******************************************************************************
113The MIT License
114
115Copyright (c) 2008 Tahseen Ur Rehman
116
117Permission is hereby granted, free of charge, to any person obtaining a copy
118of this software and associated documentation files (the "Software"), to deal
119in the Software without restriction, including without limitation the rights
120to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
121copies of the Software, and to permit persons to whom the Software is
122furnished to do so, subject to the following conditions:
123
124The above copyright notice and this permission notice shall be included in
125all copies or substantial portions of the Software.
126
127THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
128IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
129FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
130AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
131LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
132OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
133THE SOFTWARE.
134*******************************************************************************