plugins { | |
id("AndroidXPlugin") | |
id("com.android.application") | |
} | |
dependencies { | |
implementation(project(":appcompat:appcompat")) | |
implementation(project(":mediarouter:mediarouter")) | |
implementation("androidx.concurrent:concurrent-futures:1.1.0") | |
} | |
android { | |
buildTypes { | |
release { | |
minifyEnabled = true | |
proguardFiles getDefaultProguardFile("proguard-android-optimize.txt") | |
} | |
} | |
defaultConfig { | |
vectorDrawables.useSupportLibrary = true | |
} | |
namespace "com.example.androidx.mediarouting" | |
} |