All Projects → jrvansuita → Checknewappversionavailable

jrvansuita / Checknewappversionavailable

Licence: mit
It makes a request to Play Store to check if there is a new version of your published app

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Checknewappversionavailable

Apps Version Update
高扩展性的多APP版本更新API接口与后台管理系统
Stars: ✭ 50 (-27.54%)
Mutual labels:  update, version, app
Checkversionlib
版本检测升级(更新)库。an auto check version library(app update) on Android
Stars: ✭ 2,546 (+3589.86%)
Mutual labels:  update, version, app
bump
A generic version tracking and update tool
Stars: ✭ 33 (-52.17%)
Mutual labels:  update, version
SSAppUpdater
SSAppUpdater is an open-source framework that compares the current version of the app with the store version and returns the essential details of it like app URL, new app version number, new release note, etc. So you can either redirect or notify the user to update their app.
Stars: ✭ 58 (-15.94%)
Mutual labels:  update, version
Githubupdates
Cocoa framework to install application updates from GitHub releases.
Stars: ✭ 393 (+469.57%)
Mutual labels:  update, app
Bignews
Android增量更新框架差分包升级
Stars: ✭ 148 (+114.49%)
Mutual labels:  update, app
Uptime Monitor App
A PHP application to monitor uptime and ssl certificates
Stars: ✭ 205 (+197.1%)
Mutual labels:  update, notifications
react-native-appstore-version-checker
[Deprecated] A react native module to fetch the version of latest app from android playstore or apple app store
Stars: ✭ 88 (+27.54%)
Mutual labels:  version, playstore
Prism
Prism is a beautiful open-source wallpapers app for Android. It is built with Dart on top of Google's Flutter Framework.
Stars: ✭ 241 (+249.28%)
Mutual labels:  playstore, app
Diun
Receive notifications when an image is updated on a Docker registry
Stars: ✭ 704 (+920.29%)
Mutual labels:  update, notifications
App Framework
Applications for any device with HTML, CSS and JavaScript - free and open source!
Stars: ✭ 639 (+826.09%)
Mutual labels:  playstore, app
Base
Base is the foundation for creating modular, unit testable and highly pluggable, server-side node.js applications.
Stars: ✭ 67 (-2.9%)
Mutual labels:  update, app
Android Prince Of Versions
Android library for handling application updates.
Stars: ✭ 94 (+36.23%)
Mutual labels:  update, version
Backgroundupdate
后台更新APP(两句代码实现)
Stars: ✭ 80 (+15.94%)
Mutual labels:  update, notifications
Newscatchr
FOSS Android News Reader App
Stars: ✭ 216 (+213.04%)
Mutual labels:  news, app
Utlyz-CLI
Let's you to access your FB account from the command line and returns various things number of unread notifications, messages or friend requests you have.
Stars: ✭ 30 (-56.52%)
Mutual labels:  notifications, news
Hawkeye
A useful app for GitHub Notifications
Stars: ✭ 193 (+179.71%)
Mutual labels:  notifications, app
Android Ratingreviews
Simple star rating system bars, a view similar to the ones seen on Google Playstore. ⭐🌟✨
Stars: ✭ 110 (+59.42%)
Mutual labels:  playstore, app
Appupdater
🚀 AppUpdater一个专注于App更新,一键傻瓜式集成App版本升级的轻量开源库。(无需担心通知栏适配;无需担心重复点击下载;无需担心App安装等问题;这些AppUpdater都已帮您处理好。)
Stars: ✭ 406 (+488.41%)
Mutual labels:  update, version
News Ton
Stars: ✭ 7 (-89.86%)
Mutual labels:  news, playstore

Buy Me a Coffee at ko-fi.com

Release Android Arsenal

CheckNewAppVersionAvailable

This project makes a request to the Google Play Store to check if there is a new version of your published app. Should one be available, you can notify your users to apply the update.

Usage

Step 1. Add the JitPack repository to your build file:

allprojects {
	repositories {
		...
		maven { url "https://jitpack.io" }
	}
}

Step 2. Add the dependency

dependencies {
        compile 'com.github.jrvansuita:CheckNewAppVersionAvailable:v1.0.0'
}

Samples

You can take a look at the sample app located on this project.

Implementation

new CheckNewAppVersion(yourContext).setOnTaskCompleteListener(new CheckNewAppVersion.ITaskComplete() {
    @Override
    public void onTaskComplete(CheckNewAppVersion.Result result) {

        //Checks if there is a new version available on Google Play Store.
        result.hasNewVersion();

        //Get the new published version code of the app.
        result.getNewVersionCode();

        //Get the app current version code.
        result.getOldVersionCode();

        //Opens the Google Play Store on your app page to do the update.
        result.openUpdateLink();
    }
}).execute();

License

See the LICENSE. file for license rights and limitations (MIT).

Support on Beerpay

Hey dude! Help me out for a couple of 🍻!

Beerpay Beerpay

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].