v1.4.7 push

This commit is contained in:
Connor Tumbleson 2012-07-05 11:51:03 -05:00
parent 9646025bb9
commit d9484018ca
2 changed files with 35 additions and 11 deletions

View File

@ -83,11 +83,23 @@
<groupId>brut.apktool.smali</groupId>
<artifactId>smali</artifactId>
<version>${smaliVersion}</version>
<exclusions>
<exclusion>
<artifactId>dexlib</artifactId>
<groupId>brut.apktool.smali</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>brut.apktool.smali</groupId>
<artifactId>baksmali</artifactId>
<version>${smaliVersion}</version>
<exclusions>
<exclusion>
<artifactId>dexlib</artifactId>
<groupId>brut.apktool.smali</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>brut.apktool.smali</groupId>
@ -107,13 +119,24 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<version>4.10</version>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>brut.apktool.smali</groupId>
<artifactId>dexlib</artifactId>
<version>1.3.4-ibot7</version>
</dependency>
</dependencies>
<pluginRepositories>

View File

@ -1,18 +1,19 @@
/**
* Copyright 2011 Ryszard Wiśniewski <brut.alll@gmail.com>
* Copyright 2011 Ryszard Wiśniewski <brut.alll@gmail.com>
*
* 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
* 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
* 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.
* 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.
*/
package brut.androlib.res.data.value;
import brut.androlib.AndrolibException;