{"id":36437959,"url":"https://github.com/KwabenBerko/SmsBroadcastReceiver","last_synced_at":"2026-01-18T13:00:40.290Z","repository":{"id":38889897,"uuid":"143657305","full_name":"KwabenBerko/SmsBroadcastReceiver","owner":"KwabenBerko","description":":bangbang: **DEPRECATED**  An Android Broadcast Receiver Library For Capturing/Reading Incoming SMS.","archived":true,"fork":false,"pushed_at":"2019-09-15T00:18:59.000Z","size":184,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2023-03-06T00:58:26.968Z","etag":null,"topics":["android","archived","broadcast-reciever","broadcastreceiver","deprecated","obsolete","receiver","sms","sms-receiver"],"latest_commit_sha":null,"homepage":"","language":"Java","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/KwabenBerko.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-08-06T00:19:39.000Z","updated_at":"2023-01-28T14:03:51.000Z","dependencies_parsed_at":"2022-09-13T02:32:21.347Z","dependency_job_id":null,"html_url":"https://github.com/KwabenBerko/SmsBroadcastReceiver","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/KwabenBerko/SmsBroadcastReceiver","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KwabenBerko%2FSmsBroadcastReceiver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KwabenBerko%2FSmsBroadcastReceiver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KwabenBerko%2FSmsBroadcastReceiver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KwabenBerko%2FSmsBroadcastReceiver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KwabenBerko","download_url":"https://codeload.github.com/KwabenBerko/SmsBroadcastReceiver/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KwabenBerko%2FSmsBroadcastReceiver/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28536686,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T10:13:46.436Z","status":"ssl_error","status_checked_at":"2026-01-18T10:13:11.045Z","response_time":98,"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","archived","broadcast-reciever","broadcastreceiver","deprecated","obsolete","receiver","sms","sms-receiver"],"created_at":"2026-01-11T20:00:23.250Z","updated_at":"2026-01-18T13:00:40.281Z","avatar_url":"https://github.com/KwabenBerko.png","language":"Java","funding_links":[],"categories":["\u003ca name=\"S\"\u003e \u003c/a\u003eS"],"sub_categories":[],"readme":"[![No Maintenance Intended](http://unmaintained.tech/badge.svg)](http://unmaintained.tech/)\n\n\n## DEPRECATED\n:bangbang: **This is no longer supported as Google now restricts access to SMS and Call Log Permissions**\n\nAn Android Broadcast Receiver Library For Capturing/Reading Incoming SMS.\n\n### Download:\n\nDownload via Gradle:\n\n```java\nimplementation 'com.github.KwabenBerko:smsbroadcastreceiverlib:0.0.1'\n```\n\nOr Maven:\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.github.KwabenBerko\u003c/groupId\u003e\n    \u003cartifactId\u003esmsbroadcastreceiverlib\u003c/artifactId\u003e\n    \u003cversion\u003e0.0.1\u003c/version\u003e\n    \u003ctype\u003epom\u003c/type\u003e\n\u003c/dependency\u003e\n```\n\n### Usage:\nCreate a custom class that inherits the `SmsBroadcastReceiver` class and override the onSmsReceived( ) method:\n\n```java\n\npublic class MySmsReceiver extends SmsBroadcastReceiver {\n\n    @Override\n    protected void onSmsReceived(SmsMessage smsMessage) {\n        Log.d(MainActivity.TAG, \"ONSMSRECEIVED\");\n        Log.d(MainActivity.TAG, smsMessage.getDisplayOriginatingAddress());\n        Log.d(MainActivity.TAG, smsMessage.getDisplayMessageBody());\n    }\n}\n\n```\n\n\nAdd the following permissions to your `AndroidManifest.xml` file: \n\n```xml\n\n\u003cuses-permission android:name=\"android.permission.RECEIVE_SMS\"/\u003e\n\u003cuses-permission android:name=\"android.permission.READ_SMS\"/\u003e\n\n```\n\n\nStill in the `AndroidManifest.xml` file, register your newly created custom class as a receiver:\n\n```xml\n\n\u003creceiver android:name=\".MySmsReceiver\"\u003e\n    \u003cintent-filter android:priority=\"9999\"\u003e\n        \u003caction android:name=\"android.provider.Telephony.SMS_RECEIVED\"/\u003e\n    \u003c/intent-filter\u003e\n\u003c/receiver\u003e\n\n```\nSend an sms to the device's phone number and see it in action.\n\n\nHappy Coding!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FKwabenBerko%2FSmsBroadcastReceiver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FKwabenBerko%2FSmsBroadcastReceiver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FKwabenBerko%2FSmsBroadcastReceiver/lists"}