一直不明白的问题,就是gradle文件中执行compile 'com.info:bluetoothle:1.1.10'
这段代码的时候,为什么就会将相关的依赖添加进来?android studio是从哪里下载这些依赖的呢?
人生最曼妙的风景,竟是内心的淡定与从容!
Strictly speaking, it is downloaded through gradle..
Download the maven repo server from other people/companies/websites. Depending on your .gradle configuration, it may be downloaded from a place like bintray/jcenter.
In the build.gradle file in your project root directory, there is
repositories { jcenter() }
gradle will automatically look for dependencies from here
Strictly speaking, it is downloaded through gradle..
Download the maven repo server from other people/companies/websites. Depending on your .gradle configuration, it may be downloaded from a place like bintray/jcenter.
In the build.gradle file in your project root directory, there is
gradle will automatically look for dependencies from here