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

Unified Diff: build.gradle

Issue 29424711: Issue 4777 - Add support for Gradle build (Closed)
Patch Set: Adjusting ignored files and updating support lib Created May 3, 2017, 1:43 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
===================================================================
new file mode 100644
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,24 @@
+buildscript {
+ repositories {
+ jcenter()
+ }
+ dependencies {
+ classpath 'com.android.tools.build:gradle:2.3.1'
+ }
+}
+
+allprojects {
+ repositories {
+ jcenter()
+ }
+}
+
+ext {
+ minSdkVersion = 21
+ targetSdkVersion = 25
+ compileSdkVersion = 25
+ buildToolsVersion = '25.0.3'
+ androidSupportLibraryVersion = '25.3.1'
+ sourceCompatibilityVersion = JavaVersion.VERSION_1_7
+ targetCompatibilityVersion = JavaVersion.VERSION_1_7
+}

Powered by Google App Engine
This is Rietveld