{"id":17713523,"url":"https://github.com/koalasat/pokey","last_synced_at":"2025-04-21T03:32:08.164Z","repository":{"id":259228845,"uuid":"875546600","full_name":"KoalaSat/pokey","owner":"KoalaSat","description":"Nostr \"Pull Notifications\" on Android","archived":false,"fork":false,"pushed_at":"2025-04-09T14:55:33.000Z","size":928,"stargazers_count":42,"open_issues_count":5,"forks_count":4,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-09T15:48:17.349Z","etag":null,"topics":["android","foss","kotlin","nostr","notifications"],"latest_commit_sha":null,"homepage":"https://njump.me/npub1h2685kkxa4q50qpexuae9geqep7frr0u8t8pcy9zj0xnza9phvtsnkd9tm","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/KoalaSat.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-10-20T09:21:03.000Z","updated_at":"2025-04-09T14:55:13.000Z","dependencies_parsed_at":"2024-10-26T18:28:26.102Z","dependency_job_id":null,"html_url":"https://github.com/KoalaSat/pokey","commit_stats":null,"previous_names":["koalasat/pokey"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KoalaSat%2Fpokey","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KoalaSat%2Fpokey/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KoalaSat%2Fpokey/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KoalaSat%2Fpokey/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KoalaSat","download_url":"https://codeload.github.com/KoalaSat/pokey/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249991082,"owners_count":21357199,"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","foss","kotlin","nostr","notifications"],"created_at":"2024-10-25T10:05:09.683Z","updated_at":"2025-04-21T03:32:08.157Z","avatar_url":"https://github.com/KoalaSat.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pokey\n[![GitHub downloads](https://img.shields.io/github/downloads/KoalaSat/pokey/total?label=Downloads\u0026labelColor=27303D\u0026color=0D1117\u0026logo=github\u0026logoColor=FFFFFF\u0026style=flat)](https://github.com/KoalaSat/pokey/releases)\n[![release](https://img.shields.io/github/v/release/KoalaSat/pokey)](https://github.com/KoalaSat/pokey)\n[![MIT](https://img.shields.io/badge/license-MIT-blue)](https://github.com/KoalaSat/pokey/blob/main/LICENSE)\n\n Display live notifications for your nostr events and allow other apps to receive and interact with them.\n\n\u003cdiv align=\"center\"\u003e\n    \u003cimg src=\"./app/src/main/res/mipmap-xxxhdpi/ic_launcher.png\" alt=\"Description of Image\" /\u003e\n\u003c/div\u003e\n\u003cdiv align=\"center\"\u003e\n    \u003ca href=\"https://github.com/ImranR98/Obtainium\" target=\"_blank\"\u003e\n        \u003cimg src=\"./docs/obtainium.png\" alt=\"Get it on Obtaininum\" height=\"70\" /\u003e\n    \u003c/a\u003e\n\u003c!--     \u003ca src=\"https://github.com/zapstore/zapstore-cli\" target=\"_blank\"\u003e\n        \u003cimg src=\"./docs/obtainium.png alt=\"Get it on Zap.Store\" height=\"70\" /\u003e\n    \u003c/a\u003e --\u003e\n    \u003ca href=\"https://github.com/KoalaSat/pokey/releases\" target=\"_blank\"\u003e\n        \u003cimg src=\"https://github.com/machiav3lli/oandbackupx/raw/034b226cea5c1b30eb4f6a6f313e4dadcbb0ece4/badge_github.png\" alt=\"Get it on GitHub\" height=\"70\"\u003e\n    \u003c/a\u003e\n\u003c/div\u003e\n\n- Discussion: https://chachi.chat/groups.0xchat.com/7SbVsYrEQMtZAMIn\n\n# Getting Started\n\nWhat is Nostr: https://www.nostr.how\n\n# Features\n\n- [x] Finish POC\n- [x] Connect with Amber\n- [x] Broadcast to other apps\n- [x] Auth to relays\n- [ ] Use built-in Tor engine\n- [x] Multi-account\n- [x] InBox Relays management\n- [x] Granulated notification settings\n- [x] Mute button and mute lists\n- [x] ~~Last 20~~ notifications view\n- [ ] Custom emojis\n- [ ] Search term notification\n- [ ] Display more info in sticky notification\n\n# Receiving user's inbox events on your app\n\n1. Register the intent filter in the `AndroidManifest.xml` file:\n```xml\n\u003creceiver android:name=\".MyBroadcastReceiver\"\u003e\n    \u003cintent-filter\u003e\n        \u003caction android:name=\"com.shared.NOSTR\" /\u003e\n    \u003c/intent-filter\u003e\n\u003c/receiver\u003e\n```\n2. Register receiver in your Service or Activity:\n```kotlin\noverride fun onStart() {\n    super.onStart()\n    val filter = IntentFilter(\"com.shared.NOSTR\")\n    registerReceiver(myBroadcastReceiver, filter)\n}\n\noverride fun onStop() {\n    super.onStop()\n    unregisterReceiver(myBroadcastReceiver)\n}\n\n```\n\n# Sponsors\n\n\u003cdiv align=\"center\"\u003e\n    \u003ca href=\"https://opensats.org\" target=\"_blank\"\u003e\n        \u003cimg src=\"./docs/opensats_logo.png\" alt=\"Get it on Obtaininum\" /\u003e\n    \u003c/a\u003e\n\u003c/div\u003e\n\n# Kudos\n\n- Inspired by [https://github.com/greenart7c3/Amber](https://github.com/greenart7c3/Amber)\n- @vitorpamplona for the push :D\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoalasat%2Fpokey","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkoalasat%2Fpokey","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoalasat%2Fpokey/lists"}