blob: e77dd1c010b466d507fd65d737fe0220db4d30d8 [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.
*/
import androidx.build.SoftwareType
plugins {
id("AndroidXPlugin")
id("com.android.library")
}
dependencies {
api(libs.jspecify)
api("androidx.annotation:annotation:1.8.1")
api("androidx.core:core:1.6.0")
api("androidx.versionedparcelable:versionedparcelable:1.1.1")
testImplementation(libs.testCore)
testImplementation(libs.testRunner)
implementation "androidx.core:core-ktx:1.6.0"
annotationProcessor(project(":versionedparcelable:versionedparcelable-compiler"))
}
android {
defaultConfig {
minSdk { version = release(25) }
}
namespace = "androidx.wear.ongoing"
}
androidx {
name = "Android Wear Ongoing"
type = SoftwareType.PUBLISHED_LIBRARY
mavenVersion = LibraryVersions.WEAR_ONGOING
inceptionYear = "2021"
description = "Android Wear Ongoing Activities"
enableRobolectric()
}