{"id":13647205,"url":"https://github.com/pardom-zz/ActiveAndroid","last_synced_at":"2025-04-22T02:30:58.992Z","repository":{"id":5508926,"uuid":"6709149","full_name":"pardom-zz/ActiveAndroid","owner":"pardom-zz","description":"Active record style SQLite persistence for Android","archived":false,"fork":false,"pushed_at":"2021-10-15T16:28:24.000Z","size":18083,"stargazers_count":4688,"open_issues_count":331,"forks_count":1033,"subscribers_count":237,"default_branch":"master","last_synced_at":"2025-04-11T17:49:25.960Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://www.activeandroid.com","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pardom-zz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-11-15T18:10:45.000Z","updated_at":"2025-04-01T06:43:04.000Z","dependencies_parsed_at":"2022-09-12T19:23:03.839Z","dependency_job_id":null,"html_url":"https://github.com/pardom-zz/ActiveAndroid","commit_stats":null,"previous_names":["pardom/activeandroid"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pardom-zz%2FActiveAndroid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pardom-zz%2FActiveAndroid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pardom-zz%2FActiveAndroid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pardom-zz%2FActiveAndroid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pardom-zz","download_url":"https://codeload.github.com/pardom-zz/ActiveAndroid/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248734262,"owners_count":21153185,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-02T01:03:24.087Z","updated_at":"2025-04-22T02:30:57.327Z","avatar_url":"https://github.com/pardom-zz.png","language":"Java","readme":"[![Build Status](https://travis-ci.org/pardom/ActiveAndroid.png?branch=master)](https://travis-ci.org/pardom/ActiveAndroid) [![Stories in Ready](https://badge.waffle.io/pardom/ActiveAndroid.png)](http://waffle.io/pardom/ActiveAndroid)  \n# ActiveAndroid\n\nActiveAndroid is an active record style ORM ([object relational mapper](http://en.wikipedia.org/wiki/Object-relational_mapping)). What does that mean exactly? Well, ActiveAndroid allows you to save and retrieve SQLite database records without ever writing a single SQL statement. Each database record is wrapped neatly into a class with methods like _save()_ and _delete()_.\n\nActiveAndroid does so much more than this though. Accessing the database is a hassle, to say the least, in Android. ActiveAndroid takes care of all the setup and messy stuff, and all with just a few simple steps of configuration.\n\n## Download\n\nGrab via Maven:\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003ecom.michaelpardo\u003c/groupId\u003e\n  \u003cartifactId\u003eactiveandroid\u003c/artifactId\u003e\n  \u003cversion\u003e3.1.0-SNAPSHOT\u003c/version\u003e\n\u003c/dependency\u003e\n```\nor Gradle:\n```groovy\nrepositories {\n    mavenCentral()\n    maven { url \"https://oss.sonatype.org/content/repositories/snapshots/\" }\n}\n\ncompile 'com.michaelpardo:activeandroid:3.1.0-SNAPSHOT'\n```\n\n## Documentation\n\n* [Getting started](http://github.com/pardom/ActiveAndroid/wiki/Getting-started)\n* [Creating your database model](http://github.com/pardom/ActiveAndroid/wiki/Creating-your-database-model)\n* [Saving to the database](http://github.com/pardom/ActiveAndroid/wiki/Saving-to-the-database)\n* [Querying the database](http://github.com/pardom/ActiveAndroid/wiki/Querying-the-database)\n* [Type serializers](http://github.com/pardom/ActiveAndroid/wiki/Type-serializers)\n* [Using the content provider](http://github.com/pardom/ActiveAndroid/wiki/Using-the-content-provider)\n* [Schema migrations](http://github.com/pardom/ActiveAndroid/wiki/Schema-migrations)\n* [Pre-populated-databases](http://github.com/pardom/ActiveAndroid/wiki/Pre-populated-databases)\n* [Running the Test Suite](https://github.com/pardom/ActiveAndroid/wiki/Running-the-Test-Suite)\n\n## License\n\n[Apache Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html)\n\n    Copyright (C) 2010 Michael Pardo\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n\n## Contributing\n\nPlease fork this repository and contribute back using [pull requests](http://github.com/pardom/ActiveAndroid/pulls).\n\nAny contributions, large or small, major features, bug fixes, unit tests are welcomed and appreciated but will be thoroughly reviewed and discussed.\n\nYou can run the test suite by following the instructions on the [Running the Test Suite](https://github.com/pardom/ActiveAndroid/wiki/Running-the-Test-Suite) Wiki page.\n\n\n## Author\n\nMichael Pardo | www.michaelpardo.com | www.activeandroid.com\n","funding_links":[],"categories":["Java","数据库开发","etc"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpardom-zz%2FActiveAndroid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpardom-zz%2FActiveAndroid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpardom-zz%2FActiveAndroid/lists"}