Android Studio的project中两个build.gradle配置的区别

一般创建一个android项目后回出现两个gradle:

  • build.gradle(Project):用来配置整个工程的
  • build.gradle(app):一个是用来配置app的

    对compile和classpath区别的解释:

    I’m going to guess that you’re referencing compile and classpath 
    within the dependencies {} block. If that is so, those are dependency 
    Configurations.

    A configuration is simply a named set of dependencies. The compile 
    configuration is created by the Java plugin. The classpath 
    configuration is commonly seen in the buildSrc {} block where one 
    needs to declare dependencies for the build.gradle, itself (for 
    plugins, perhaps).

    classpath的作用:

    buildscript itself needs something to run, use classpath

    complie的作用:

    your project needs something to run, use compile

    https://blog.csdn.net/zsj470785068/article/details/77646249
posted @ 2018-10-12 10:33  zhaogaojian  阅读(1520)  评论(0编辑  收藏  举报