qcom ./development/tools/idegen/idegen.sh 卡住不动

前言

在Android 开发中,有时候我们需要将android 源码导入android studio,就要用到idegen 工具,qcom 高通部分平台发现执行/development/tools/idegen/idegen.sh 不动

分析

通过添加log发现是由于文件遍历进入了死循环;
可以在development/tools/idegen/src/Configuration.java 中添加log。

解决建议


    private static void traverse(File directory, Set<File> sourceRoots,
                                 Collection<File> jarFiles, Collection<File> excludedDirs,
                                 Excludes excludes) throws IOException {

...
			//add 
                if (path.startsWith("frameworks") || path.startsWith("packages") || path.startsWith("vendor") || path.startsWith("hardware")) {
                    System.out.printf("path = " + path + " \n");
                    if (path.startsWith("vendor/qcom/opensource/wlan/qcacld-3.0")) {
                        continue;
                    }
                } else {
                    continue;
                }
....                
``


你可能感兴趣的:(idegen,android,studio\)