Analytical Chemistry 2.1 Initial Release: Summer 2016 In addition to minor editing to improve readability, to fix typographical errors not caught prior to the release of Analytical Chemistry 2.0, and to respond to suggestions from users, the following changes are included in this edition. Thanks for any ideas, comments and suggestions. KLog full version 2.1.2 is released on 21-Oct-2010. Latest KLog country file (KLog-cty.dat) is included in full setup and isn't compatible with previous versions. If you need some update for it, just send me email and I'll do it. PKCS #1: RSA Cryptography Specifications Version 2.2 Abstract This document provides recommendations for the implementation of public-key cryptography based on the RSA algorithm, covering cryptographic primitives, encryption schemes, signature schemes with appendix, and ASN.1 syntax for representing keys and for identifying the schemes. Let us know if you discover new issues or have ideas for improving this library. Version 2.1.0-alpha01. December 17, 2018. Androidx.lifecycle 2.1.0-alpha01 is.
androidx.sqlite.db
androidx.sqlite.db.framework
androidx.sqlite
library contains abstract interfaces along with basicimplementations which can be used to build your own libraries that accessSQLite.You might want to consider using theRoom library, which provides anabstraction layer over SQLite to allow for more robust database accesswhile harnessing the full power of SQLite.
Latest Update | Current Stable Release | Next Release Candidate | Beta Release | Alpha Release |
---|---|---|---|---|
January 22, 2020 | 2.1.0 | - | - | - |
Declaring dependencies
To add a dependency on SQLite, you must add the Google Maven repository to yourproject. Read Google's Maven repositoryfor more information.
Add the dependencies for the artifacts you need in the build.gradle
file foryour app or module:
For more information about dependencies, see Add build dependencies.
Feedback
Your feedback helps make Jetpack better. Let us know if you discover new issues or haveideas for improving this library. Please take a look at theexisting issuesin this library before you create a new one. You can add your vote to an existing issue byclicking the star button.
See the Issue Tracker documentationfor more information.
Version 2.1.0
Note: newer versions androidx libraries now correctly reflectimplementation
dependencies versus api
dependencies. If your project relies on an implicit dependency exposed through an implementation
dependency in version 2.1.0
, it will be necessary to explicitly depend on that dependency in your build.gradle
.Version 2.1.0
January 22, 2020
androidx.sqlite:sqlite:2.1.0
, androidx.sqlite:sqlite-framework:2.1.0
, and androidx.sqlite:sqlite-ktx:2.1.0
are released with no changes since 2.1.0-rc01
. Version 2.1.0 contains these commits.
Version 2.1 Suggestions For Resume
Important changes since 2.0.1
- Support for
useNoBackupDirectory
which can be used to indicate that the database should be created in the no backup directory when usingSupportSQLiteOpenHelper
.
Version 2.1.0-rc01
January 8, 2020
androidx.sqlite:sqlite-*:2.1.0-rc01
is released. Version 2.1.0-rc01 contains these commits.
This release is identical to 2.1.0-beta01
.
Version 2.1.0-beta01
December 4, 2019
androidx.sqlite:sqlite:2.1.0-beta01
, androidx.sqlite:sqlite-framework:2.1.0-beta01
, and androidx.sqlite:sqlite-ktx:2.1.0-beta01
are released with no changes since 2.1.0-alpha01
. Version 2.1.0-beta01 contains these commits.
Version 2.1 Suggestions For Writing
Version 2.1.0-alpha01
November 7, 2019
androidx.sqlite:sqlite:2.1.0-alpha01
, androidx.sqlite:sqlite-framework:2.1.0-alpha01
, and androidx.sqlite:sqlite-ktx:2.1.0-alpha01
are released. Version 2.1.0-alpha01 contains these commits.
API changes
- Added a new property to
SupportSQLiteOpenHelper.Configuration
calleduseNoBackupDirectory
to indicate that a file based database should be created and located from the no backup directory.
Version 2.0.1
Version 2.0.1
March 13, 2019
Version 2.0.1 of the androidx.sqlite
artifact group is released with two bug fixes.
Bug Fixes
- Fixed two issues where
FrameworkSQLiteOpenHelper
wouldn’t properly recover from a corrupted database or a bad migration during initialization. (b/111504749 and b/111519144)