From 7b632d1f7a003b06250b7cf7172f4547044900d9 Mon Sep 17 00:00:00 2001 From: Guilherme Delgado Date: Sat, 6 Jul 2024 12:49:59 +0100 Subject: [PATCH 1/2] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index e0efa29..d476efd 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,8 @@ To annotate the parameter as the composable state variable (for **advanced** use > [!IMPORTANT] > Only 0 or 1 `@ComposeUIViewControllerState` and an arbitrary number of parameter types (excluding `@Composable`) are allowed in `@ComposeUIViewController` functions. > For more information consult the [ProcessorTest.kt](kmp-composeuiviewcontroller-ksp/src/test/kotlin/composeuiviewcontroller/ProcessorTest.kt) file from `kmp-composeuiviewcontroller-ksp`. +> +> The `@ComposeUIViewController` includes a `frameworkBaseName` parameter, allowing you to specify a framework name manually. While the plugin typically attempts to retrieve this name automatically, you can use this parameter to enforce a specific name if the automatic retrieval fails. #### Examples From f8f6abf22da5709bde9f7b67278c89064e60cb23 Mon Sep 17 00:00:00 2001 From: Guilherme Delgado Date: Sat, 6 Jul 2024 12:55:47 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15993be..c0242bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ > > It means that the "Shared" framework will include all this external dependencies (from the "SharedModel" in this case) sand will generate new types to reference those external types. That's why we endup having `Shared_modelsHello` instead of just `Hello`. +Modules that provide external dependencies must include the plugin in their `build.gradle`. ---