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


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM