{"id":41591405,"url":"https://github.com/messagebird/android-sdk","last_synced_at":"2026-01-24T09:31:35.938Z","repository":{"id":251007534,"uuid":"744423998","full_name":"messagebird/android-sdk","owner":"messagebird","description":"Android SDK repository. ","archived":false,"fork":false,"pushed_at":"2024-07-31T07:50:29.000Z","size":114,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-07-31T09:08:08.903Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/messagebird.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-01-17T09:18:26.000Z","updated_at":"2024-07-31T09:08:13.969Z","dependencies_parsed_at":"2024-07-31T09:18:11.300Z","dependency_job_id":null,"html_url":"https://github.com/messagebird/android-sdk","commit_stats":null,"previous_names":["messagebird/android-sdk"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/messagebird/android-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/messagebird%2Fandroid-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/messagebird%2Fandroid-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/messagebird%2Fandroid-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/messagebird%2Fandroid-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/messagebird","download_url":"https://codeload.github.com/messagebird/android-sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/messagebird%2Fandroid-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28723233,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T08:27:05.734Z","status":"ssl_error","status_checked_at":"2026-01-24T08:27:01.197Z","response_time":89,"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":[],"created_at":"2026-01-24T09:31:35.878Z","updated_at":"2026-01-24T09:31:35.926Z","avatar_url":"https://github.com/messagebird.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bird Android SDK\n\nBird Android SDK is a single integration point to bring the power of BirdCRM in building connected user experience to your application.\n\nUsing Bird Android SDK, you get access to:\n\n- Collect Contacts\n- Send Push Notifications\n- Event Tracking\n\n## How to\n\nYou can find full documentation [here](https://docs.bird.com/api/client-sdks/sdk-integration/android-sdk).\n\n### Step 1: Add Bird Android SDK dependency\n\nAdd the `com.bird:android-sdk` dependency to your app’s `build.gradle`.\n\n```gradle\ndependencies {\n  implementation(\"com.bird:android-sdk:+\")\n}\n```\n\nMake sure to run Gradle Sync to build your project using the newly added dependency.\n\n### Step 2: Set Application Key\nAdd a new string to your app's `strings.xml` with the name `com_bird_application_key`. You can get the value of this application key from **Bird Dashboard / Preferences / Applications**.\n\n```xml\n\u003cresources\u003e\n    \u003cstring translatable=\"false\"  name=\"com_bird_application_key\"\u003eYOUR_APPLICATION_KEY\u003c/string\u003e\n\u003c/resources\u003e\n```\n\n### Step 3: Add permissions\n\nNo additional permissions need to be set in AndroindManifest.xml. The user will be asked to give Push Notification permissions in runtime.\"\n\n### Step 4: Push Notifications\n\n#### Firebase\n\n**Add Firebase credentials file**\n\nGet `google-service.json` file from your Firebase project and add it to your android application. See more information here\n\nAnd add the `com.google.gms.google-services` plugin to both your top-level build.gradle and your app’s build.gradle.\n\n```gradle\n// Inside the top-level build.gradle\nplugins {\n    id(\"com.google.gms.google-services\") version \"4.4.0\" apply false\n}\n```\n\n```gradle\n// Inside app's build.gradle\nplugins {\n    id(\"com.google.gms.google-services\")\n}\n```\n\nMake sure to run Gradle Sync to build your project using the newly added plugin.\n\n**Add BirdFirebaseMessagingService**\n\nAdd the following `com.bird.BirdFirebaseMessagingService` as a service inside `AndroindManifest.xml`.\n\n```xml\n\u003cmanifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:tools=\"http://schemas.android.com/tools\"\u003e\n\n    \u003capplication\u003e\n\n        \u003c!-- START: Add This Part --\u003e\n        \u003cservice \n            android:name=\"com.bird.BirdFirebaseMessagingService\"\n            android:exported=\"false\"\n            tools:ignore=\"Instantiatable\"\u003e\n        \u003cintent-filter\u003e\n            \u003caction android:name=\"com.google.firebase.MESSAGING_EVENT\" /\u003e\n        \u003c/intent-filter\u003e\n        \u003c/service\u003e\n        \u003c!-- END --\u003e\n\n    \u003c/application\u003e\n\n\u003c/manifest\u003e\n```\n\n\n## Examples:\n\n- [Push Notifications](/examples/pushnotifications/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmessagebird%2Fandroid-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmessagebird%2Fandroid-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmessagebird%2Fandroid-sdk/lists"}