| OLD | NEW |
| 1 buildscript { | 1 buildscript { |
| 2 repositories { | 2 repositories { |
| 3 jcenter() | 3 jcenter() |
| 4 } | 4 } |
| 5 dependencies { | 5 dependencies { |
| 6 classpath 'com.android.tools.build:gradle:2.3.1' | 6 classpath 'com.android.tools.build:gradle:3.0.0' |
| 7 } | 7 } |
| 8 } | 8 } |
| 9 | 9 |
| 10 allprojects { | 10 allprojects { |
| 11 repositories { | 11 repositories { |
| 12 jcenter() | 12 jcenter() |
| 13 maven { |
| 14 url 'https://maven.google.com/' |
| 15 name 'Google' |
| 16 } |
| 13 } | 17 } |
| 14 } | 18 } |
| 15 | 19 |
| 16 ext { | 20 ext { |
| 17 minSdkVersion = 21 | 21 minSdkVersion = 21 |
| 18 targetSdkVersion = 25 | 22 targetSdkVersion = 27 |
| 19 compileSdkVersion = 25 | 23 compileSdkVersion = 27 |
| 20 buildToolsVersion = '25.0.3' | 24 buildToolsVersion = '27.0.0' |
| 21 androidSupportLibraryVersion = '25.3.1' | 25 androidSupportLibraryVersion = '27.0.0' |
| 22 sourceCompatibilityVersion = JavaVersion.VERSION_1_7 | 26 sourceCompatibilityVersion = JavaVersion.VERSION_1_7 |
| 23 targetCompatibilityVersion = JavaVersion.VERSION_1_7 | 27 targetCompatibilityVersion = JavaVersion.VERSION_1_7 |
| 24 easyListUpdateUrl = 'https://easylist-downloads.adblockplus.org/easylist.txt
' | 28 easyListUpdateUrl = 'https://easylist-downloads.adblockplus.org/easylist.txt
' |
| 25 exceptionRulesUpdateUrl = 'https://easylist-downloads.adblockplus.org/except
ionrules.txt' | 29 exceptionRulesUpdateUrl = 'https://easylist-downloads.adblockplus.org/except
ionrules.txt' |
| 26 easyListFilePath = file('adblockplussbrowser/res/raw/easylist.txt').absolute
Path | 30 easyListFilePath = file('adblockplussbrowser/res/raw/easylist.txt').absolute
Path |
| 27 exceptionRulesFilePath = file('adblockplussbrowser/res/raw/exceptionrules.tx
t').absolutePath | 31 exceptionRulesFilePath = file('adblockplussbrowser/res/raw/exceptionrules.tx
t').absolutePath |
| 28 } | 32 } |
| OLD | NEW |