Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
TousAntiCovid sources
TousAntiCovid Android
Commits
33067557
Commit
33067557
authored
Mar 10, 2021
by
stopcovid@lunabee.com
Browse files
Update to 2.3.1
- Fix configuration and calibration not updated
parent
608d724c
Changes
2
Hide whitespace changes
Inline
Side-by-side
robert/src/main/java/com/lunabeestudio/robert/RobertManagerImpl.kt
View file @
33067557
...
...
@@ -284,14 +284,14 @@ class RobertManagerImpl(
}
private
fun
handleConfigChange
(
configuration
:
Configuration
)
{
if
(
configuration
.
version
!
=
keystoreRepository
.
configuration
?.
version
?:
-
1
)
{
if
(
configuration
.
version
<
=
keystoreRepository
.
configuration
?.
version
?:
-
1
)
{
return
}
keystoreRepository
.
configuration
=
configuration
}
private
fun
handleCalibrationChange
(
calibration
:
Calibration
)
{
if
(
calibration
.
version
!
=
keystoreRepository
.
calibration
?.
version
?:
-
1
)
{
if
(
calibration
.
version
<
=
keystoreRepository
.
calibration
?.
version
?:
-
1
)
{
return
}
keystoreRepository
.
calibration
=
calibration
...
...
stopcovid/build.gradle
View file @
33067557
...
...
@@ -43,8 +43,8 @@ android {
applicationId
"fr.gouv.android.stopcovid"
minSdkVersion
21
targetSdkVersion
30
versionCode
1
7
8
versionName
"2.3.
0
"
versionCode
18
0
versionName
"2.3.
1
"
testInstrumentationRunner
"androidx.test.runner.AndroidJUnitRunner"
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment