material-components/material-components-android


[MAINTENANCE MODE] Modular and customizable Material Design UI components for Android

Download


Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    

Step 2. Add the dependency

	dependencies {
		implementation 'com.github.material-components:material-components-android:1.14.0'
	}
	dependencies {
		implementation("com.github.material-components:material-components-android:1.14.0")
	}
	<dependency>
	    <groupId>com.github.material-components</groupId>
	    <artifactId>material-components-android</artifactId>
	    <version>1.14.0</version>
	</dependency>

                            
    libraryDependencies += "com.github.material-components" % "material-components-android" % "1.14.0"
        
        

                            
    :dependencies [[com.github.material-components/material-components-android "1.14.0"]]
        
        

Readme


Chat

[MAINTENANCE MODE] Material Components for Android

At Google I/O 2026, Material Android announced that we're "all-in" on Compose, alongside the official Android Compose-first announcement, marking a new chapter in Android development.

This means that the Views-based Material Components for Android library (MDC-Android) is now in maintenance mode.

There are no more planned feature releases for Views, so all projects using the Views library should begin or continue migrating to Compose to get the latest Material Design and Android platform updates.

For more information, see the following resources:

Getting Started

For information on how to get started with Material Components for Android, take a look at our Getting Started guide.

Submitting Bugs or Feature Requests

For usage questions: ask on Stack Overflow.

Bugs or feature requests should be submitted at our GitHub Issues section.

Note: If your issue or feature request is for Material Jetpack Compose, please file it at the Compose Issue Tracker instead.

Useful Links

Documentation