File tree Expand file tree Collapse file tree 2 files changed +19
-14
lines changed Expand file tree Collapse file tree 2 files changed +19
-14
lines changed Original file line number Diff line number Diff line change
1
+ Although the code for this android client is free and available under the GPL2 license, Deutsche Telekom
2
+ (including T-Systems) fully reserves all rights to the Telekom brand. To prevent users from getting confused about
3
+ the source of a digital product or experience, there are stringent restrictions on using the Telekom brand and design,
4
+ even when built into code that we provide. For any customization other than explicitly for Telekom or T-Systems, you must
5
+ replace the Deutsche Telekom and T-Systems brand elements contained in the provided sources.
6
+
7
+ To help you identify the brand elements, see:
8
+ ./drawable: folder contains brand-design specific icons or images
9
+ Brand-protected Magenta colour definitions are (unfortunately) spread over the source code.
10
+
11
+
1
12
GNU GENERAL PUBLIC LICENSE
2
13
Version 2, June 1991
3
14
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ configurations.configureEach {
61
61
}
62
62
63
63
// semantic versioning for version code
64
- def versionMajor = 3
64
+ def versionMajor = 7
65
65
def versionMinor = 29
66
66
def versionPatch = 0
67
67
def versionBuild = 0 // 0-50=Alpha / 51-98=RC / 90-99=stable
@@ -107,15 +107,9 @@ android {
107
107
108
108
multiDexEnabled true
109
109
110
- versionCode versionMajor * 10000000 + versionMinor * 10000 + versionPatch * 100 + versionBuild
111
-
112
- if (versionBuild > 89 ) {
113
- versionName " ${ versionMajor} .${ versionMinor} .${ versionPatch} "
114
- } else if (versionBuild > 50 ) {
115
- versionName " ${ versionMajor} .${ versionMinor} .${ versionPatch} RC" + (versionBuild - 50 )
116
- } else {
117
- versionName " ${ versionMajor} .${ versionMinor} .${ versionPatch} Alpha" + (versionBuild + 1 )
118
- }
110
+ // using short version number for more readability for NMC
111
+ versionCode Integer . parseInt(" ${ versionMajor}${ versionMinor}${ versionPatch} " )
112
+ versionName " ${ versionMajor} .${ versionMinor} .${ versionPatch} "
119
113
120
114
// adapt structure from Eclipse to Gradle/Android Studio expectations;
121
115
// see http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Configuring-the-Structure
@@ -152,15 +146,15 @@ android {
152
146
versionDev {
153
147
applicationId " com.nextcloud.android.beta"
154
148
dimension " default"
155
- versionCode 20220322
156
- versionName " 20220322 "
149
+ versionCode 71200129
150
+ versionName " 71200129 "
157
151
}
158
152
159
153
qa {
160
154
applicationId " com.nextcloud.android.qa"
161
155
dimension " default"
162
- versionCode 1
163
- versionName " 1"
156
+ versionCode 74
157
+ versionName " 1.74 "
164
158
}
165
159
}
166
160
You can’t perform that action at this time.
0 commit comments