Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: build.gradle

Issue 29349720: Issue 4324 - Add Gradle build config (Closed)
Patch Set: Created Aug. 11, 2016, 1:20 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {}
+}

Powered by Google App Engine
This is Rietveld