classpath 和 implementation的区别
https://stackoverflow.com/questions/34286407/gradle-what-is-the-difference-between-classpath-and-compile-dependencies/69631709#69631709
简单来说就是,classpath后面的依赖进攻build script使用,是给gradle构建时用的。给code用的依赖写在implementation后面。classpath并不是什么所谓的“全局依赖”,你试试把依赖从app 的build.gradle移到project 的build.gradle并把前缀改成classpath看看你还能用那个库吗?并不能!!

浙公网安备 33010602011771号