File tree 9 files changed +15
-11
lines changed
sqlcipher_flutter/android/app 9 files changed +15
-11
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ android {
39
39
defaultConfig {
40
40
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
41
41
applicationId " com.example.flutter_libs"
42
- minSdkVersion 16
42
+ minSdkVersion 19
43
43
targetSdkVersion 28
44
44
versionCode flutterVersionCode. toInteger()
45
45
versionName flutterVersionName
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ android {
39
39
defaultConfig {
40
40
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
41
41
applicationId " com.example.sqlcipher_flutter"
42
- minSdkVersion 16
42
+ minSdkVersion 21
43
43
targetSdkVersion 28
44
44
versionCode flutterVersionCode. toInteger()
45
45
versionName flutterVersionName
Original file line number Diff line number Diff line change
1
+ ## 0.5.15
2
+
3
+ - Upgrade sqlite to version ` 3.41.2 ` .
4
+
1
5
## 0.5.14
2
6
3
7
- Support Android projects built with Gradle 8.
Original file line number Diff line number Diff line change @@ -32,5 +32,5 @@ android {
32
32
}
33
33
34
34
dependencies {
35
- implementation ' eu.simonbinder:sqlite3-native-library:3.41.0 '
35
+ implementation ' eu.simonbinder:sqlite3-native-library:3.41.2 '
36
36
}
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ A new flutter plugin project.
17
17
s . public_header_files = 'Classes/**/*.h'
18
18
s . dependency 'Flutter'
19
19
20
- s . dependency 'sqlite3' , '~> 3.41.0 '
20
+ s . dependency 'sqlite3' , '~> 3.41.2 '
21
21
s . dependency 'sqlite3/fts5'
22
22
s . dependency 'sqlite3/perf-threadsafe'
23
23
s . dependency 'sqlite3/rtree'
Original file line number Diff line number Diff line change @@ -13,13 +13,13 @@ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0")
13
13
# We can't really ask users to use a cmake that recent, so there's this if here.
14
14
FetchContent_Declare(
15
15
sqlite3
16
- URL https://sqlite.org/2023/sqlite-autoconf-3410000 .tar.gz
16
+ URL https://sqlite.org/2023/sqlite-autoconf-3410200 .tar.gz
17
17
DOWNLOAD_EXTRACT_TIMESTAMP NEW
18
18
)
19
19
else ()
20
20
FetchContent_Declare(
21
21
sqlite3
22
- URL https://sqlite.org/2023/sqlite-autoconf-3410000 .tar.gz
22
+ URL https://sqlite.org/2023/sqlite-autoconf-3410200 .tar.gz
23
23
)
24
24
endif ()
25
25
FetchContent_MakeAvailable(sqlite3)
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Pod::Spec.new do |s|
17
17
s . public_header_files = 'Classes/**/*.h'
18
18
s . dependency 'FlutterMacOS'
19
19
20
- s . dependency 'sqlite3' , '~> 3.41.0 '
20
+ s . dependency 'sqlite3' , '~> 3.41.2 '
21
21
s . dependency 'sqlite3/fts5'
22
22
s . dependency 'sqlite3/perf-threadsafe'
23
23
s . dependency 'sqlite3/rtree'
Original file line number Diff line number Diff line change 1
1
name : sqlite3_flutter_libs
2
2
description : Flutter plugin to include native sqlite3 libraries with your app
3
- version : 0.5.14
3
+ version : 0.5.15
4
4
homepage : https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3_flutter_libs
5
5
issue_tracker : https://github.com/simolus3/sqlite3.dart/issues
6
6
7
7
environment :
8
- sdk : " >=2.12.0 <3 .0.0"
8
+ sdk : " >=2.12.0 <4 .0.0"
9
9
flutter : " >=1.10.1"
10
10
11
11
dependencies :
Original file line number Diff line number Diff line change @@ -29,13 +29,13 @@ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0")
29
29
# We can't really ask users to use a cmake that recent, so there's this if here.
30
30
FetchContent_Declare(
31
31
sqlite3
32
- URL https://sqlite.org/2023/sqlite-autoconf-3410000 .tar.gz
32
+ URL https://sqlite.org/2023/sqlite-autoconf-3410200 .tar.gz
33
33
DOWNLOAD_EXTRACT_TIMESTAMP NEW
34
34
)
35
35
else ()
36
36
FetchContent_Declare(
37
37
sqlite3
38
- URL https://sqlite.org/2023/sqlite-autoconf-3410000 .tar.gz
38
+ URL https://sqlite.org/2023/sqlite-autoconf-3410200 .tar.gz
39
39
)
40
40
endif ()
41
41
FetchContent_MakeAvailable(sqlite3)
You can’t perform that action at this time.
0 commit comments