File tree Expand file tree Collapse file tree 6 files changed +15
-12
lines changed Expand file tree Collapse file tree 6 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
3
4
+ ## 3.43.0
5
+ - [ SQLite 3.43.0] ( https://www.sqlite.org/releaselog/3_43_0.html )
6
+
4
7
## 3.42.0
5
8
- [ SQLite 3.42.0] ( https://www.sqlite.org/releaselog/3_42_0.html )
6
9
- [ SQLite 3.41.2] ( https://www.sqlite.org/releaselog/3_41_2.html )
Original file line number Diff line number Diff line change 15
15
- ** Up-to-date**
16
16
17
17
Even the latest version of Android is several versions behind the latest version of SQLite.
18
- These versions do not have the bug fixes, performance improvements, or new features present in
18
+ These versions do not have bug fixes, performance improvements, or new features present in
19
19
current versions of SQLite. This problem is worse the older the version of the OS the device has.
20
20
Using this library, you can keep up to date with the latest versions of SQLite and provide a
21
21
consistent version across OS versions and devices.
@@ -51,7 +51,7 @@ Then add the sqlite-android artifact from this repository as a dependency:
51
51
52
52
``` gradle
53
53
dependencies {
54
- implementation 'com.github.requery:sqlite-android:3.42 .0'
54
+ implementation 'com.github.requery:sqlite-android:3.43 .0'
55
55
}
56
56
```
57
57
Then change usages of ` android.database.sqlite.SQLiteDatabase ` to
@@ -115,7 +115,7 @@ Versioning
115
115
----------
116
116
117
117
The library is versioned after the version of SQLite it contains. For changes specific to just the
118
- wrapper API a revision number is added e.g. 3.42 .0-X, where X is the revision number.
118
+ wrapper API, a revision number is added e.g. 3.43 .0-X, where X is the revision number.
119
119
120
120
Acknowledgements
121
121
----------------
Original file line number Diff line number Diff line change 1
1
plugins {
2
- id " com.android.library" version " 8.0 .1" apply false
2
+ id " com.android.library" version " 8.1 .1" apply false
3
3
id " de.undercouch.download" version " 5.4.0" apply false
4
4
}
Original file line number Diff line number Diff line change @@ -23,4 +23,4 @@ POM_DEVELOPER_ID=TODO
23
23
POM_DEVELOPER_NAME =TODO
24
24
POM_DEVELOPER_URL =TODO
25
25
POM_INCEPTION_YEAR =TODO
26
- VERSION_NAME =3.42 .0-SNAPSHOT
26
+ VERSION_NAME =3.43 .0-SNAPSHOT
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.1.1 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.3 -bin.zip
4
4
networkTimeout =10000
5
5
zipStoreBase =GRADLE_USER_HOME
6
6
zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change @@ -3,14 +3,14 @@ import com.vanniktech.maven.publish.SonatypeHost
3
3
plugins {
4
4
id " de.undercouch.download"
5
5
id " com.android.library"
6
- id " com.vanniktech.maven.publish" version " 0.25.2 "
6
+ id " com.vanniktech.maven.publish" version " 0.25.3 "
7
7
}
8
8
9
9
android {
10
- buildToolsVersion = " 33 .0.2 "
10
+ buildToolsVersion = " 34 .0.0 "
11
11
ndkVersion " 25.2.9519653"
12
12
13
- compileSdk 33
13
+ compileSdk 34
14
14
15
15
namespace " io.requery.android.sqlite"
16
16
@@ -36,8 +36,8 @@ android {
36
36
abortOnError false
37
37
}
38
38
compileOptions {
39
- sourceCompatibility JavaVersion . VERSION_11
40
- targetCompatibility JavaVersion . VERSION_11
39
+ sourceCompatibility JavaVersion . VERSION_17
40
+ targetCompatibility JavaVersion . VERSION_17
41
41
}
42
42
43
43
externalNativeBuild {
@@ -58,7 +58,7 @@ dependencies {
58
58
}
59
59
60
60
ext {
61
- sqliteDistributionUrl = " https://www.sqlite.org/2023/sqlite-amalgamation-3420000 .zip"
61
+ sqliteDistributionUrl = " https://www.sqlite.org/2023/sqlite-amalgamation-3430000 .zip"
62
62
}
63
63
64
64
tasks. register(" downloadSqlite" , Download ) {
You can’t perform that action at this time.
0 commit comments