jroddev / android-oss-release-tracker

Android Application to keep track of updates to Open Source Applications directly from the Repository
MIT License
99 stars 5 forks source link

Android OSS Release Tracker

<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png" alt="Get it on F-Droid" height="80">

or get the APK from the Releases Section.


WARNING

This application uses the QUERY_ALL_PACKAGES permission in order to fetch the currently installed version of each app in the tracker

See RenderItem

metaData.installedVersion.value = packageManager
            .getInstalledPackages(0)
            .find { it.packageName == metaData.packageName.value }
            ?.versionName ?: "not installed"