blob: 5ec869d25a56856ba4ed99e7b8e6fedcc07a223f [file] [log] [blame]
plugins {
id("AndroidXPlugin")
id("com.android.application")
}
dependencies {
implementation(project(":appcompat:appcompat"))
implementation(project(":mediarouter:mediarouter"))
implementation(project(":recyclerview:recyclerview"))
implementation("androidx.concurrent:concurrent-futures:1.1.0")
implementation(libs.material)
}
android {
buildTypes {
release {
minifyEnabled = true
proguardFiles getDefaultProguardFile("proguard-android-optimize.txt")
}
}
defaultConfig {
vectorDrawables.useSupportLibrary = true
}
lint {
baseline = file("lint-baseline.xml")
}
namespace "com.example.androidx.mediarouting"
}