Home | History | Annotate | Download | only in SupportDesignDemos
      1 import static androidx.build.dependencies.DependenciesKt.SUPPORT_DESIGN
      2 
      3 plugins {
      4     id("SupportAndroidTestAppPlugin")
      5 }
      6 
      7 dependencies {
      8     implementation(SUPPORT_DESIGN, libs.exclude_for_material)
      9     implementation(project(":transition"))
     10     implementation(project(":recyclerview"))
     11     implementation(project(":appcompat"))
     12     implementation(project(":cardview"))
     13 }
     14 
     15 android {
     16     defaultConfig {
     17         vectorDrawables.useSupportLibrary = true
     18     }
     19 }
     20