Package brut.androlib.res

Examples of brut.androlib.res.AndrolibResources


    }

    private void decodeValues() throws IOException {
        nextStep("Decoding values");
        try {
            AndrolibResources res = new AndrolibResources();
            ExtFile extFile = new ExtFile(mApkFile);
            ResTable resTable = res.getResTable(extFile);
            res.decode(resTable, extFile, mOutputDir);
        } catch (AndrolibException ex) {
            ex.printStackTrace();
            throw new IOException(ex);
        }
    }
View Full Code Here

TOP

Related Classes of brut.androlib.res.AndrolibResources

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.