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 @@ -57,9 +57,9 @@ configurations.configureEach {
57
57
}
58
58
59
59
// semantic versioning for version code
60
- def versionMajor = 3
60
+ def versionMajor = 7
61
61
def versionMinor = 26
62
- def versionPatch = 0
62
+ def versionPatch = 21
63
63
def versionBuild = 0 // 0-50=Alpha / 51-98=RC / 90-99=stable
64
64
65
65
@@ -104,15 +104,9 @@ android {
104
104
105
105
multiDexEnabled true
106
106
107
- versionCode versionMajor * 10000000 + versionMinor * 10000 + versionPatch * 100 + versionBuild
108
-
109
- if (versionBuild > 89 ) {
110
- versionName " ${ versionMajor} .${ versionMinor} .${ versionPatch} "
111
- } else if (versionBuild > 50 ) {
112
- versionName " ${ versionMajor} .${ versionMinor} .${ versionPatch} RC" + (versionBuild - 50 )
113
- } else {
114
- versionName " ${ versionMajor} .${ versionMinor} .${ versionPatch} Alpha" + (versionBuild + 1 )
115
- }
107
+ // using short version number for more readability for NMC
108
+ versionCode Integer . parseInt(" ${ versionMajor}${ versionMinor}${ versionPatch} " )
109
+ versionName " ${ versionMajor} .${ versionMinor} .${ versionPatch} "
116
110
117
111
// adapt structure from Eclipse to Gradle/Android Studio expectations;
118
112
// see http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Configuring-the-Structure
@@ -145,15 +139,15 @@ android {
145
139
versionDev {
146
140
applicationId " com.nextcloud.android.beta"
147
141
dimension " default"
148
- versionCode 20220322
149
- versionName " 20220322 "
142
+ versionCode 71200129
143
+ versionName " 71200129 "
150
144
}
151
145
152
146
qa {
153
147
applicationId " com.nextcloud.android.qa"
154
148
dimension " default"
155
- versionCode 1
156
- versionName " 1"
149
+ versionCode 74
150
+ versionName " 1.74 "
157
151
}
158
152
}
159
153
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<resources >
3
3
<!-- Beta indicator -->
4
- <bool name =" is_beta" >true </bool >
4
+ <bool name =" is_beta" >false </bool >
5
5
<bool name =" dev_version_direct_download_enabled" >false</bool >
6
6
7
7
<!-- App name and other strings-->
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