Skip to content

Commit 6162c08

Browse files
authored
Working/release/22.0.3 (#2739)
1 parent 6f4baa5 commit 6162c08

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

changelog.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
vNext
1+
Version 22.0.3
22
----------
3+
- [PATCH] Fix DualScreenActivity theme color constant (#2737)
34

45
Version 22.0.1
56
----------

common/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ codeCoverageReport {
2525

2626
// In dev, we want to keep the dependencies(common4j, broker4j, common) to 1.0.+ to be able to be consumed by daily dev pipeline.
2727
// In release/*, we change these to specific versions being consumed.
28-
def common4jVersion = "22.0.1"
28+
def common4jVersion = "22.0.3"
2929
if (project.hasProperty("distCommon4jVersion") && project.distCommon4jVersion != '') {
3030
common4jVersion = project.distCommon4jVersion
3131
}

common/src/main/res/values/colors.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
<color name="dialogProgress">#616161</color>
1212
<color name="certIssuerTitle">#212121</color>
1313
<color name="dialogErrorText">#D92C2C</color>
14-
<color name="white">#FFFFFF</color>
14+
<color name="com_microsoft_identity_common_white">#FFFFFF</color>
1515
</resources>

common/src/main/res/values/styles.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959

6060
<!-- Theme for DualScreenActivity.
6161
Force set to a light theme (to status and navigation bars) since broker/common activities always have white background. -->
62-
<style name="DualScreenActivityTheme" parent="Base.Theme.AppCompat.Light">
63-
<item name="android:background">@color/white</item>
62+
<style name="DualScreenActivityTheme" parent="Theme.AppCompat.Light">
63+
<item name="android:background">@color/com_microsoft_identity_common_white</item>
6464
</style>
6565
</resources>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#Wed May 12 20:08:39 UTC 2021
2-
versionName=22.0.1
2+
versionName=22.0.3
33
versionCode=1
44
latestPatchVersion=227

versioning/version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#Tue Apr 06 22:55:08 UTC 2021
2-
versionName=22.0.1
2+
versionName=22.0.3
33
versionCode=1
44
latestPatchVersion=234

0 commit comments

Comments
 (0)