Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pranavpandey/dynamic-rating
Ask and remind users to rate the app on Android.
https://github.com/pranavpandey/dynamic-rating
android library rate rating reminder
Last synced: 3 months ago
JSON representation
Ask and remind users to rate the app on Android.
- Host: GitHub
- URL: https://github.com/pranavpandey/dynamic-rating
- Owner: pranavpandey
- License: apache-2.0
- Created: 2022-07-03T15:22:53.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-07T15:53:36.000Z (about 1 year ago)
- Last Synced: 2024-04-14T05:42:56.291Z (9 months ago)
- Topics: android, library, rate, rating, reminder
- Language: Java
- Homepage: https://dynamic.pranavpandey.com
- Size: 939 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Dynamic Rating
[![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg?)](https://www.apache.org/licenses/LICENSE-2.0.html)
[![Release](https://img.shields.io/maven-central/v/com.pranavpandey.android/dynamic-rating)](https://search.maven.org/artifact/com.pranavpandey.android/dynamic-rating)A library to ask and remind users to rate the app on Android 4.0 (API 14) and above.
> It uses [AndroidX][androidx] so, first [migrate][androidx-migrate] your project to AndroidX.
It is dependent on Java 8 due to the dependency on [Dynamic Utils][dynamic-utils].
Since v1.1.0, it is targeting Java 17 to provide maximum compatibility.
Since v1.2.0, the minimum SDK is Android 4.4 (API 19) to comply with the latest policies.---
## Contents
- [Installation](#installation)
- [Usage](#usage)
- [Instance](#instance)
- [Initialize](#initialize)
- [Rate](#rate)
- [Sponsor](#sponsor)
- [Dependency](#dependency)
- [License](#license)---
## Installation
It can be installed by adding the following dependency to your `build.gradle` file:
```groovy
dependencies {
// For AndroidX enabled projects.
implementation 'com.pranavpandey.android:dynamic-rating:1.2.0'
}
```---
## Usage
It has various `conditions` that must be met to ask for the rating from the user.
> For a complete reference, please read the [documentation][documentation].
### Instance
`DynamicRating` instance must be used to access its methods.
```java
// Get instance with application context.
DynamicRating.getInstance(applicationContext);
```After that, its various public methods can be accessed via the returned instance.
### Initialize
It should be `initialized` to set the first launch `timestamp` and to increase the counter when
required.```java
// Initialize with default values.
DynamicRating.getInstance(applicationContext).initialize();
```### Rate
Call the `shouldRate()` method to check whether we can show the rating dialog to the user
according to the set conditions.```java
// Get instance and then check if we should ask to rate.
// Returns `true` if all the rating conditions are met.
DynamicRating.getInstance(context).initialize().shouldRate();
```### Sponsor
Please become a [sponsor][sponsor] to get a detailed guide and priority support.
### Dependency
It depends on the [dynamic-utils][dynamic-utils] and [dynamic-preferences][dynamic-preferences]
to perform various internal operations. So, their functions can also be used to perform other
useful operations.---
## Translations
- Chinese (Traditional) (zh-rTW) - 人工知能
---
## Author
Pranav Pandey
[![GitHub](https://img.shields.io/github/followers/pranavpandey?label=GitHub&style=social)](https://github.com/pranavpandey)
[![Follow on Twitter](https://img.shields.io/twitter/follow/pranavpandeydev?label=Follow&style=social)](https://twitter.com/intent/follow?screen_name=pranavpandeydev)
[![Donate via PayPal](https://img.shields.io/static/v1?label=Donate&message=PayPal&color=blue)](https://paypal.me/pranavpandeydev)---
## License
Copyright 2022-2024 Pranav Pandey
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.[androidx]: https://developer.android.com/jetpack/androidx
[androidx-migrate]: https://developer.android.com/jetpack/androidx/migrate
[documentation]: https://pranavpandey.github.io/dynamic-rating
[sponsor]: https://github.com/sponsors/pranavpandey
[dynamic-utils]: https://github.com/pranavpandey/dynamic-utils
[dynamic-preferences]: https://github.com/pranavpandey/dynamic-preferences
[dynamic-support]: https://github.com/pranavpandey/dynamic-support