| import androidx.build.Publish |
| |
| plugins { |
| id("AndroidXPlugin") |
| id("com.android.library") |
| id("org.jetbrains.kotlin.android") |
| } |
| |
| dependencies { |
| // Atomic group |
| constraints { |
| implementation(project(":core:core")) |
| } |
| |
| api(libs.kotlinStdlib) |
| api("androidx.annotation:annotation:1.1.0") |
| api(project(":core:core")) |
| |
| androidTestImplementation(libs.junit) |
| androidTestImplementation(libs.testExtJunit) |
| androidTestImplementation(libs.testCore) |
| androidTestImplementation(libs.testRunner) |
| androidTestImplementation(libs.testRules) |
| androidTestImplementation(libs.truth) |
| androidTestImplementation(project(":internal-testutils-truth")) |
| } |
| |
| androidx { |
| name = "Core Kotlin Extensions" |
| publish = Publish.SNAPSHOT_AND_RELEASE |
| mavenVersion = LibraryVersions.CORE |
| inceptionYear = "2018" |
| description = "Kotlin extensions for 'core' artifact" |
| } |
| |
| android { |
| namespace "androidx.core.ktx" |
| } |