I have an application on the play store and for first time i have updated it. How to alert the users that there is a new Updation available in google play store through the app when they open it,just like a notification or alert and redirect to that linked apk page.
startActivity(new Intent( Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=com.novtory.provider") ));
I think the above code may help to link the page but i want to know how to send a notification when there is a new update available without using any third party library.Please help me out.