LEFT | RIGHT |
(no file at all) | |
1 buildscript { | 1 buildscript { |
2 // buildscript block is evaluated at the very beginning. Properties defined
in the ext block | 2 // buildscript block is evaluated at the very beginning. Properties defined
in the ext block |
3 // don't exist at that time. | 3 // don't exist at that time. |
4 ext.kotlinVersion = '1.1.51' | 4 ext.kotlinVersion = '1.1.51' |
5 repositories { | 5 repositories { |
6 google() | 6 google() |
7 jcenter() | 7 jcenter() |
8 } | 8 } |
9 dependencies { | 9 dependencies { |
10 classpath 'com.android.tools.build:gradle:3.0.0' | 10 classpath 'com.android.tools.build:gradle:3.0.1' |
11 classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion" | 11 classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion" |
12 } | 12 } |
13 } | 13 } |
14 | 14 |
15 allprojects { | 15 allprojects { |
16 repositories { | 16 repositories { |
17 jcenter() | 17 jcenter() |
18 mavenCentral() | 18 mavenCentral() |
19 maven { | 19 maven { |
20 url 'https://maven.google.com/' | 20 url 'https://maven.google.com/' |
21 name 'Google' | 21 name 'Google' |
22 } | 22 } |
23 } | 23 } |
24 } | 24 } |
25 | 25 |
26 ext { | 26 ext { |
27 minSdkVersion = 21 | 27 minSdkVersion = 21 |
28 targetSdkVersion = 27 | 28 targetSdkVersion = 27 |
29 compileSdkVersion = 27 | 29 compileSdkVersion = 27 |
30 buildToolsVersion = '27.0.0' | 30 buildToolsVersion = '27.0.0' |
31 androidSupportLibraryVersion = '27.0.0' | 31 androidSupportLibraryVersion = '27.0.0' |
32 sourceCompatibilityVersion = JavaVersion.VERSION_1_7 | 32 sourceCompatibilityVersion = JavaVersion.VERSION_1_7 |
33 targetCompatibilityVersion = JavaVersion.VERSION_1_7 | 33 targetCompatibilityVersion = JavaVersion.VERSION_1_7 |
34 easyListUpdateUrl = 'https://easylist-downloads.adblockplus.org/easylist.txt
' | 34 easyListUpdateUrl = 'https://easylist-downloads.adblockplus.org/easylist.txt
' |
35 exceptionRulesUpdateUrl = 'https://easylist-downloads.adblockplus.org/except
ionrules.txt' | 35 exceptionRulesUpdateUrl = 'https://easylist-downloads.adblockplus.org/except
ionrules.txt' |
36 easyListFilePath = file('adblockplussbrowser/res/raw/easylist.txt').absolute
Path | 36 easyListFilePath = file('adblockplussbrowser/res/raw/easylist.txt').absolute
Path |
37 exceptionRulesFilePath = file('adblockplussbrowser/res/raw/exceptionrules.tx
t').absolutePath | 37 exceptionRulesFilePath = file('adblockplussbrowser/res/raw/exceptionrules.tx
t').absolutePath |
38 } | 38 } |
LEFT | RIGHT |