@@ -10,7 +10,7 @@ targets.
10
10
Before, you had only autocompletion and symbol resolution for native APIs from your host Operating System.
11
11
With CompleteKotlin, you get it for everything, regardless of your host OS:
12
12
13
- Your host OS becomes irrelevant to writing and reading code:
13
+ Your host OS becomes irrelevant to writing and reading code:
14
14
15
15
- That means writing and reading iOS, iPadOS, watchOS, tvOS, and macOS code, ** without macOS** .
16
16
- 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
33
33
34
34
### Step 1: Add the plugin
35
35
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:
38
38
39
39
``` kts
40
40
plugins {
41
- id(" com.louiscad.complete-kotlin" ) version " 1.0 .0"
41
+ id(" com.louiscad.complete-kotlin" ) version " 1.1 .0"
42
42
}
43
43
```
44
44
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
+
45
54
### Step 2: Click and wait
46
55
47
56
Then, make a Gradle sync/reload in the IDE with the best internet connection you have around, and once it's done,
0 commit comments