File tree Expand file tree Collapse file tree 3 files changed +24
-16
lines changed Expand file tree Collapse file tree 3 files changed +24
-16
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 @@ -59,9 +59,9 @@ configurations.configureEach {
59
59
}
60
60
61
61
// semantic versioning for version code
62
- def versionMajor = 3
63
- def versionMinor = 27
64
- def versionPatch = 0
62
+ def versionMajor = 7
63
+ def versionMinor = 26
64
+ def versionPatch = 21
65
65
def versionBuild = 0 // 0-50=Alpha / 51-98=RC / 90-99=stable
66
66
67
67
@@ -105,15 +105,9 @@ android {
105
105
106
106
multiDexEnabled true
107
107
108
- versionCode versionMajor * 10000000 + versionMinor * 10000 + versionPatch * 100 + versionBuild
109
-
110
- if (versionBuild > 89 ) {
111
- versionName " ${ versionMajor} .${ versionMinor} .${ versionPatch} "
112
- } else if (versionBuild > 50 ) {
113
- versionName " ${ versionMajor} .${ versionMinor} .${ versionPatch} RC" + (versionBuild - 50 )
114
- } else {
115
- versionName " ${ versionMajor} .${ versionMinor} .${ versionPatch} Alpha" + (versionBuild + 1 )
116
- }
108
+ // using short version number for more readability for NMC
109
+ versionCode Integer . parseInt(" ${ versionMajor}${ versionMinor}${ versionPatch} " )
110
+ versionName " ${ versionMajor} .${ versionMinor} .${ versionPatch} "
117
111
118
112
// adapt structure from Eclipse to Gradle/Android Studio expectations;
119
113
// see http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Configuring-the-Structure
@@ -146,15 +140,15 @@ android {
146
140
versionDev {
147
141
applicationId " com.nextcloud.android.beta"
148
142
dimension " default"
149
- versionCode 20220322
150
- versionName " 20220322 "
143
+ versionCode 71200129
144
+ versionName " 71200129 "
151
145
}
152
146
153
147
qa {
154
148
applicationId " com.nextcloud.android.qa"
155
149
dimension " default"
156
- versionCode 1
157
- versionName " 1"
150
+ versionCode 74
151
+ versionName " 1.74 "
158
152
}
159
153
}
160
154
Original file line number Diff line number Diff line change 19
19
<string name =" default_display_name_for_root_folder" >Nextcloud</string >
20
20
<string name =" nextcloud_user_agent" >Mozilla/5.0 (Android) Nextcloud-android/%1$s</string >
21
21
<string name =" only_office_user_agent" >Mozilla/5.0 (Android %1$s) Mobile Nextcloud-android/%2$s</string >
22
+ <!-- todo need to enabled the below code later for NMC -->
23
+ <!-- <string name="nextcloud_user_agent">Mozilla/5.0 (Android) MagentaCLOUD-android/%1$s</string>
24
+ <string name="only_office_user_agent">Mozilla/5.0 (Android %1$s) Mobile MagentaCLOUD-android/%2$s</string>-->
22
25
23
26
<!-- URLs and flags related -->
24
27
<bool name =" show_server_url_input" >true</bool >
You can’t perform that action at this time.
0 commit comments