Gradle - 选择模块编译(否则重用jar)

时间:2016-11-03 06:44:30

标签: android gradle android-gradle gradle-task

我在我的项目中使用了很多模块(本地和在线的模块,大多数情况下都是> 20),我可以说通常不检查或重新编译它们。我可以将它们全部包含在.jar文件中,这样可以加快构建时间,但我更愿意遵循:

  • 设置我定义gradle应该为我的所有模块构建.jar并重用它们的东西
  • 如果需要我只是禁用此设置并构建我的项目(完全是一个干净的构建会这样做)
  • 我希望能够在项目中编辑我的模块,这就是为什么我不想将它们直接包含在.jar文件中。

我希望更快的构建时间,但我不想构建(function (n){ ddown[n].addEventListener('mousedown', function(){document.getElementById('sl'+(n+1)).classList.add('slactive');}); )(n) 文件并手动将它们添加到我的项目中。

关于如何以及如果可能的任何想法?我可以通过一些设置或通过gradle任务或类似工具来实现吗?

2 个答案:

答案 0 :(得分:6)

让我考虑一下验证库,它存在于.jar中,我们应该下载它们。在其他情况下,您可以提供多种类型的产品口味。在此之后,只需为您的工作选择Build Flavors。

productFlavors {
        fastDebug {
            applicationIdSuffix ".jar"
        }
        regularDegub {
            applicationIdSuffix ".regular"
        }
        ....
        // Other Configuration
    }

dependencies {
    ...
    // Jar Debug by adding only Jar
    fastDegubCompile fileTree(dir: 'libs', include: '*.jar')
    fastDegubCompile 'com.android.support:support-v4:23.1.1'

    ...
    // Regular Debug with downloading all libraries
    // Including only specific from project files
    regularDegubCompile 'com.squareup.picasso:picasso:2.5.2'
    regularDegubCompile 'com.android.support:support-v4:23.1.1'
    regularDegubCompile files('libs/specific1.jar', 'libs/specific2.jar')

} 

<强> |更新|

因此,在一些解决方法之后,我看到Gradle将库收集到某个缓存中,在那里我可以看到源代码。但我仍然在寻找具有项目配置的正确验证库的方法。

现在我编写了用于从Gradle缓存位置收集文件的脚本。并将它们复制到新的位置,我们可以使用构建口味。这非常快(200个库的时间少于7秒),但仍需要改进(见上文)。

如果我没有时间,请在下次更新时随意填写解决方案。感谢您的理解。

// Task for calling from Gradle Scripts
// -----------------------------------

task gatheringJarFilesTask << {
    println("Gathering Jars Start...")
    gatheringJarFiles(gradleCacheLocation, foundedJarsList)
    println("------------------------------")
    println("Gathering Jars End! Start copying!")
    copyFiles(projectJarsLocation, foundedJarsList)

}


// Constants, which might be optimized too
// -----------------------------------

def gradleCacheLocation = '/home/kasyangenka/.gradle/caches/modules-2/files-2.1'
def projectJarsLocation = '/home/kasyangenka/Projects/GradleScriptsTest/app/libs'
List<String> foundedJarsList = []

// Main Script Methods
// -----------------------------------

def gatheringJarFiles(baseDirPath, gatheredList) {
    new File(baseDirPath).eachFile {file ->
        println("-> Current file: " + file.getName())
        if (file.isDirectory()) {
            gatheringJarFiles(file.getAbsolutePath(), gatheredList)
        }
        def containsLib = (file.getName().contains(".jar")
                || file.getName().contains(".aar"));

        if (containsLib)  {
            println("->> Adding Jar file: " + file.getAbsolutePath())
            gatheredList.add(file.getAbsolutePath())
        }
    }
}

def copyFiles (destiny, List sourceList) {
    sourceList.each {filePath ->
        copy {
            from filePath
            into destiny
        }
    }
}

答案 1 :(得分:3)

我认为Gradle 2.5引入的Continuous build功能正试图解决您遇到的问题,尽管它并不完全符合您的需求。通过print(snapshot)-t--continuous命令来使用它,以下是gradlew选项的说明。

-t, --continuous        Enables continuous build. Gradle does not exit and will re-execute tasks when task file inputs change. [incubating]

引用文件:

Gradle's incremental build support ensures that only the tasks that are actually affected by the change are executed.

请参阅:https://docs.gradle.org/current/userguide/continuous_build.html