Couchbase.Lite.Support.Android 2.0.0

Prefix Reserved
This package has been deprecated as it is legacy and is no longer maintained.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Couchbase.Lite.Support.Android --version 2.0.0
                    
NuGet\Install-Package Couchbase.Lite.Support.Android -Version 2.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Couchbase.Lite.Support.Android" Version="2.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Couchbase.Lite.Support.Android" Version="2.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Couchbase.Lite.Support.Android" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Couchbase.Lite.Support.Android --version 2.0.0
                    
#r "nuget: Couchbase.Lite.Support.Android, 2.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Couchbase.Lite.Support.Android&version=2.0.0
                    
Install Couchbase.Lite.Support.Android as a Cake Addin
#tool nuget:?package=Couchbase.Lite.Support.Android&version=2.0.0
                    
Install Couchbase.Lite.Support.Android as a Cake Tool

A lightweight, document-oriented (NoSQL), syncable database engine for .NET

Product Compatible and additional computed target framework versions.
MonoAndroid monoandroid41 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Couchbase.Lite.Support.Android:

Package Downloads
Couchbase.Lite

A lightweight, document-oriented (NoSQL), syncable database engine for .NET

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.2.3 35 a day ago
3.2.2 139 2 months ago
3.2.1 2,428 6 months ago
3.2.0 1,642 8 months ago
3.2.0-beta.2 156 5/16/2024
3.1.10 308 5 months ago
3.1.9 275 9 months ago
3.1.7 1,898 5/1/2024
3.1.6 1,515 3/6/2024
3.1.3 32,525 11/16/2023
3.1.1 15,056 7/18/2023
3.1.0 2,415 4/27/2023
3.0.15 161 11/6/2023
3.0.12 16,155 6/26/2023
3.0.8 1,227 2/8/2023
3.0.2 1,045 8/2/2022
3.0.0 24,790 2/22/2022
3.0.0-beta02 310 10/19/2021
3.0.0-beta01 348 9/21/2021
2.8.6 8,393 8/3/2021 2.8.6 is deprecated because it is no longer maintained.
2.8.4 13,398 3/2/2021 2.8.4 is deprecated because it is no longer maintained.
2.8.2 9,270 11/20/2020 2.8.2 is deprecated because it is no longer maintained.
2.8.0 2,707 9/30/2020 2.8.0 is deprecated because it is no longer maintained.
2.7.1 4,444 4/17/2020 2.7.1 is deprecated because it is no longer maintained.
2.7.0 3,541 1/16/2020 2.7.0 is deprecated because it is no longer maintained.
2.6.4 708 2/11/2020 2.6.4 is deprecated because it is no longer maintained.
2.6.0 10,142 8/27/2019 2.6.0 is deprecated because it is no longer maintained.
2.5.3 1,561 7/31/2019 2.5.3 is deprecated because it is no longer maintained.
2.5.2 1,432 7/3/2019 2.5.2 is deprecated because it is no longer maintained.
2.5.0 3,147 4/30/2019 2.5.0 is deprecated because it is no longer maintained.
2.1.5 1,444 5/23/2019 2.1.5 is deprecated because it is no longer maintained.
2.1.2 30,397 11/16/2018 2.1.2 is deprecated because it is no longer maintained.
2.1.1 1,320 10/5/2018 2.1.1 is deprecated because it is no longer maintained.
2.1.0 1,355 8/30/2018 2.1.0 is deprecated because it is no longer maintained.
2.0.3 2,169 6/5/2018 2.0.3 is deprecated because it is no longer maintained.
2.0.2 1,258 6/1/2018 2.0.2 is deprecated because it is no longer maintained.
2.0.0.1 1,709 4/12/2018 2.0.0.1 is deprecated because it is no longer maintained.
2.0.0 1,403 4/12/2018 2.0.0 is deprecated because it is no longer maintained.

For full release notes see https://developer.couchbase.com/documentation/mobile/2.0/references/couchbase-lite/release-notes/index.html?language=csharp

This is version 2 of Couchbase Lite .NET, an embedded NoSQL database with sync capability.  It is a complete rewrite of 1.x and thus to use it in an existing project,
you will need to learn about the new API using the above documentation.

NOTE: The new protocol is incompatible with CouchDB-based databases. And since Couchbase Lite 2 only supports the new protocol, you will need to run a version of Sync Gateway that supports it.

Notable API changes:
The 1.x Manager class has been removed. Top level configuration is now performed on the Database class as static methods.
The custom conflict resolution feature has been removed. When two conflicting changes occur, the conflict will be resolved using the default conflict resolver that ships with Couchbase Lite 2.0.
The iOS Models API has been removed in Couchbase Lite 2.0.
The View query API has been removed and is replaced with the N1QL-like query syntax in Couchbase Lite 2.0.
The experimental Geo query API has been removed and is replaced with the N1QL-like query syntax in Couchbase Lite 2.0.
The pluggable storage API has been removed.
The Facebook Authenticator API has been removed.
The Revision API is not longer available. The Couchbase Lite 2.0 conflict resolver API lets users pick which revision is the winner when a conflict occurs. There is a default conflict resolver if none are provided.
The Push filter API has been removed.
The 1.x Attachment API has been renamed to Blob but the functionality remains the same.
The 1.x Database.inTransaction method has been renamed to Database.inBatch to emphasize that Couchbase Lite does not offer transactional guarantees, and that the purpose of the method is to optimize batch operations rather than to enable ACID transactions.