{"id":25195982,"url":"https://github.com/simplisticated/tellme-for-android","last_synced_at":"2026-04-20T13:35:27.505Z","repository":{"id":140530618,"uuid":"178072685","full_name":"simplisticated/TellMe-for-Android","owner":"simplisticated","description":"Easy-to-use voice API for Android apps. Made in Kotlin.","archived":false,"fork":false,"pushed_at":"2019-04-10T09:41:50.000Z","size":166,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-24T09:06:25.558Z","etag":null,"topics":["android","kotlin","voice"],"latest_commit_sha":null,"homepage":null,"language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/simplisticated.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-03-27T20:51:13.000Z","updated_at":"2021-12-23T22:18:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"4eedbd2d-7b24-4c68-9585-6ee9b0a5dbd2","html_url":"https://github.com/simplisticated/TellMe-for-Android","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/simplisticated/TellMe-for-Android","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplisticated%2FTellMe-for-Android","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplisticated%2FTellMe-for-Android/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplisticated%2FTellMe-for-Android/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplisticated%2FTellMe-for-Android/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simplisticated","download_url":"https://codeload.github.com/simplisticated/TellMe-for-Android/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplisticated%2FTellMe-for-Android/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32049055,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"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","kotlin","voice"],"created_at":"2025-02-10T01:39:22.483Z","updated_at":"2026-04-20T13:35:27.475Z","avatar_url":"https://github.com/simplisticated.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://http://www.android.com\"\u003e\n\t\t\u003cimg src=\"https://img.shields.io/badge/android-21-green.svg?style=flat\"\u003e\n\t\u003c/a\u003e\n\t\u003ca href=\"https://jitpack.io/#igormatyushkin014/TellMe-for-Android\"\u003e\n\t\t\u003cimg src=\"https://jitpack.io/v/igormatyushkin014/TellMe-for-Android.svg\"\u003e\n\t\u003c/a\u003e\n\t\u003ca href=\"https://tldrlegal.com/license/apache-license-2.0-(apache-2.0)\"\u003e\n\t\t\u003cimg src=\"https://img.shields.io/badge/License-Apache 2.0-blue.svg?style=flat\"\u003e\n\t\u003c/a\u003e\n\u003c/p\u003e\n\n## At a Glance\n\n`TellMe` is a library that simplifies work with voice in Android.\n\n## How to Get Started\n\nAdd `jitpack.io` repository to your project:\n\n```javascript\nallprojects {\n    repositories {\n        jcenter()\n        maven { url \"https://jitpack.io\" }\n    }\n}\n```\n\nThen add `TellMe` to dependencies list:\n\n```javascript\ndependencies {\n    implementation 'com.github.igormatyushkin014:TellMe-for-Android:1.2.1'\n}\n```\n\n## Requirements\n\n* Android SDK 21 and later\n* Android Studio 3.3 and later\n* Kotlin 1.3 or later\n\n## Usage\n\nUse it from any activity, fragment or service:\n\n```kotlin\ntellMeIn(Locale.ENGLISH)\n    .say(\"Hello\")\n```\n\nAnother example with chain of texts:\n\n```kotlin\ntellMeIn(Locale.ENGLISH)\n    .say(\"Hello! How are you doing?\")\n    .say(\"What's up?\")\n    .say(\"Tell me something new.\")\n```\n\nWant more flexibility? Add a listener:\n\n```kotlin\ntellMeIn(Locale.ENGLISH)\n    .say(\"Hello! How are you doing?\")\n    .setOnSpeechListener(\n        object : Speaker.OnSpeechListener {\n            override fun onStartedSaying(text: String) {\n                // Called when text is going to be pronounced\n            }\n\n            override fun onProgress(text: String, position: SpeechPosition) {\n                val currentlyPronouncing = text.substring(position.start, position.start + position.length)\n                // Called when a part of source text is going to be pronounced\n            }\n\n            override fun onFinishedSaying(text: String) {\n                // Called when finished speaking\n            }\n        }\n    )\n```\n\nAlso, to make sure that all resources are released, call `releaseWhenFinish()` anywhere in the chain:\n\n```kotlin\ntellMeIn(Locale.ENGLISH)\n    .say(\"Hello! How are you doing?\")\n    .say(\"What's up?\")\n    .say(\"Tell me something new.\")\n    .releaseWhenFinish()\n```\n\nUse this method when you don't need to use text-to-speech conversion frequently.\n\n## License\n\n`TellMe` is available under the Apache 2.0 license. See the [LICENSE](./LICENSE) file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplisticated%2Ftellme-for-android","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimplisticated%2Ftellme-for-android","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplisticated%2Ftellme-for-android/lists"}