yangbo524

Results 5 comments of yangbo524

for (JarInput jarInput : input.getJarInputs()) { if (!inMainDex(jarInput)) { listFiles.add(jarInput); continue; } mainJars.add(jarInput.getFile()); if (!validJar(jarInput)){ continue; } logger.verbose("Jar input %s", jarInput.getFile().toString()); List dexArchives = processJarInput( transformInvocation.getContext(), false, jarInput, outputProvider); cacheItems.putAll(jarInput,dexArchives);...

自定义transform的out必须更新到AtlasBuildContext.atlasMainDexHelperMap 这个map中才其效果,这个问题处理了么?