{"id":21129885,"url":"https://github.com/vimalcvs/material-smart-rating","last_synced_at":"2025-07-09T01:31:46.758Z","repository":{"id":56459051,"uuid":"297112740","full_name":"vimalcvs/material-smart-rating","owner":"vimalcvs","description":"😍⭐⭐Material Smart Rating App - An Android library that encourages users to rate the app on Google Play.⭐⭐😘","archived":false,"fork":false,"pushed_at":"2023-04-03T13:55:19.000Z","size":34226,"stargazers_count":38,"open_issues_count":0,"forks_count":20,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-05-02T03:44:07.695Z","etag":null,"topics":["android","context","dialog","feedback","feedback-form","gradle","icon","java","library","material","material-design","material-smart-rating","material-ui","nth","rate","rating","rating-dialog","smart","user-rates","user-rating"],"latest_commit_sha":null,"homepage":"https://www.technovimal.in/how-to-start-a-blog.html","language":"Java","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/vimalcvs.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}},"created_at":"2020-09-20T16:05:38.000Z","updated_at":"2024-03-24T18:55:03.000Z","dependencies_parsed_at":"2022-08-15T19:10:27.543Z","dependency_job_id":null,"html_url":"https://github.com/vimalcvs/material-smart-rating","commit_stats":null,"previous_names":[],"tags_count":23,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vimalcvs%2Fmaterial-smart-rating","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vimalcvs%2Fmaterial-smart-rating/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vimalcvs%2Fmaterial-smart-rating/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vimalcvs%2Fmaterial-smart-rating/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vimalcvs","download_url":"https://codeload.github.com/vimalcvs/material-smart-rating/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225476375,"owners_count":17480213,"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","context","dialog","feedback","feedback-form","gradle","icon","java","library","material","material-design","material-smart-rating","material-ui","nth","rate","rating","rating-dialog","smart","user-rates","user-rating"],"created_at":"2024-11-20T05:30:26.695Z","updated_at":"2024-11-20T05:31:13.255Z","avatar_url":"https://github.com/vimalcvs.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Material Design3 Smart Rating for Android\n[![Android CI](https://github.com/prathameshmm02/ThemeEngine/actions/workflows/android.yml/badge.svg)](https://github.com/prathameshmm02/ThemeEngine/actions/workflows/android.yml)\n[![](https://jitpack.io/v/vimalcvs/Material-Smart-Rating.svg)](https://jitpack.io/#vimalcvs/Material-Smart-Rating)\n[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n\nMaterial3 Smart app rate dialog for Android which takes user rating into consideration. If the user rates the app below the defined threshold rating, the dialog will change into a feedback form. Otherwise, It will take the user to the Google Play Store.\n\n## Screenshots\n### Themes \n| Light | Dark | Rate | Feedback |\n|:---:|:---:|:---:|:---:|\n| \u003cimg src=\"gif/light.gif\" width=\"180\"/\u003e | \u003cimg src=\"gif/dark.gif\" width=\"180\"/\u003e | \u003cimg src=\"gif/image1.jpg\" width=\"200\"/\u003e | \u003cimg src=\"gif/image2.jpg\" width=\"200\"/\u003e |\n\n\u003cb\u003eNote\u003c/b\u003e: This library best support ```Theme.Material3.DayNight```.\n\n## Features\n- Auto fetches the app icon to appear on top of the dialog\n- Make the dialog appear on a defined app session\n- Opens Feedback form if the user rates below the minimum threshold\n- Extracts the accent color from your app's theme\n- Customizable title, positive button and negative button texts\n- Customizable button colors and backgrounds\n- Override dialog redirection to Google Play or Feedback form according to your needs\n\nIf you want the dialog builder method and move the code to the `setOnClickListener()` method of your Activity class.\n \n## Installation\n\nAdd jitpack in your root build.gradle at the end of repositories:\n```\n\tallprojects {\n\t\trepositories {\n\t\t\t...\n\t\t\tmaven { url 'https://jitpack.io' }\n\t\t}\n```\nStep 2. Add the dependency\n\n```\n\tdependencies {\n\t\n\t    implementation 'com.github.vimalcvs:Material-Smart-Rating:6.0.0'\n\n\t}\n```\n\n## How to use\nUse the dialog as it is `setOnClickListener()` Just like \u003ca href=\"https://github.com/vimalcvs/material-smart-rating/blob/master/app/src/main/java/com/vimalcvs/myapplication/MainActivity.java\"\u003eMainActivity.java\u003c/a\u003e\n```java\n\n        Button rating_app = findViewById(R.id.rating_app);\n        rating_app.setOnClickListener(v -\u003e {\n\t\n\t   //Rating\n            FragmentManager fragmentManager = getSupportFragmentManager();\n            MaterialRating feedBackDialog = new MaterialRating();\n            feedBackDialog.show(fragmentManager, \"rating\");\n\t    \n\t    \n        });\n\t\n        Button feedback_app = findViewById(R.id.feedback_app);\n        feedback_app.setOnClickListener(v -\u003e {\n\t\n\t   //Feedback\n            FragmentManager fragmentManager = getSupportFragmentManager();\n            MaterialFeedback materialFeedback = new MaterialFeedback(\"technovimalin@gmail.com\");\n            materialFeedback.show(fragmentManager, \"feedback\");\n\t    \n        });\n```\n\n## Credits\n\nThis project was initiated by **TechnoVimal.in**. You can contribute to this project by submitting issues or/and by forking this repo and sending a pull request.\n\n![](https://mlsvormsouvm.i.optimole.com/DV0GLTY-FqZU1jKu/w:auto/h:auto/q:auto/https://www.technovimal.in/wp-content/uploads/2019/09/technovimal_moblie_logo_250x40-1.png)\n\nFollow us on:\n\n[![Facebook](http://codemybrainsout.com/files/img/fb.png)](https://www.facebook.com/vimalcvs)\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;[![Twitter](http://codemybrainsout.com/files/img/tw.png)](https://twitter.com/vimalvishwakar6)\n\nAuthor: [Vimal K. Vishwakarma](https://github.com/vimalcvs)\n\n# License\n```\nCopyright (C) 2022 Code Mr. Vimal K. Vishwakarma\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvimalcvs%2Fmaterial-smart-rating","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvimalcvs%2Fmaterial-smart-rating","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvimalcvs%2Fmaterial-smart-rating/lists"}