VersionTrackerSwift alternatives and similar libraries
Based on the "Utility" category.
Alternatively, view VersionTrackerSwift alternatives based on common mentions on social networks and blogs.
-
SwifterSwift
A handy collection of more than 500 native Swift extensions to boost your productivity. -
InAppSettingsKit
This iOS framework allows settings to be in-app in addition to or instead of being in the Settings app. -
Reusable
A Swift mixin for reusing views easily and in a type-safe way (UITableViewCells, UICollectionViewCells, custom UIViews, ViewControllers, Storyboards…) -
SwiftLinkPreview
DISCONTINUED. It makes a preview from an URL, grabbing all the information such as title, relevant texts and images. -
BFKit-Swift
BFKit-Swift is a collection of useful classes, structs and extensions to develop Apps faster. -
VTAcknowledgementsViewController
Acknowledgements screen displaying a list of licenses, for example from CocoaPods dependencies. -
SwiftFoundation
DISCONTINUED. Cross-Platform, Protocol-Oriented Programming base library to complement the Swift Standard Library. (Pure Swift, Supports Linux) -
AssistantKit
Easy way to detect iOS device properties, OS versions and work with screen sizes. Powered by Swift. -
DeviceGuru
DeviceGuru is a simple lib (Swift) to know the exact type of the device, e.g. iPhone 6 or iPhone 6s. Please ⭐️ this repo on the top right corner to make this repo popular. -
ZamzamKit
A Swift package for rapid development using a collection of micro utility extensions for Standard Library, Foundation, and other native frameworks.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of VersionTrackerSwift or a related project?
README
VersionTrackerSwift
VersionTrackerSwift is a versions / builds tracker to know which version has been installed by a user.
[](./assets/demo.png)
Usage
In your ApplicationDelegate, call the method track
to track the current version:
// iOS / tvOS
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
VersionTracker.track()
return true
}
// macOS
func applicationDidFinishLaunching(aNotification: NSNotification) {
VersionTracker.track()
return true
}
Then, call whenever one of the following methods to get the data you need:
VersionTracker.shared.track()
VersionTracker.shared.isFirstLaunchEver // Bool
VersionTracker.shared.isFirstVersionLaunch // Bool
VersionTracker.shared.isFirstBuildLaunch // Bool
VersionTracker.shared.versionHistory // [String]
VersionTracker.shared.buildHistory // [String]
VersionTracker.currentVersion // String
VersionTracker.currentBuild // String
Check out the examples and play with the version / build / number to have a concrete example.
How it works?
Each time you call the method track
, the version and build are stored in NSUserDefaults
if a new version / build is detected. Then, you can access to any information from the tracker.
The version and build number are the information you specify in your app's Info.plist.
Installation
CocoaPods
Add the following line in your Podfile:
pod 'VersionTrackerSwift'
Carthage
Add the following line to your Cartfile:
github "tbaranes/VersionTrackerSwift"
Manual
Just drag the Source/*.swift
files into your project.
Contribution
- If you found a bug, open an issue
- If you have a feature request, open an issue
- If you want to contribute, submit a pull request
Licence
VersionTrackerSwift is available under the MIT license. See the LICENSE file for more info.
*Note that all licence references and agreements mentioned in the VersionTrackerSwift README section above
are relevant to that project's source code only.