BazaarUpdater is an Android library that simplifies checking for updates and managing the update process for your application on Bazaar.
To get started with BazaarUpdater, you need to add the JitPack repository to your project and include the library dependency.
Kotlin DSL
repositories {
maven { url = uri("https://jitpack.io") }
}groovy
repositories {
maven { url 'https://jitpack.io' }
}Kotlin DSL
dependencies {
implementation("com.github.cafebazaar:bazaarUpdater:1.1.2")
}groovy
dependencies {
implementation 'com.github.cafebazaar:bazaarUpdater:1.1.2'
}To check if there are any updates available for your application on Bazaar, use the following code:
BazaarUpdater.getLastUpdateState(context = context) { result ->
when(result) {
UpdateResult.AlreadyUpdated -> {
// Handle the case where the app is already updated
}
is UpdateResult.Error -> {
// Handle the error case
val errorMessage = result.getError()?.message
}
is UpdateResult.NeedUpdate -> {
// Handle the case where an update is needed
val targetVersion = result.getTargetVersionCode()
}
}
}Java Usage
BazaarUpdater.getLastUpdateState(context, result -> {
if (result.isAlreadyUpdated()) {
// Handle the case where the app is already updated
} else if (result.isUpdateNeeded()) {
// Handle the case where an update is needed
long targetVersion = result.getTargetVersionCode();
} else {
// Handle the error case
String errorMessage = result.getError().getMessage();
}
});3. NeedUpdate: Indicates that a new update is available. Use result.getTargetVersionCode() to get the version code of the update.
To update your application when a new version is available on Bazaar, simply call:
BazaarUpdater.updateApplication(context = context)This feature allows you to enable automatic updates for your apps in Bazaar. Once enabled, Bazaar will check for application updates daily. If an update is available and Bazaar is the update owner of your app, it will automatically download and install the update.
⚠️ Note: This feature requires Bazaar version 26.2.0 or higher.
⚠️ Package Name : Ensure the package name (also known as the application ID in Android) in your source code exactly matches the one used in the already published app. This is typically defined in your app's AndroidManifest.xml file.
⚠️ Signature : The app must be signed with the same key as the published version. Make sure you’re using the correct keystore and alias that were used for the original app.
To check whether Auto Update is enabled for your application in Bazaar, use the following code:
BazaarAutoUpdater.getLastAutoUpdateState(context = this) { result ->
when (result.getState()) {
AutoUpdateState.ENABLED -> {
// Auto Update is active — nothing to do
}
AutoUpdateState.DISABLED -> {
// Auto Update is supported but turned off — prompt the user to enable it
}
AutoUpdateState.NOT_SUPPORTED -> {
// Bazaar is not installed or needs to be updated to version 26.2.0+
val errorMessage = result.getError()?.message
}
}
}Java Usage
BazaarAutoUpdater.getLastAutoUpdateState(context, result -> {
switch (result.getState()) {
case ENABLED:
// Auto Update is active — nothing to do
break;
case DISABLED:
// Auto Update is supported but turned off — prompt the user to enable it
break;
case NOT_SUPPORTED:
// Bazaar is not installed or needs to be updated to version 26.2.0+
String errorMessage = result.getError().getMessage();
break;
}
});2. DISABLED: Bazaar supports Auto Update (version 26.2.0+) but the user has not enabled it. Call enableAutoUpdate() to prompt the user.
3. NOT_SUPPORTED: Bazaar is not installed or its version is below 26.2.0. Use result.getError() for details.
To open the Bazaar Auto Update settings page for your application, call:
BazaarAutoUpdater.enableAutoUpdate(context = context)Contributions are welcome! If you have suggestions or improvements, please open an issue or submit a pull request.
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Made with 💚 in Bazaar Hackathon 1403
