blob: 26ddb15f413a217dfc3d3a5ca411f738620780c8 [file] [edit]
/**
* This file was created using the `createProject` gradle task (./gradlew createProject)
*
* Please use the task when creating a new project, rather than copying an existing project and
* modifying its settings.
*/
plugins {
id("AndroidXPlugin")
id("AndroidXComposePlugin")
id("com.android.application")
}
dependencies {
api(libs.jspecify)
implementation(project(":appcompat:appcompat"))
implementation(project(":mediarouter:mediarouter"))
implementation(project(":recyclerview:recyclerview"))
implementation(project(":concurrent:concurrent-futures"))
implementation(project(":swiperefreshlayout:swiperefreshlayout"))
implementation(project(":compose:material3:material3"))
implementation(libs.androidx.activity.compose)
implementation(libs.material)
implementation(libs.guava)
}
android {
buildTypes {
release {
minifyEnabled = true
shrinkResources = true
proguardFiles getDefaultProguardFile("proguard-android-optimize.txt")
}
}
compileSdk {
version = release(37)
}
defaultConfig {
vectorDrawables.useSupportLibrary = true
}
lint {
baseline = file("lint-baseline.xml")
}
namespace = "com.example.androidx.mediarouting"
}