2.1 KiB
How to use Material Components for Android
Material Components for Android is available through Android's SDK manager. To use it:
- Make sure you've downloaded the Android Support Repository using the SDK Manager.
- Open the build.gradle file for your application.
- Add the library to the dependencies section:
dependencies {
// ...
compile 'com.android.support:design:[Library version code]'
// ...
}
Contributors
Material Components for Android welcomes contributions from the community. Check out our contributing guidelines as well as an overview of the directory structure before getting started.
To make a contribution, you'll need to be able to build the library from source and run our tests.
Building from source
If you'll be contributing to the library, or need a version newer than what has been released in the Android support libraries, Material Components for Android can also be built from source. To do so:
Clone the repository:
git clone https://github.com/material-components/material-components-android.git
Then, build an AAR using Gradle:
./gradlew assembleRelease
(the AAR file will be located in lib/build/outputs/aar/)
Running tests
Material Components for Android has JVM tests as well as Emulator tests.
To run the JVM tests, do:
./gradlew test
To run the emulator tests, ensure you have a virtual device set up and do:
./gradlew connectedAndroidTest