mirror of
https://github.com/revanced/Apktool.git
synced 2025-05-02 06:54:25 +02:00
84 lines
2.5 KiB
Java
84 lines
2.5 KiB
Java
/**
|
|
* 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 org.jf.baksmali.baksmali;
|
|
import org.jf.smali.main;
|
|
|
|
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("/properties/apktool.properties");
|
|
sProps = new Properties();
|
|
try {
|
|
sProps.load(in);
|
|
in.close();
|
|
} catch (IOException ex) {
|
|
LOGGER.warning("Can't load properties.");
|
|
}
|
|
|
|
InputStream templateStream = baksmali.class.getClassLoader().getResourceAsStream("baksmali.properties");
|
|
Properties properties = new Properties();
|
|
String version = "(unknown)";
|
|
|
|
if (templateStream != null) {
|
|
try {
|
|
properties.load(templateStream);
|
|
version = properties.getProperty("application.version");
|
|
} catch (IOException ignored) {
|
|
}
|
|
}
|
|
sProps.put("baksmaliVersion", version);
|
|
|
|
|
|
templateStream = main.class.getClassLoader().getResourceAsStream("smali.properties");
|
|
properties = new Properties();
|
|
version = "(unknown)";
|
|
|
|
if (templateStream != null) {
|
|
try {
|
|
properties.load(templateStream);
|
|
version = properties.getProperty("application.version");
|
|
} catch (IOException ignored) {
|
|
}
|
|
}
|
|
sProps.put("smaliVersion", version);
|
|
}
|
|
|
|
private static Properties sProps;
|
|
|
|
private static final Logger LOGGER = Logger
|
|
.getLogger(ApktoolProperties.class.getName());
|
|
} |