Skip to content

Commit 60c5d7e

Browse files
committed
Fix according to requested change.
Remove RootPreview and PreviewRootComponent in androidMain. Retains only commonMain previews. #20 (review)
1 parent 96a9c02 commit 60c5d7e

File tree

4 files changed

+2
-46
lines changed

4 files changed

+2
-46
lines changed

compose-ui/build.gradle.kts

-7
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,8 @@ android {
6363
minSdk = libs.versions.android.minSdk.get().toInt()
6464
}
6565

66-
buildFeatures { compose = true }
67-
6866
compileOptions {
6967
sourceCompatibility = JavaVersion.VERSION_11
7068
targetCompatibility = JavaVersion.VERSION_11
7169
}
7270
}
73-
74-
dependencies {
75-
// https://stackoverflow.com/a/68224436/1562087
76-
debugImplementation(compose.uiTooling)
77-
}

compose-ui/src/androidMain/kotlin/com/example/myapplication/root/RootPreview.kt

-14
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package com.example.myapplication.shared.main
22

33
object PreviewMainComponent : MainComponent {
4-
override fun onShowWelcomeClicked() = Unit
5-
}
4+
override fun onShowWelcomeClicked() {}
5+
}

shared/src/commonMain/kotlin/com/example/myapplication/shared/root/PreviewRootComponent.kt

-23
This file was deleted.

0 commit comments

Comments
 (0)