{"id":13829899,"url":"https://github.com/realm/realm-android-adapters","last_synced_at":"2025-10-06T16:32:22.878Z","repository":{"id":45978085,"uuid":"57109897","full_name":"realm/realm-android-adapters","owner":"realm","description":"Adapters for combining Realm Java with Android UI components and framework classes","archived":false,"fork":false,"pushed_at":"2021-11-23T11:01:28.000Z","size":388,"stargazers_count":414,"open_issues_count":21,"forks_count":134,"subscribers_count":16,"default_branch":"master","last_synced_at":"2025-01-21T01:12:03.364Z","etag":null,"topics":["android","java","realm","ui-components"],"latest_commit_sha":null,"homepage":"realm.io","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/realm.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-04-26T08:07:38.000Z","updated_at":"2024-09-11T15:37:32.000Z","dependencies_parsed_at":"2022-09-23T08:51:58.647Z","dependency_job_id":null,"html_url":"https://github.com/realm/realm-android-adapters","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/realm%2Frealm-android-adapters","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/realm%2Frealm-android-adapters/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/realm%2Frealm-android-adapters/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/realm%2Frealm-android-adapters/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/realm","download_url":"https://codeload.github.com/realm/realm-android-adapters/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235534564,"owners_count":19005519,"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":["android","java","realm","ui-components"],"created_at":"2024-08-04T10:00:49.015Z","updated_at":"2025-10-06T16:32:17.501Z","avatar_url":"https://github.com/realm.png","language":"Java","funding_links":[],"categories":["\u003ca name=\"java\"\u003e Java/Kotlin"],"sub_categories":["\u003ca name=\"java-libs\"\u003e\u003c/a\u003eJava/Kotlin Libraries and Components"],"readme":"![Realm](logo.png)\n\nRealm is a mobile database that runs directly inside phones, tablets or wearables.\n\nThis repository holds adapters for combining Realm Java with Android UI components and framework classes.\n\nCurrently supported UI components are:\n\n * [ListView](https://developer.android.com/reference/android/widget/ListView.html)\n * [RecyclerView](https://developer.android.com/reference/android/support/v7/widget/RecyclerView.html)\n\n## Getting Started\n\nThis library only works together with Realm Java. Please see the [detailed instructions in our docs](https://realm.io/docs/java/#installation)\nto add Realm to your project.\n\nTo add the adapters to your project, add the following to you app's dependencies:\n\n```\nrepositories {\n    jcenter()\n}\n\ndependencies {\n    compile 'io.realm:android-adapters:3.1.0'\n}\n```\n\nThis library is only compatible with Realm Java 3.0.0 and above.\n\n## Documentation\n\nDocumentation for Realm can be found at [realm.io/docs/java](https://realm.io/docs/java).\nThe API reference is located at [realm.io/docs/java/api](https://realm.io/docs/java/api).\n\n## Getting Help\n\n- **Need help with your code?**: Look for previous questions on the [#realm tag](https://stackoverflow.com/questions/tagged/realm?sort=newest) — or [ask a new question](http://stackoverflow.com/questions/ask?tags=realm). We activtely monitor \u0026 answer questions on SO!\n- **Have a bug to report?** [Open an issue](https://github.com/realm/realm-android-adapters/issues/new). If possible, include the version of Realm, a full log, the Realm file, and a project that shows the issue.\n- **Have a feature request?** [Open an issue](https://github.com/realm/realm-android-adapters/issues/new). Tell us what the feature should do, and why you want the feature.\n- Sign up for our [**Community Newsletter**](http://eepurl.com/VEKCn) to get regular tips, learn about other use-cases and get alerted of blogposts and tutorials about Realm.\n\n## Using Snapshots\n\nIf you want to test recent bugfixes or features that have not been packaged in an official release yet, you can use a **-SNAPSHOT** release of the current development version of Realm via Gradle, available on [OJO](http://oss.jfrog.org/oss-snapshot-local/io/realm/realm-android/)\n\n```gradle\nrepositories {\n    maven {\n        url 'http://oss.jfrog.org/artifactory/oss-snapshot-local'\n    }\n}\n\ndependencies {\n    compile 'io.realm:android-adapters:\u003cversion\u003e'\n}\n```\n\nSee [version.txt](version.txt) for the latest version number.\n\n## Building Realm Android Adapters\n\nIn case you don't want to use the pre-compiled version, you can build the library from source.\n\nPrerequisites:\n\n * Download/the [**JDK 7**](http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html) or [**JDK 8**](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) from Oracle and install it.\n * Download \u0026 install the Android SDK, **Android 7.1 (API 25)** (for example through Android Studio’s **Android SDK Manager**)\n\nOnce you have completed all the pre-requisites building Realm is done with a simple command\n\n```\n./gradlew assemble\n```\n\nThat command will generate:\n\n * an aar file for the adapter library in `adapters/build/outputs/aar/android-adapters-release.aar`\n\n### Other Commands\n\n * `./gradlew monkeyDebug` will run the monkey tests on the example project.\n * `./gradlew javadoc` will create the javadoc for the library.\n * `./gradlew artifactoryPublish` will upload a SNAPSHOT to OJO.\n * `./gradlew bintrayUpload` will upload a release to Bintray.\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for more details!\n\nThis project adheres to the [Contributor Covenant Code of Conduct](https://realm.io/conduct).\nBy participating, you are expected to uphold this code. Please report\nunacceptable behavior to [info@realm.io](mailto:info@realm.io).\n\n## License\n\nRealm Android Adapters is published under the Apache 2.0 license.\n\n## Feedback\n\n**_If you use Realm and are happy with it, all we ask is that you please consider sending out a tweet mentioning [@realm](http://twitter.com/realm), or email [help@realm.io](mailto:help@realm.io) to let us know about it!_**\n\n**_And if you don't like it, please let us know what you would like improved, so we can fix it!_**\n\n![analytics](https://ga-beacon.appspot.com/UA-50247013-2/realm-android-adapters/README?pixel)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frealm%2Frealm-android-adapters","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frealm%2Frealm-android-adapters","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frealm%2Frealm-android-adapters/lists"}