-
-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy pathbuild.gradle
More file actions
87 lines (78 loc) · 2.18 KB
/
Copy pathbuild.gradle
File metadata and controls
87 lines (78 loc) · 2.18 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
apply from: 'buildsystem/dependencies.gradle'
buildscript {
ext.kotlin_version = '2.4.0'
repositories {
mavenCentral()
google()
}
dependencies {
// before upgrading AGP, check https://gitlab.com/fdroid/admin/-/issues/593
classpath 'com.android.tools.build:gradle:8.13.2'
classpath 'org.greenrobot:greendao-gradle-plugin:3.3.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.7.1.1"
}
}
def getVersionCode = { ->
try {
def branchName = new ByteArrayOutputStream()
exec {
commandLine 'git', 'rev-parse', '--abbrev-ref', 'HEAD'
standardOutput = branchName
}
def appBuild = new ByteArrayOutputStream()
exec {
commandLine 'git', 'rev-list', '--count', branchName.toString().trim()
standardOutput = appBuild
}
return Integer.parseInt(appBuild.toString().trim()) + 1958 // adding 1958 for legacy reasons
}
catch (ignored) {
return -1
}
}
allprojects {
ext {
androidApplicationId = 'org.cryptomator'
androidVersionCode = getVersionCode() // must be getVersionCode(). only at release tag set the actual value
androidVersionName = '2.1.0-SNAPSHOT'
}
repositories {
mavenCentral()
maven {
url "https://maven.google.com"
}
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
def getApiKey(key) {
if (liteFlavor()) {
return ""
}
def resolvedKey = freemiumFlavor() ? freemiumOnedriveKey(key) : key
return System.getenv().getOrDefault(resolvedKey, getApiKeyLocal(resolvedKey))
}
def liteFlavor() {
gradle.startParameter.taskNames.stream().filter(t -> t.toLowerCase().contains("lite")).findAny().isPresent()
}
def freemiumFlavor() {
gradle.startParameter.taskNames.stream().filter(t -> t.toLowerCase().contains("playstoreiap")).findAny().isPresent()
}
def getApiKeyLocal(key) {
if (!rootProject.file(".env").exists()) {
return ""
}
def localPropertyList = new Properties()
localPropertyList.load(new FileInputStream(rootProject.file(".env")))
return localPropertyList.getOrDefault(key, "")
}
// ONEDRIVE_API_KEY -> ONEDRIVE_API_KEY_FREEMIUM
def freemiumOnedriveKey(key) {
if (!key.startsWith("ONEDRIVE_API_")) {
return key
}
return key + "_FREEMIUM"
}