Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor Browser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Applications
Tor Browser
Commits
f9eb3e7e
Verified
Commit
f9eb3e7e
authored
Oct 2, 2020
by
Georg Koppen
Committed by
Pier Angelo Vendrame
11 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Bug 40013: [android] Add option do overwrite timestamp in extension version
parent
d0a76a97
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!1222
Bug 43166: Rebased alpha onto 128.3.0esr
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
mobile/android/shared-settings.gradle
+9
-1
9 additions, 1 deletion
mobile/android/shared-settings.gradle
with
9 additions
and
1 deletion
mobile/android/shared-settings.gradle
+
9
−
1
View file @
f9eb3e7e
...
...
@@ -163,7 +163,15 @@ gradle.projectsLoaded { ->
rename
{
'manifest.json'
}
into
extDir
def
values
=
[
'version'
:
getManifestVersionString
(
rootProject
.
ext
.
config
.
componentsVersion
)]
def
systemEnvBuildDate
=
System
.
getenv
(
'MOZ_BUILD_DATE'
)
// MOZ_BUILD_DATE is in the YYYYMMDDHHMMSS format. Thus, we only use a
// substring of it if it is available.
def
values
=
[
'version'
:
rootProject
.
ext
.
config
.
componentsVersion
+
"."
+
(
systemEnvBuildDate
!=
null
?
systemEnvBuildDate
.
substring
(
4
)
:
new
Date
().
format
(
'MMddHHmmss'
))]
inputs
.
properties
(
values
)
expand
(
values
)
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment