mtk 源码执行 development/tools/idegen/idegen.sh 卡住不动

发布时间:2024年01月07日

//development/tools/idegen/src/Configuration.java

public class Configuration {

     // .....

    private static void traverse(File directory, Set<File> sourceRoots,

                                 Collection<File> jarFiles, Collection<File> excludedDirs,

                                 Excludes excludes) throws IOException {

        // .....

        for (File file : files) {

            //添加如下代码

            System.out.println("file >> " + file);

            if (file != null && file.getPath().contains("vendor/mediatek/kernel_modules")) {

                continue;

<

文章来源:https://blog.csdn.net/songtao542/article/details/135434560
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。