This repository was archived by the owner on Jan 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
68 lines (57 loc) · 1.57 KB
/
build.gradle
File metadata and controls
68 lines (57 loc) · 1.57 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
}
}
repositories {
jcenter()
}
apply plugin: "com.android.application"
dependencies {
compile "com.crossbowffs.remotepreferences:remotepreferences:0.5"
compile "org.jsoup:jsoup:1.10.2"
provided "de.robv.android.xposed:api:53"
}
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
versionCode 11
versionName "1.4.0"
minSdkVersion 21
/*
* QuoteLock is not compatible with API24 and above due to the
* behavior changes in connectivity intents. If someone wants to
* fix this, feel free, but be aware that JobScheduler is already
* buggy enough as it is.
*/
targetSdkVersion 23
buildConfigField("int", "MODULE_VERSION", "3")
buildConfigField("int", "CUSTOM_QUOTES_DB_VERSION", "1")
buildConfigField("String", "LOG_TAG", "\"QuoteLock\"")
}
sourceSets {
main {
manifest.srcFile "AndroidManifest.xml"
res.srcDir "res"
java.srcDir "src"
assets.srcDir "assets"
}
}
buildTypes {
debug {
buildConfigField("int", "LOG_LEVEL", "2")
buildConfigField("boolean", "LOG_TO_XPOSED", "false")
}
release {
buildConfigField("int", "LOG_LEVEL", "4")
buildConfigField("boolean", "LOG_TO_XPOSED", "true")
}
}
lintOptions {
abortOnError false
}
}