Fixed
Status Update
Comments
da...@google.com <da...@google.com> #2
Are there many use cases for this? The current logic works fine with dark mode of platform, appcompat, and Compose.
el...@google.com <el...@google.com>
ap...@google.com <ap...@google.com> #3
When I was trying out integrating this with Now in Android, I ran into this issue since Now in Android currently doesn't inherit from AppCompatActivity
and doesn't call AppCompatDelegate.setDefaultNightMode
, so maybe the solution is instead to inherit from AppCompatActivity
instead of just ComponentActivity
to update the underlying configuration.
Description
Version used: 2.7.0-alpha01/02
Sample project:
Add the following Relation
```
@Query(
"""
SELECT * FROM team
JOIN player ON
""",
)
fun teamsWithPlayers(): Flow<Map<Team, List<Player>>>
```
I wanted to use Multimap return types
to workaround issue