{"id":17160770,"url":"https://github.com/danielceinos/fsbubbleindicator","last_synced_at":"2026-05-18T03:36:26.048Z","repository":{"id":202236236,"uuid":"120218009","full_name":"danielceinos/FSBubbleIndicator","owner":"danielceinos","description":"Badge notification bubble indicator","archived":false,"fork":false,"pushed_at":"2019-06-16T08:36:58.000Z","size":263,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"develop","last_synced_at":"2025-03-24T15:21:37.763Z","etag":null,"topics":["android","android-development","android-library","android-ui","badge","kotlin","kotlin-android","kotlin-library","library","notification"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/danielceinos.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2018-02-04T19:57:08.000Z","updated_at":"2025-01-11T05:33:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"1ddccfdf-83ec-4513-ae5f-37b05157d490","html_url":"https://github.com/danielceinos/FSBubbleIndicator","commit_stats":null,"previous_names":["danielceinos/fsbubbleindicator"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/danielceinos/FSBubbleIndicator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielceinos%2FFSBubbleIndicator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielceinos%2FFSBubbleIndicator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielceinos%2FFSBubbleIndicator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielceinos%2FFSBubbleIndicator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/danielceinos","download_url":"https://codeload.github.com/danielceinos/FSBubbleIndicator/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielceinos%2FFSBubbleIndicator/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269201154,"owners_count":24377447,"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","status":"online","status_checked_at":"2025-08-07T02:00:09.698Z","response_time":73,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","android-development","android-library","android-ui","badge","kotlin","kotlin-android","kotlin-library","library","notification"],"created_at":"2024-10-14T22:25:56.787Z","updated_at":"2026-05-18T03:36:21.000Z","avatar_url":"https://github.com/danielceinos.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FSBubbleIndicator\n\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/danielceinos/FSBubbleIndicator/blob/master/LICENSE.md)\n[![Version](https://img.shields.io/badge/jitpack-1.0.1-green.svg)](https://jitpack.io/#danielceinos/FSBubbleIndicator/1.0.1)\n\n\u003cp align=\"center\"\u003e\n\t\u003cimg src=\"https://github.com/danielceinos/FSBubbleIndicator/blob/develop/example.png\" /\u003e\n\u003c/p\u003e\n\n# Requirements\n\n- minAndroidSdk: 16\n\n# Installation\n  \n  Add to your gradle.build:\n  ```\n  allprojects {\n\t\trepositories {\n\t\t\t...\n\t\t\tmaven { url 'https://jitpack.io' }\n\t\t}\n\t}\n  ```\n  ```\n  dependencies {\n\t        compile 'com.github.danielceinos:FSBubbleIndicator:1.0.1'\n\t}\n  ```\n# Use\n\n## Options\n\n```xml\n\t\u003cdeclare-styleable name=\"FSBubbleIndicator\"\u003e\n    \t\u003cattr format=\"dimension\" name=\"textSize\" /\u003e\n    \t\u003cattr format=\"color\" name=\"bubbleColor\" /\u003e\n    \t\u003cattr format=\"color\" name=\"textColor\" /\u003e\n    \t\u003cattr format=\"integer\" name=\"count\" /\u003e\n    \t\u003cattr format=\"color\" name=\"shadowColor\" /\u003e\n  \t\u003c/declare-styleable\u003e\n\n  \t\u003cdeclare-styleable name=\"FSIconBubble\"\u003e\n    \t\u003cattr format=\"reference\" name=\"icon\" /\u003e\n  \t\u003c/declare-styleable\u003e\n\n```\n\n## Example\n\n```xml\n  \u003ccom.fireshield.library.FSBubbleIndicator\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        app:count=\"55555555\"\n        app:bubbleColor=\"#3c3eed\"\n        app:textSize=\"34sp\"\n        /\u003e\n```\n\n```xml\n \u003ccom.fireshield.library.FSIconBubble\n        android:layout_width=\"48dp\"\n        android:layout_height=\"48dp\"\n        app:textSize=\"8sp\"\n        app:count=\"5\"\n        app:bubbleColor=\"#ba68c8\"\n        app:icon=\"@drawable/ic_favorite_border\"\n        /\u003e\n```\n\n```kotlin\n\tfindViewById\u003cFSBubbleIndicator\u003e(R.id.bubble).count = 777\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanielceinos%2Ffsbubbleindicator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdanielceinos%2Ffsbubbleindicator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanielceinos%2Ffsbubbleindicator/lists"}