Skip to content

Commit 573a9d4

Browse files
authored
Merge pull request #76 from qiaoyuang/main
Fix some documents
2 parents 0df6cec + c594567 commit 573a9d4

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

sqllin-driver/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Since `1.2.0`, SQLlin started to support JVM target, and it's base on [sqlite-jd
4141
## Basic usage
4242

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

4646
### Installation via Maven in Gradle
4747

sqllin-driver/README_CN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
所以我们需要 _sqllin-driver_ ,并且 _sqllin-dsl_ 要基于它。我们的目标是编写 Kotlin Multiplatform common
77
source set 可用的通用 API,并且它们在不同的平台有不同的实现。
88

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

3131
## 基本用法
3232

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

3535
### 在 Gradle 中通过 Maven 引入
3636

sqllin-dsl/doc/getting-start-cn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ plugins {
1414
id("com.google.devtools.ksp")
1515
}
1616

17-
val sqllinVersion = "1.2.3"
17+
val sqllinVersion = "1.2.4"
1818

1919
kotlin {
2020
// ......

sqllin-dsl/doc/getting-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ plugins {
1616
id("com.google.devtools.ksp")
1717
}
1818

19-
val sqllinVersion = "1.2.3"
19+
val sqllinVersion = "1.2.4"
2020

2121
kotlin {
2222
// ......

sqllin-processor/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ publishing {
4141
artifactId = "sqllin-processor"
4242
setArtifacts(
4343
listOf(
44-
"$projectDir/build/libs/sqllin-processor-$version.jar",
44+
"${layout.buildDirectory}/libs/sqllin-processor-$version.jar",
4545
javadocJar, sourceJar,
4646
)
4747
)

0 commit comments

Comments
 (0)