[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-7267":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":16,"stars7d":16,"stars30d":17,"stars90d":16,"forks30d":16,"starsTrendScore":16,"compositeScore":18,"rankGlobal":10,"rankLanguage":10,"license":19,"archived":20,"fork":20,"defaultBranch":21,"hasWiki":22,"hasPages":20,"topics":23,"createdAt":10,"pushedAt":10,"updatedAt":24,"readmeContent":25,"aiSummary":26,"trendingCount":16,"starSnapshotCount":16,"syncStatus":27,"lastSyncTime":28,"discoverSource":29},7267,"DBFlow","agrosner\u002FDBFlow","agrosner","A blazing fast, powerful, and very simple ORM android database library that writes database code for you.","",null,"Kotlin",4851,595,158,41,0,1,30.33,"MIT License",false,"master",true,[],"2026-06-12 02:01:37","# README\n\n![Image](https:\u002F\u002Fgithub.com\u002Fagrosner\u002FDBFlow\u002Fblob\u002Fdevelop\u002Fdbflow_banner.png?raw=true)\n\n[![JitPack.io](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002FJitPack.io-5.0.0-alpha2-red.svg?style=flat)](https:\u002F\u002Fjitpack.io\u002F#Raizlabs\u002FDBFlow) [![Android Weekly](http:\u002F\u002Fimg.shields.io\u002Fbadge\u002FAndroid%20Weekly-%23129-2CB3E5.svg?style=flat)](http:\u002F\u002Fandroidweekly.net\u002Fissues\u002Fissue-129) [![Android Arsenal](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002FAndroid%20Arsenal-DBFlow-brightgreen.svg?style=flat)](https:\u002F\u002Fandroid-arsenal.com\u002Fdetails\u002F1\u002F1134)\n\nDBFlow is fast, efficient, and feature-rich Kotlin database library built on SQLite for Android. DBFlow utilizes annotation processing to generate SQLite boilerplate for you and provides a powerful SQLite query language that makes using SQLite a joy.\n\nDBFlow is built from a collection of some of the best features of many database libraries. Don't let an ORM or library get in your way, let the code you write in your applications be the best as possible.\n\nDBFlow Contains:\n\n**Kotlin:** Built using the language, the library is super-concise, null-safe and efficient.\n\n**Annotation Processor**: Generates the necessary code that you don't need to write.\n\n**Core:** Contains the main annotations and misc classes that are shared across all of DBFlow.\n\n**DBFlow:** The main library artifact used in conjunction with the previous two artifacts.\n\n**Coroutines:** Adds coroutine support for queries.\n\n**RX Java:** Enable applications to be reactive by listening to DB changes and ensuring your subscribers are up-to-date.\n\n**Paging:** Android architecture component paging library support for queries via `QueryDataSource`.\n\n**LiveData:** Android architecture LiveData support for queries on table changes.\n\n**SQLCipher:** Easy database encryption support in this library.\n\n**SQLite Query Language:** Enabling autocompletion on sqlite queries combined with Kotlin language features means SQLite-like syntax.\n\n## Changelog\n\nChanges exist in the [releases tab](https:\u002F\u002Fgithub.com\u002FRaizlabs\u002FDBFlow\u002Freleases).\n\n## Usage Docs\n\nFor more detailed usage, check out it out [here](https:\u002F\u002Fdbflow.gitbook.io\u002Fdbflow\u002F)\n\n## Including in your project\n\nAdd jitpack.io to your project's repositories:\n\n```groovy\nallProjects {\n  repositories {\n    google() \n    \u002F\u002F required to find the project's artifacts\n    \u002F\u002F place last\n    maven { url \"https:\u002F\u002Fwww.jitpack.io\" }\n  }\n}\n```\n\nAdd artifacts to your project:\n\n```groovy\n  apply plugin: 'kotlin-kapt' \u002F\u002F only required for kotlin consumers.\n\n  def dbflow_version = \"5.0.0-alpha2\"\n  \u002F\u002F or 10-digit short-hash of a specific commit. (Useful for bugs fixed in develop, but not in a release yet)\n\n  dependencies {\n\n    \u002F\u002F Use if Kotlin user.\n    kapt \"com.github.agrosner.dbflow:processor:${dbflow_version}\"\n\n    \u002F\u002F Annotation Processor\n    \u002F\u002F if only using Java, use this. If using Kotlin do NOT use this.\n    annotationProcessor \"com.github.agrosner.dbflow:processor:${dbflow_version}\"\n\n\n    \u002F\u002F core set of libraries\n    implementation \"com.github.agrosner.dbflow:core:${dbflow_version}\"\n    implementation \"com.github.agrosner.dbflow:lib:${dbflow_version}\"\n\n    \u002F\u002F sql-cipher database encryption (optional)\n    implementation \"com.github.agrosner.dbflow:sqlcipher:${dbflow_version}\"\n    implementation \"net.zetetic:android-database-sqlcipher:${sqlcipher_version}@aar\"\n\n    \u002F\u002F RXJava 2 support\n    implementation \"com.github.agrosner.dbflow:reactive-streams:${dbflow_version}\"\n\n    \u002F\u002F Kotlin Coroutines\n    implementation \"com.github.agrosner.dbflow:coroutines:${dbflow_version}\"\n\n    \u002F\u002F Android Architecture Components Paging Library Support\n    implementation \"com.github.agrosner.dbflow:paging:${dbflow_version}\"\n\n    \u002F\u002F Android Architecture Components LiveData Library Support\n    implementation \"com.github.agrosner.dbflow:livedata:${dbflow_version}\"\n\n    \u002F\u002F adds generated content provider annotations + support.\n    implementation \"com.github.agrosner.dbflow:contentprovider:${dbflow_version}\"\n\n  }\n```\n\n## Pull Requests\n\nI welcome and encourage all pull requests. Here are some basic rules to follow to ensure timely addition of your request: 1. Match coding style \\(braces, spacing, etc.\\) This is best achieved using **Reformat Code** shortcut, command+option+L on Mac and Ctrl+Alt+L on Windows, with Android Studio defaults. 2. If its a feature, bugfix, or anything please only change code to what you specify. 3. Please keep PR titles easy to read and descriptive of changes, this will make them easier to merge :\\) 4. Pull requests _must_ be made against `develop` branch. Any other branch \\(unless specified by the maintainers\\) will get **rejected**. 5. Have fun!\n\n## Maintainer\n\nOriginally created by [Raizlabs](https:\u002F\u002Fwww.raizlabs.com), a [Rightpoint](https:\u002F\u002Fwww.rightpoint.com) company\n\nMaintained by [agrosner](https:\u002F\u002Fgithub.com\u002Fagrosner) \\([@agrosner](https:\u002F\u002Fwww.twitter.com\u002Fagrosner)\\)\n\n","DBFlow 是一个针对 Android 开发的快速、强大且简单的 ORM 数据库库，基于 SQLite。它通过注解处理自动生成数据库代码，提供强大的 SQLite 查询语言，简化了开发者的数据库操作。该项目采用 Kotlin 编写，支持协程、RxJava、Paging 和 LiveData 等特性，使得数据库操作更加高效和现代化。此外，DBFlow 还支持 SQLCipher 以实现数据库加密，确保数据安全。适合需要在 Android 应用中进行高效数据库管理的场景，无论是简单的应用还是复杂的大型项目，都能从中受益。",2,"2026-06-11 03:11:27","top_language"]