https://github.com/luciqai/luciq-android-sdk
The Agentic Mobile Observability Platform for Mobile.
https://github.com/luciqai/luciq-android-sdk
android application-performance-monitoring bug-reporting crash-reporting debug luciq mobile-first ndk
Last synced: 4 months ago
JSON representation
The Agentic Mobile Observability Platform for Mobile.
- Host: GitHub
- URL: https://github.com/luciqai/luciq-android-sdk
- Owner: luciqai
- License: other
- Created: 2025-09-11T12:51:27.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2026-01-25T17:01:58.000Z (5 months ago)
- Last Synced: 2026-01-26T09:40:49.579Z (5 months ago)
- Topics: android, application-performance-monitoring, bug-reporting, crash-reporting, debug, luciq, mobile-first, ndk
- Language: Java
- Homepage: https://www.luciq.ai
- Size: 232 KB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Luciq Android SDK
[](https://search.maven.org/search?q=g:%22ai.luciq.library%22%20AND%20a:%22luciq%22)
Luciq is the Agentic Observability Platform for Mobile.
Go 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.
This empowers your team to ship faster, deliver frustration-free user sessions, and focus on building what matters.
For more info, visit Luciq.ai.
## Installation
### Gradle
Add this line to your build.gradle file.
```groovy
implementation 'ai.luciq.library:luciq:'
```
## Usage
In your `Application` class add this line to your `onCreate` method.
**Java**
```java
new Luciq.Builder(this, "APP_TOKEN").build();
```
**Kotlin**
```kotlin
Luciq.Builder(this, "APP_TOKEN").build()
```
## Notes
Some 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.
Generally, 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.
This 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.
```xml
```
You can remove any of the permissions if you are not willing to use the feature associated with it as in the following example.
```xml
```
## More
You can also check out our [API Reference](https://docs.luciq.ai/reference) for more detailed information about our SDK.