Pier Angelo Vendrame pushed to branch tor-browser-140.2.0esr-15.0-1 at The Tor Project / Applications / Tor Browser

Commits:

1 changed file:

Changes:

  • mobile/android/shared-settings.gradle
    ... ... @@ -164,16 +164,7 @@ gradle.projectsLoaded { ->
    164 164
                     rename { 'manifest.json' }
    
    165 165
                     into extDir
    
    166 166
     
    
    167
    -                // android-components#40013: overwrite the timestamp in
    
    168
    -                // extension version to ensure build reproducibility. 
    
    169
    -                def systemEnvBuildDate = System.getenv('MOZ_BUILD_DATE')
    
    170
    -                // MOZ_BUILD_DATE is in the YYYYMMDDHHMMSS format. Thus, we only use a
    
    171
    -                // substring of it if it is available.
    
    172
    -                def values = ['version': rootProject.ext.config.componentsVersion + "." +
    
    173
    -                        (systemEnvBuildDate != null ?
    
    174
    -                                systemEnvBuildDate.substring(4) :
    
    175
    -                                new Date().format('MMddHHmmss'))]
    
    176
    -
    
    167
    +                def values = ['version': getManifestVersionString(rootProject.ext.config.componentsVersion)]
    
    177 168
                     inputs.properties(values)
    
    178 169
                     expand(values)
    
    179 170
                 }