@@ -10,7 +10,7 @@ targets.
1010Before, you had only autocompletion and symbol resolution for native APIs from your host Operating System.
1111With CompleteKotlin, you get it for everything, regardless of your host OS:
1212
13- Your host OS becomes irrelevant to writing and reading code:
13+ Your host OS becomes irrelevant to writing and reading code:
1414
1515- That means writing and reading iOS, iPadOS, watchOS, tvOS, and macOS code, ** without macOS** .
1616- That also means writing and reading Linux MIPS code, ** without Linux** .
@@ -33,15 +33,24 @@ and a bit, or a lot of waiting, depending on your connection and your computer p
3333
3434### Step 1: Add the plugin
3535
36- Take the ` settings .gradle(.kts)` file located at the root of your Kotlin Multiplatform project,
37- and add the following at the top of the file, but below the ` pluginManagement ` block if you have any :
36+ Take the ` build .gradle(.kts)` file located at the root of your Kotlin Multiplatform project,
37+ and add the following at the top of the file:
3838
3939``` kts
4040plugins {
41- id(" com.louiscad.complete-kotlin" ) version " 1.0 .0"
41+ id(" com.louiscad.complete-kotlin" ) version " 1.1 .0"
4242}
4343```
4444
45+ That will apply CompleteKotlin to all Kotlin multiplatform modules.
46+
47+ If you're using [ refreshVersions] ( https://github.com/jmfayard/refreshVersions ) and don't want to miss any update,
48+ you can omit the version in the snippet above, and add the following in your ` versions.properties ` file instead:
49+
50+ ``` properties
51+ plugin.com.louiscad.complete-kotlin =1.1.0
52+ ```
53+
4554### Step 2: Click and wait
4655
4756Then, make a Gradle sync/reload in the IDE with the best internet connection you have around, and once it's done,
0 commit comments