mirror of
https://github.com/material-components/material-components-android.git
synced 2026-01-20 03:51:33 +08:00
This also bumps up the build tools + Android gradle plugin version, since these were out of date, and removes a couple unused version values. PiperOrigin-RevId: 153652782
1.4 KiB
1.4 KiB
Material Components for Android
Getting Started
Using the support library version
For most users, the Android Design support library is the best version to use in their application. The Android SDK contains the latest stable version of this library. To use it:
- Make sure you've downloaded the Android Support Repository using the SDK Manager.
- Open the
build.gradlefile for your application. - Add the Design support library to the
dependenciessection:
dependencies {
// ...
compile 'com.android.support:design:25.3.1'
// ...
}
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 this 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