Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
leandrofavarin committed Sep 22, 2021
1 parent 105eae4 commit 0222bc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/posts/local-kmm.md
Expand Up @@ -98,7 +98,7 @@ kotlin {
Finally you will want to generate the `.podspec`, which you can do by running `./gradlew :my-module:podspec`.
The output may need to be manually changed to adhere to your published artifact's naming; in our case
the generated `.podspec` referred to the module name `umbrella` where we instead want it to use
the framework name `CaskKt`, so we had to rename from `umbrella.podspec` to `CashKt.podspec` and change
the framework name `CashKt`, so we had to rename from `umbrella.podspec` to `CashKt.podspec` and change
the `spec.name` property inside as well.

Now in your actual iOS repository you can swap out this line of code in `Podfile`:
Expand All @@ -114,4 +114,4 @@ To this:
pod 'MyArtifact', :path => 'path/to/mobile-multiplatform/my-module/'
```

And running the iOS app will first build your local version of the multiplatform code and then run it. Yay!
And running the iOS app will first build your local version of the multiplatform code and then run it. Yay!

0 comments on commit 0222bc1

Please sign in to comment.