Skip to content

Commit

Permalink
更新至 Nv1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
SageMik committed Dec 14, 2024
1 parent 3ef8645 commit 866468a
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
若要在 Android 项目中使用,由于 [Simple](https://github.com/wangfenjin/simple) 基于 [SQLite FTS5 Extension](https://sqlite.org/fts5.html) ,而 Android 内置的 SQLite 并未启用 FTS5,故需要自行替换为支持的版本如 [sqlite-android](https://github.com/requery/sqlite-android) ,并自行加载扩展。

```gradle
implementation("io.github.sagemik:simple-native-android:1.0.1")
implementation("io.github.sagemik:simple-native-android:1.0.2")
```
8 changes: 4 additions & 4 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
maven { setUrl("https://maven.aliyun.com/repository/central") }
maven { setUrl("https://maven.aliyun.com/repository/google") }
maven(url = "https://maven.aliyun.com/repository/central")
maven(url = "https://maven.aliyun.com/repository/google")
google()
mavenCentral()
gradlePluginPortal()
Expand All @@ -12,8 +12,8 @@ pluginManagement {
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
maven { setUrl("https://maven.aliyun.com/repository/central") }
maven { setUrl("https://maven.aliyun.com/repository/google") }
maven(url = "https://maven.aliyun.com/repository/central")
maven(url = "https://maven.aliyun.com/repository/google")
google()
mavenCentral()
gradlePluginPortal()
Expand Down
2 changes: 1 addition & 1 deletion simple-native-android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = "io.github.sagemik"
version = "1.0.1"
version = "1.0.2"
description = "Simple 的 Android 原生库,用于 sqlite3_simple Flutter 插件"

android {
Expand Down
2 changes: 1 addition & 1 deletion simple-native-android/src/main/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ include(FetchContent)

FetchContent_Declare(simple_native
GIT_REPOSITORY https://github.com/SageMik/sqlite3_simple
GIT_TAG 007b99dc97e7300dbb1548fb9faebddce1138e80
GIT_TAG Nv1.0.3
)
FetchContent_MakeAvailable(simple_native)

0 comments on commit 866468a

Please sign in to comment.