+apktool.properties +ApktoolProperties

This commit is contained in:
Ryszard Wiśniewski 2011-05-15 16:51:43 +02:00
parent f1fed7a75e
commit 84a0972526
4 changed files with 58 additions and 0 deletions

View File

@ -29,6 +29,7 @@
<excludes>
<exclude>src/main/java/com/mindprod/**</exclude>
<exclude>src/main/java/android/**</exclude>
<exclude>src/main/resources/brut/androlib/apktool.properties</exclude>
<exclude>src/test/resources/brut/apktool/testapp/**</exclude>
</excludes>
</configuration>

View File

@ -0,0 +1,55 @@
/**
* 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
*
* 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.
*/
package brut.androlib;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
import java.util.logging.Logger;
/**
* @author Ryszard Wiśniewski <brut.alll@gmail.com>
*/
public class ApktoolProperties {
public static String get(String key) {
return get().getProperty(key);
}
public static Properties get() {
if (sProps == null) {
loadProps();
}
return sProps;
}
private static void loadProps() {
InputStream in = ApktoolProperties.class
.getResourceAsStream("apktool.properties");
sProps = new Properties();
try {
sProps.load(in);
in.close();
} catch (IOException ex) {
LOGGER.warning("Can't load properties.");
}
}
private static Properties sProps;
private static final Logger LOGGER =
Logger.getLogger(ApktoolProperties.class.getName());
}

View File

@ -0,0 +1 @@
aversion = ${aversion}

View File

@ -25,6 +25,7 @@
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
<resource>
<directory>..</directory>