-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (35 loc) · 1.4 KB
/
build.gradle
File metadata and controls
37 lines (35 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
buildscript {
// buildscript block is evaluated at the very beginning. Properties defined in the ext block
// don't exist at that time.
ext.kotlinVersion = '1.3.20'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
ext {
minSdkVersion = 21
targetSdkVersion = 28
compileSdkVersion = 28
buildToolsVersion = '28.0.3'
androidSupportLibraryVersion = '28.0.0'
sourceCompatibilityVersion = JavaVersion.VERSION_1_7
targetCompatibilityVersion = JavaVersion.VERSION_1_7
easyListDefaultUpdateUrl = 'https://easylist-downloads.adblockplus.org/easylist.txt'
easyListChinaUpdateUrl = 'https://easylist-downloads.adblockplus.org/easylistchina+easylistchina_compliance+easylist.txt'
exceptionRulesUpdateUrl = 'https://easylist-downloads.adblockplus.org/exceptionrules.txt'
easyListFilePath = file('adblockplussbrowser/src/main/res/raw/easylist.txt').absolutePath
exceptionRulesFilePath = file('adblockplussbrowser/src/main/res/raw/exceptionrules.txt').absolutePath
translationsSourceFilePath = file('adblockplussbrowser/src/main/res/values/strings.xml').absolutePath
localPropertiesPath = file('local.properties').absolutePath
}