What's new

Tutorial JSON APP UPDATER

R A D Z

Forum Veteran
Elite
Joined
Jul 31, 2016
Posts
2,168
Reaction
2,924
Points
949

Radz App Updater 2024

Radz App Updater 2024 is an Android library that helps developers to keep their apps up-to-date by checking for updates automatically. It fetches the latest version details from a provided JSON file and prompts the user to update the app if a new version is available.

1714977457021.png
1714977473668.png

How to Include​

Step 1. Add the repository to your project settings.gradle:

Code:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
maven { url = uri("https://jitpack.io") }
    }
}

Step 2. Add the dependency​

Code:
dependencies {
implementation ("com.github.Radzdevteam:artifact:1.1")
}

Usage​

In your MainActivity, add the following code to check for updates:
Code:
new RadzUpdater(this, "https://raw.githubusercontent.com/Radzdevteam/JSON-APP-UPDATER/master/updater.json").checkForUpdates();

JSON Format​

The JSON file at the provided URL should have the following format:
Code:
{
  "latestVersion": "2.0.1",
  "url": "https://github.com/Radzdevteam/RadzUpdater2024/radzupdater.apk",
  "releaseNotes": [
    "- Bug fixes"
  ]
}

Source: You do not have permission to view the full content of this post. Log in or register now.
 

Attachments

Similar threads

Users search this thread by keywords

  1. json
Back
Top