Skip to content

Commit 670eecc

Browse files
committed
Replace all occurrences of "androidxCommon"/"AndroidxCommon" with "composeUi"/"ComposeUi" in files and filenames
To replace strings in the filenames, the "rename" program is installed and the following command is run: ```sh find . -name "*androidxCommon*" -exec rename 's/androidxCommon/composeUi/' {} ";" find . -name "*AndroidxCommon*" -exec rename 's/AndroidxCommon/ComposeUi/' {} ";" ```
1 parent fccc380 commit 670eecc

File tree

115 files changed

+173
-172
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+173
-172
lines changed

README.md

Lines changed: 2 additions & 1 deletion

buildSrc/src/main/kotlin/lib-conventions-without-publishing.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ kotlin {
1616
@OptIn(ExperimentalKotlinGradlePluginApi::class)
1717
applyDefaultHierarchyTemplate {
1818
common {
19-
group("androidxCommon") {
19+
group("composeUi") {
2020
withJvm()
2121
withAndroidTarget()
2222
group("ios")
@@ -27,10 +27,10 @@ kotlin {
2727

2828
/*
2929
sourceSets {
30-
val androidxCommonMain by creating { dependsOn(commonMain.get()) }
31-
jvmMain { dependsOn(androidxCommonMain) }
32-
iosMain { dependsOn(androidxCommonMain) }
33-
named("wasmJsMain") { dependsOn(androidxCommonMain) }
30+
val composeUiMain by creating { dependsOn(commonMain.get()) }
31+
jvmMain { dependsOn(composeUiMain) }
32+
iosMain { dependsOn(composeUiMain) }
33+
named("wasmJsMain") { dependsOn(composeUiMain) }
3434
}
3535
*/
3636
}

common/api/android/compose-multiplatform-html-unified-common.api

Lines changed: 32 additions & 32 deletions
Large diffs are not rendered by default.

common/api/jvm/compose-multiplatform-html-unified-common.api

Lines changed: 33 additions & 33 deletions
Large diffs are not rendered by default.

common/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ kotlin {
1010
@OptIn(ExperimentalKotlinGradlePluginApi::class)
1111
applyDefaultHierarchyTemplate {
1212
common {
13-
group("androidxCommon") {
14-
group("androidxCommonExceptAndroid") {
13+
group("composeUi") {
14+
group("composeUiExceptAndroid") {
1515
withJvm()
1616
group("ios")
1717
withWasmJs()
@@ -44,7 +44,7 @@ kotlin {
4444
implementation("org.jetbrains.compose.annotation-internal:annotation:${DependencyVersions.composeMultiplatform}")
4545
}
4646
}
47-
androidxCommonMain {
47+
composeUiMain {
4848
dependencies {
4949
api(compose.foundation)
5050
implementation(compose.ui)

common/legacy/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ kotlin {
1010
//compileOnly(compose.foundation) // for KDoc element links only
1111
}
1212
}
13-
androidxCommonMain {
13+
composeUiMain {
1414
dependencies {
1515
api(compose.foundation)
1616
}

0 commit comments

Comments
 (0)