Index: build.gradle |
diff --git a/build.gradle b/build.gradle |
new file mode 100644 |
index 0000000000000000000000000000000000000000..236bc071c7bc18e45bc700dc39105170d2d64d28 |
--- /dev/null |
+++ b/build.gradle |
@@ -0,0 +1,18 @@ |
+buildscript { |
+ repositories { |
+ mavenLocal() |
+ mavenCentral() |
+ jcenter() |
+ } |
+ dependencies { |
+ // experimental gradle plugin for the library to compile native code with NDK |
+ classpath "com.android.tools.build:gradle-experimental:0.7.2" |
+ |
+ // regular gradle plugin for the tests |
+ classpath 'com.android.tools.build:gradle:2.1.2' |
+ } |
+} |
+ |
+subprojects { |
+ task listAllDependencies(type: DependencyReportTask) {} |
+} |