diff --git a/README.md b/README.md index 080ab44..8684375 100644 --- a/README.md +++ b/README.md @@ -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): @@ -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") } ``` diff --git a/README_CN.md b/README_CN.md index 11f1d6e..783fddc 100644 --- a/README_CN.md +++ b/README_CN.md @@ -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): @@ -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") } ```