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

Unified Diff: build.gradle

Issue 29596640: Noissue - Update dependecies and tools (Closed)
Patch Set: Created Nov. 3, 2017, 1:19 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
===================================================================
--- a/build.gradle
+++ b/build.gradle
@@ -1,28 +1,32 @@
buildscript {
repositories {
jcenter()
}
dependencies {
- classpath 'com.android.tools.build:gradle:2.3.1'
+ classpath 'com.android.tools.build:gradle:3.0.0'
}
}
allprojects {
repositories {
jcenter()
+ maven {
+ url 'https://maven.google.com/'
+ name 'Google'
+ }
}
}
ext {
minSdkVersion = 21
- targetSdkVersion = 25
- compileSdkVersion = 25
- buildToolsVersion = '25.0.3'
- androidSupportLibraryVersion = '25.3.1'
+ targetSdkVersion = 27
+ compileSdkVersion = 27
+ buildToolsVersion = '27.0.0'
+ androidSupportLibraryVersion = '27.0.0'
sourceCompatibilityVersion = JavaVersion.VERSION_1_7
targetCompatibilityVersion = JavaVersion.VERSION_1_7
easyListUpdateUrl = 'https://easylist-downloads.adblockplus.org/easylist.txt'
exceptionRulesUpdateUrl = 'https://easylist-downloads.adblockplus.org/exceptionrules.txt'
easyListFilePath = file('adblockplussbrowser/res/raw/easylist.txt').absolutePath
exceptionRulesFilePath = file('adblockplussbrowser/res/raw/exceptionrules.txt').absolutePath
}

Powered by Google App Engine
This is Rietveld