Skip to content

Commit

Permalink
Fix the README
Browse files Browse the repository at this point in the history
  • Loading branch information
qiaoyuang committed Nov 24, 2023
1 parent 735a783 commit 8327f6a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies {
}
```

Current version based on `Kotlin 1.9.10` and `MMKV 1.3.1`.
Current version based on `Kotlin 1.9.20` and `MMKV 1.3.2`.

Pure Android platform (kts):

Expand Down Expand Up @@ -94,7 +94,7 @@ import com.ctrip.flight.mmkv.initialize
// In iOS source set
fun initializeMMKV(rootDir: String) {
initialize(rootDir)
Log.d("MMKV Path", rootDir)
println("MMKV Path: $rootDir")
}
```

Expand Down
6 changes: 3 additions & 3 deletions README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ Kotlin Multiplatform Common (kts):

```kotlin
dependencies {
implementation("com.ctrip.flight.mmkv:mmkv-kotlin:1.2.7")
implementation("com.ctrip.flight.mmkv:mmkv-kotlin:1.2.9")
}
```

当前版本依赖于 `Kotlin 1.9.10` 以及 `MMKV 1.3.1`
当前版本依赖于 `Kotlin 1.9.20` 以及 `MMKV 1.3.2`

纯 Android 平台(kts):

Expand Down Expand Up @@ -92,7 +92,7 @@ import com.ctrip.flight.mmkv.initialize
// In iOS source set
fun initializeMMKV(rootDir: String) {
initialize(rootDir)
Log.d("MMKV Path", rootDir)
println("MMKV Path: $rootDir")
}
```

Expand Down

0 comments on commit 8327f6a

Please sign in to comment.