Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 buildscript { | |
2 repositories { | |
3 mavenLocal() | |
4 mavenCentral() | |
5 jcenter() | |
6 } | |
7 dependencies { | |
8 // experimental gradle plugin for the library to compile native code with ND K | |
9 classpath "com.android.tools.build:gradle-experimental:0.7.2" | |
10 | |
11 // regular gradle plugin for the tests | |
12 classpath 'com.android.tools.build:gradle:2.1.2' | |
13 } | |
14 } | |
15 | |
16 subprojects { | |
17 task listAllDependencies(type: DependencyReportTask) {} | |
18 } | |
OLD | NEW |