{"id":20714258,"url":"https://github.com/theogrammer/kotlin-simpletweet","last_synced_at":"2026-04-22T02:33:42.060Z","repository":{"id":89990192,"uuid":"468975126","full_name":"theogrammer/Kotlin-SimpleTweet","owner":"theogrammer","description":null,"archived":false,"fork":false,"pushed_at":"2022-03-19T03:57:54.000Z","size":1913,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-17T21:42:59.685Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Kotlin","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/theogrammer.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":"2022-03-12T04:08:25.000Z","updated_at":"2022-03-12T04:21:27.000Z","dependencies_parsed_at":"2023-05-30T19:45:46.212Z","dependency_job_id":null,"html_url":"https://github.com/theogrammer/Kotlin-SimpleTweet","commit_stats":null,"previous_names":["theogrammer/kotlin-simpletweet"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theogrammer%2FKotlin-SimpleTweet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theogrammer%2FKotlin-SimpleTweet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theogrammer%2FKotlin-SimpleTweet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theogrammer%2FKotlin-SimpleTweet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/theogrammer","download_url":"https://codeload.github.com/theogrammer/Kotlin-SimpleTweet/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242988235,"owners_count":20217537,"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":[],"created_at":"2024-11-17T02:30:31.309Z","updated_at":"2025-12-24T02:15:08.382Z","avatar_url":"https://github.com/theogrammer.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Project 2 - *SimpleTweet*\n\n**SimpleTweet** is an android app that allows a user to view his Twitter timeline and post a new tweet. The app utilizes [Twitter REST API](https://dev.twitter.com/rest/public).\n\n# PART 2\n\nTime spent: **3** hours spent in total\n\n## User Stories\n\nThe following **required** functionality is completed:\n\n- [x] User can **compose and post a new tweet**\n  - [x] User can click a “Compose” icon in the Action Bar on the top right\n  - [x] User can then enter a new tweet and post this to twitter\n  - [x] User is taken back to home timeline with **new tweet visible** in timeline\n  - [x] Newly created tweet should be manually inserted into the timeline and not rely on a full refresh\n  - [x] User can **see a counter with total number of characters left for tweet** on compose tweet page\n\nThe following **optional** features are implemented:\n\n- [x] User is using **\"Twitter branded\" colors and styles**\n- [ ] User can click links in tweets launch the web browser \n- [ ] User can **select \"reply\" from detail view to respond to a tweet**\n- [ ] The \"Compose\" action is moved to a FloatingActionButton instead of on the AppBar\n- [ ] Compose tweet functionality is build using modal overlay\n- [ ] Use Parcelable instead of Serializable using the popular [Parceler library](http://guides.codepath.org/android/Using-Parceler).\n- [ ] User can **open the twitter app offline and see last loaded tweets**. Persisted in SQLite tweets are refreshed on every application launch. While \"live data\" is displayed when app can get it from Twitter API, it is also saved for use in offline mode.\n- [ ] When a user leaves the compose view without publishing and there is existing text, prompt to save or delete the draft. If saved, the draft should then be **persisted to disk** and can later be resumed from the compose view.\n- [ ] Enable your app to receive implicit intents from other apps. When a link is shared from a web browser, it should pre-fill the text and title of the web page when composing a tweet. \n\nThe following **additional** features are implemented:\n\n- [ ] List anything else that you can get done to improve the app functionality!\n\n## Video Walkthrough\n\nHere's a walkthrough of implemented user stories:\n\n\u003cimg src='simpletweet2.gif' title='Video Walkthrough' width='' alt='Video Walkthrough' /\u003e\n\nGIF created with [LiceCap](http://www.cockos.com/licecap/).\n\n# PART 1\n\nTime spent: **3** hours spent in total\n\n## User Stories\n\nThe following **required** functionality is completed:\n\n- [x] User can **sign in to Twitter** using OAuth login\n- [x]\tUser can **view tweets from their home timeline**\n  - [x] User is displayed the username, name, and body for each tweet\n  - [x] User is displayed the [relative timestamp](https://gist.github.com/nesquena/f786232f5ef72f6e10a7) for each tweet \"8m\", \"7h\"\n- [x] User can refresh tweets timeline by pulling down to refresh\n\nThe following **optional** features are implemented:\n\n- [ ] User can view more tweets as they scroll with infinite pagination\n- [ ] Improve the user interface and theme the app to feel \"twitter branded\"\n- [ ] Links in tweets are clickable and will launch the web browser\n- [ ] User can tap a tweet to display a \"detailed\" view of that tweet\n- [ ] User can see embedded image media within the tweet detail view\n- [ ] User can watch embedded video within the tweet\n- [ ] User can open the twitter app offline and see last loaded tweets\n- [ ] On the Twitter timeline, leverage the CoordinatorLayout to apply scrolling behavior that hides / shows the toolbar.\n\nThe following **additional** features are implemented:\n\n- [ ] List anything else that you can get done to improve the app functionality!\n\n## Video Walkthrough\n\nHere's a walkthrough of implemented user stories:\n\n\u003cimg src='simpletweet.gif' width='' alt='Video Walkthrough' /\u003e\n\nGIF created with [LiceCap](http://www.cockos.com/licecap/).\n\n## Notes\n\nDescribe any challenges encountered while building the app.\n\n## Open-source libraries used\n\n- [Android Async HTTP](https://github.com/codepath/CPAsyncHttpClient) - Simple asynchronous HTTP requests with JSON parsing\n- [Glide](https://github.com/bumptech/glide) - Image loading and caching library for Android\n\n## License\n\n    Copyright [2022] [Tewodros Amare]\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n        http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheogrammer%2Fkotlin-simpletweet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftheogrammer%2Fkotlin-simpletweet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheogrammer%2Fkotlin-simpletweet/lists"}