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: fixes in README Created Nov. 21, 2016, 8:14 a.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
« no previous file with comments | « README.md ('k') | gradle/wrapper/gradle-wrapper.jar » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {}
+}
« no previous file with comments | « README.md ('k') | gradle/wrapper/gradle-wrapper.jar » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld