Skip to content

Commit

Permalink
Merge pull request #76 from qiaoyuang/main
Browse files Browse the repository at this point in the history
Fix some documents
  • Loading branch information
qiaoyuang authored Jan 24, 2024
2 parents 0df6cec + c594567 commit 573a9d4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion sqllin-driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Since `1.2.0`, SQLlin started to support JVM target, and it's base on [sqlite-jd
## Basic usage

I don't recommend you use _sqllin-driver_ in your application projects directly, but if you want to develop your own SQLite
high-level API library, you can use it.
high-level API library, you can use it as your underlying driver.

### Installation via Maven in Gradle

Expand Down
4 changes: 2 additions & 2 deletions sqllin-driver/README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
所以我们需要 _sqllin-driver_ ,并且 _sqllin-dsl_ 要基于它。我们的目标是编写 Kotlin Multiplatform common
source set 可用的通用 API,并且它们在不同的平台有不同的实现。

在 Android 上,并没有太多的方法可供我们选择。如果我们使用 Android Framework SQLite JAVA
在 Android 上,并没有太多的方法可供我们选择。如果我们使用 Android Framework SQLite Java
API,事情将会变得非常简单,但是缺点是很多 SQLite 参数不能再 Android P 以下版本的系统上生效。如果我们自己编写
JNI 代码去调用 SQLite C 函数,看起来可以解决这个问题,但是会遇到一个更大的问题:在版本高于 Android N
的系统上,Google 不允许开发者在 NDK 中调用系统内置的 SQLite C 函数。如果我们坚定地选择这条路,我们必须自己将
Expand All @@ -30,7 +30,7 @@ Windows(mingwX86, mingwX64)。

## 基本用法

我不建议您在应用程序工程中直接使用 _sqllin-driver_ ,但是如果你想开发自己的 SQLite 高阶 API 库,你可以使用它
我不建议你在应用程序工程中直接使用 _sqllin-driver_ ,但是如果你想开发自己的 SQLite 高阶 API 库,你可以选择使用它作为底层驱动

### 在 Gradle 中通过 Maven 引入

Expand Down
2 changes: 1 addition & 1 deletion sqllin-dsl/doc/getting-start-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ plugins {
id("com.google.devtools.ksp")
}

val sqllinVersion = "1.2.3"
val sqllinVersion = "1.2.4"

kotlin {
// ......
Expand Down
2 changes: 1 addition & 1 deletion sqllin-dsl/doc/getting-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ plugins {
id("com.google.devtools.ksp")
}

val sqllinVersion = "1.2.3"
val sqllinVersion = "1.2.4"

kotlin {
// ......
Expand Down
2 changes: 1 addition & 1 deletion sqllin-processor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ publishing {
artifactId = "sqllin-processor"
setArtifacts(
listOf(
"$projectDir/build/libs/sqllin-processor-$version.jar",
"${layout.buildDirectory}/libs/sqllin-processor-$version.jar",
javadocJar, sourceJar,
)
)
Expand Down

0 comments on commit 573a9d4

Please sign in to comment.