{"id":34950362,"url":"https://github.com/luciqai/luciq-android-sdk","last_synced_at":"2026-02-19T13:11:19.075Z","repository":{"id":316298149,"uuid":"1054870345","full_name":"luciqai/luciq-android-sdk","owner":"luciqai","description":"The Agentic Mobile Observability Platform for Mobile.","archived":false,"fork":false,"pushed_at":"2026-01-25T17:01:58.000Z","size":238,"stargazers_count":4,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-01-26T09:40:49.579Z","etag":null,"topics":["android","application-performance-monitoring","bug-reporting","crash-reporting","debug","luciq","mobile-first","ndk"],"latest_commit_sha":null,"homepage":"https://www.luciq.ai","language":"Java","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/luciqai.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-11T12:51:27.000Z","updated_at":"2026-01-13T13:34:17.000Z","dependencies_parsed_at":"2025-09-23T20:40:00.587Z","dependency_job_id":null,"html_url":"https://github.com/luciqai/luciq-android-sdk","commit_stats":null,"previous_names":["luciqai/luciq-android-sdk"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/luciqai/luciq-android-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luciqai%2Fluciq-android-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luciqai%2Fluciq-android-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luciqai%2Fluciq-android-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luciqai%2Fluciq-android-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/luciqai","download_url":"https://codeload.github.com/luciqai/luciq-android-sdk/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luciqai%2Fluciq-android-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29614633,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T13:04:20.082Z","status":"ssl_error","status_checked_at":"2026-02-19T13:03:33.775Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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","application-performance-monitoring","bug-reporting","crash-reporting","debug","luciq","mobile-first","ndk"],"created_at":"2025-12-26T21:27:00.819Z","updated_at":"2026-02-19T13:11:19.068Z","avatar_url":"https://github.com/luciqai.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Luciq Android SDK\n\n[![Maven Central](https://img.shields.io/maven-central/v/ai.luciq.library/luciq.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22ai.luciq.library%22%20AND%20a:%22luciq%22)\n\nLuciq is the Agentic Observability Platform for Mobile.\n\nGo beyond traditional bug and crash reporting. Our intelligent AI agents help you capture rich, contextual data for every issue; including full session replays, console logs, and detailed network requests, to proactively detect, prioritize, and resolve problems automatically. From a simple shake for user feedback to reliable, full-stack crash reporting, Luciq provides the complete picture.\n\nThis empowers your team to ship faster, deliver frustration-free user sessions, and focus on building what matters.\n\nFor more info, visit Luciq.ai.\n\n## Installation\n\n### Gradle\n\nAdd this line to your build.gradle file.\n\n```groovy\nimplementation 'ai.luciq.library:luciq:\u003clatest-version\u003e'\n```\n\n## Usage\n\nIn your `Application` class add this line to your `onCreate` method.\n\n**Java**\n```java\nnew Luciq.Builder(this, \"APP_TOKEN\").build();\n```\n**Kotlin**\n```kotlin\nLuciq.Builder(this, \"APP_TOKEN\").build()\n```\n\n## Notes\n\nSome permissions are automatically added to your AndroidManifest.xml file. Some of them are required to be able to fetch some information like the network and wifi connection. Others are used to allow the user to attach images, videos, and audio recordings.\n\nGenerally, the permission request doesn't appear unless the user attempts to use any of the features requiring the permission. The only exception, if you set the invocation event to be Screenshot. Then, the storage permission will be requested when the application launches.\n\nThis behavior is happening with the screenshot invocation because there isn't any native event that tells the SDK that a screenshot has been captured. The only way to do it is to monitor the screenshots directory. The SDK is invoked once a screenshot is added to the directory while the application is active.\n\n```xml\n\u003cuses-permission android:name=“android.permission.ACCESS_NETWORK_STATE” /\u003e\n\u003cuses-permission android:name=“android.permission.WRITE_EXTERNAL_STORAGE” /\u003e\n\u003cuses-permission android:name=“android.permission.READ_EXTERNAL_STORAGE” /\u003e\n\u003cuses-permission android:name=“android.permission.ACCESS_WIFI_STATE” /\u003e\n```\n\nYou can remove any of the permissions if you are not willing to use the feature associated with it as in the following example.\n\n```xml\n\u003cuses-permission android:name=“android.permission.WRITE_EXTERNAL_STORAGE” tools:node=“remove”/\u003e\n```\n\n## More\n\nYou can also check out our [API Reference](https://docs.luciq.ai/reference) for more detailed information about our SDK.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluciqai%2Fluciq-android-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fluciqai%2Fluciq-android-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluciqai%2Fluciq-android-sdk/lists"}