application_version
Application version plugin project.
0.0.3
60 downloads/mo
#3374 most downloaded on pub.dev
kherel/application_version
What this package is like to depend on
Last release 2 years ago
no release in 18 months
Too new to tell
only 2 release windows
Nearly every release is documented
notes for 3 of 3 stable releases
Nothing withdrawn
no release was ever pulled
2 years old
3 releases · first in 2024
0 releases in the last 12 months
see the full history below
Release timeline
3 releases · Jun 2024 to Jul 2024
2025
2026
Releases
latest 3-
0.0.304 Jul 2024 -
0.0.225 Jun 2024 -
0.0.125 Jun 2024Release notes
Open source →Added
- Initial release of
application_versionplugin. - Added support for retrieving the app version and build number on both Android and iOS.
- Android: Fetches version information from
PackageInfo. - iOS: Fetches version information from
Info.plist.
- Android: Fetches version information from
- Implemented
VersionDataclass in Dart with the following features:- Parsing: Parses version strings and ensures semantic versioning (e.g., "1.0" becomes "1.0.0").
- Comparison: Implements the
Comparable<VersionData>interface for comparing versions. - Equality: Overrides
==andhashCodefor proper equality checks and use in collections. - String Representation: Provides a
toStringmethod to display the version in a readable format.
- Initial release of