-
Notifications
You must be signed in to change notification settings - Fork 88
/
build.gradle
154 lines (135 loc) · 4.76 KB
/
build.gradle
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
}
}
apply plugin: 'com.android.application'
repositories {
mavenCentral()
jcenter()
mavenLocal() // Needed to pick up analytics from maven-android-sdk-deployer
maven {
url 'https://github.com/iFixit/ark/raw/master/releases/'
}
maven {
url 'https://dl.bintray.com/alexeydanilov/maven'
}
}
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
compile "com.android.support:appcompat-v7:25.3.1"
compile "com.android.support:support-v4:25.3.1"
compile "com.android.support:cardview-v7:25.3.1"
compile "com.android.support:design:25.3.1"
compile "com.android.support:recyclerview-v7:25.3.1"
compile "com.android.support:palette-v7:25.3.1"
compile 'com.squareup.okio:okio:1.13.0'
compile "com.squareup.okhttp3:okhttp:3.6.0"
compile "com.jakewharton.picasso:picasso2-okhttp3-downloader:1.1.0"
compile "com.marczych.androidsectionheaders:androidsectionheaders:1.0.0"
compile "com.squareup:otto:1.3.4"
compile "org.jsoup:jsoup:1.11.1"
compile "com.google.code.gson:gson:2.7"
compile "com.squareup.picasso:picasso:2.5.2"
compile "com.viewpagerindicator:viewpagerindicator:2.4.3"
compile "it.sephiroth.android.library.imagezoom:imagezoom:1.0.0"
compile "com.vandalsoftware.android:dslv:0.6.3"
compile "com.f2prateek.progressbutton:progressbutton:2.1.0@aar"
compile "com.google.android.gms:play-services-identity:7.0.0"
compile "com.google.android.gms:play-services-plus:7.0.0"
compile 'com.google.zxing:android-integration:3.3.0'
debugCompile "com.squareup.leakcanary:leakcanary-android:1.5"
releaseCompile "com.squareup.leakcanary:leakcanary-android-no-op:1.5"
testCompile "com.squareup.leakcanary:leakcanary-android-no-op:1.5"
}
// List of sites used to create signingConfigs, sourceSets, and productFlavors.
def sites = ["ifixit", "dozuki", "accustream", "dripassist", "pva", "oscaro", "charlessmith", "aristocrat"]
android {
compileSdkVersion 26
buildToolsVersion "25.0.2"
defaultConfig {
versionCode 67
versionName "3.0.6"
minSdkVersion 14
targetSdkVersion 23
applicationId "com.dozuki.ifixit"
vectorDrawables.useSupportLibrary = true
}
signingConfigs {
for (site in sites) {
"${site}" createSiteSigningConfig(site)
}
}
buildTypes {
debug {
buildConfigField "String", "DEV_SERVER", '"' + devServer + '"'
}
release {
buildConfigField "String", "DEV_SERVER", '""'
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard.cfg'
}
}
lintOptions {
/* Check release builds but don't abort on error. */
checkReleaseBuilds true
abortOnError false
disable 'MissingTranslation'
}
/* Construct base product flavors. */
productFlavors {
for (site in sites) {
"${site}" {
signingConfig signingConfigs."${site}"
applicationId "com.dozuki.${site}"
buildConfigField "String", "SEARCH_PROVIDER_AUTHORITY", "\"com.dozuki.${site}.ui.search.SearchSuggestionProvider\""
buildConfigField "String", "SITE_NAME", '"' + site + '"'
buildConfigField "String", "APP_ID", '"' + getProperty("${site}AppId") + '"'
buildConfigField "String", "GA_PROPERTY_ID", '"' + getProperty("${site}GAPropertyId") + '"'
}
}
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
for (site in sites) {
"${site}" createSiteSourceSet(site)
}
}
}
/* Various functions to create DSL for a site. */
def createSiteSigningConfig(siteName) {
return {
storeFile file("sites/${siteName}/keystore")
keyAlias getProperty("${siteName}KeyAlias")
storePassword getProperty("${siteName}StorePassword")
keyPassword getProperty("${siteName}KeyPassword")
}
}
def createSiteSourceSet(siteName) {
if (siteName == 'dozuki') {
// Include all white label apps so we can use their themes.
return {
manifest.srcFile "sites/dozuki/AndroidManifest.xml"
res.srcDirs = ["sites/dozuki/res", "sites/ifixit/res"]
java.srcDirs = ["sites/dozuki/src", "sites/ifixit/src"]
}
} else {
return {
manifest.srcFile "sites/${siteName}/AndroidManifest.xml"
res.srcDirs = ["sites/${siteName}/res", "sites/${siteName}/site-res"]
java.srcDirs = ["sites/${siteName}/src"]
}
}
}