Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1908,7 +1908,8 @@ private FabWithLabelView initFabTitle(
SpeedDialActionItem.Builder builder =
new SpeedDialActionItem.Builder(id, icon)
.setLabel(fabTitle)
.setFabBackgroundColor(iconSkin);
.setFabBackgroundColor(iconSkin)
.setFabImageTintColor(Color.WHITE);

switch (getAppTheme()) {
case LIGHT:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ subprojects {
}
}
dependencies {
compileOnly 'com.github.pengrad:jdk9-deps:1.0'
// compileOnly 'com.github.pengrad:jdk9-deps:1.0'
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@TranceLove what were this dependency used for? this causes the build failure. the builds pass even without this; can we safely remove it?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was introduced when moving towards JDK 9 per #1941. Perhaps this is no longer needed when officially Android apps can build with JDK 11/17?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was introduced when moving towards JDK 9 per #1941. Perhaps this is no longer needed when officially Android apps can build with JDK 11/17?

Code complies & the tests pass -- shouldn't it be good? 🤔


if (project.hasProperty('kapt')) {
kapt 'javax.xml.bind:jaxb-api:2.3.1'
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ glide = "4.14.2"
sshj = "0.35.0"
jcifs = "2.1.9"
eventbus = "3.3.1"
fabSpeedDial = "3.1.1"
fabSpeedDial = "3.3.0"
room = "2.5.2"
bouncyCastle = "1.76"
awaitility = "3.1.6"
Expand Down