blob: 9f763aefc6707c15ea2b569515e22596d8a02038 [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")
}
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"
}