Package com.android.dexdeps

Examples of com.android.dexdeps.DexData.load()


            String[] inputFileNames = parseArgs(args);
            for (String fileName : collectFileNames(inputFileNames)) {
                System.out.println("Processing " + fileName);
                RandomAccessFile raf = openInputFile(fileName);
                DexData dexData = new DexData(raf);
                dexData.load();
                DexMethodCounts.generate(
                    dexData, includeClasses, packageFilter, maxDepth, filter);
                raf.close();
            }
            System.out.println("Overall method count: " + DexMethodCounts.overallCount);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.