https://github.com/statickidz/versionchecker
Simple Android library to check the version of the application with Google Play and force update.
https://github.com/statickidz/versionchecker
Last synced: about 1 year ago
JSON representation
Simple Android library to check the version of the application with Google Play and force update.
- Host: GitHub
- URL: https://github.com/statickidz/versionchecker
- Owner: statickidz
- License: other
- Created: 2016-09-12T12:50:16.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2020-02-10T10:56:21.000Z (over 6 years ago)
- Last Synced: 2025-03-28T07:51:12.523Z (about 1 year ago)
- Language: Java
- Size: 91.8 KB
- Stars: 10
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
Android Version Checker [  ](https://bintray.com/statickidz/maven/VersionChecker/_latestVersion)
=======
VersionChecker is an Android library to check the version of the application with Google Play Store and force update.
How to integrate
================
Add this dependency in your `build.gradle`:
```xml
dependencies {
compile 'com.statickidz.versionchecker:versionchecker:1.0.2'
}
```
How to use
==========
The simplest integration:
```java
public class MainActivity extends AppCompatActivity {
VersionChecker versionChecker;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
versionChecker = new VersionChecker(this);
versionChecker.check();
}
}
```
Have a look at the sample project for other examples.
License
=======
Licensed under the Apache License. See the [LICENSE.md](LICENSE.md) file for more details.