1

I've been trying to do everything according to Migrating to Material Design 3, but nothing worked.

Android Studio can't see Theme.Material3.

My current project uses Theme.MaterialComponents.

MariosP
  • 8,300
  • 1
  • 9
  • 30
Hexley21
  • 566
  • 7
  • 16

1 Answers1

3

All I had to do was to replace dependencies in the gradle folder:

implementation 'com.google.android.material:material:1.4.0'  

to

implementation 'com.google.android.material:material:1.5.0-beta01'

I found the solution in Getting started with Material Components for Android - Migration guidance

Kirby
  • 15,127
  • 10
  • 89
  • 104
Hexley21
  • 566
  • 7
  • 16