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. -
SwiftGen
The Swift code generator for your assets, storyboards, Localizable.strings, … — Get rid of all String-based APIs! -
R.swift
Strong typed, autocompleted resources like images, fonts and segues in Swift projects -
SwiftGen-Storyboard
The Swift code generator for your assets, storyboards, Localizable.strings, … — Get rid of all String-based APIs! -
swift-protobuf
Plugin and runtime library for using protobuf with Swift -
Dollar
A functional tool-belt for Swift Language similar to Lo-Dash or Underscore.js in Javascript -
ExSwift
a set of Swift extensions for standard types and classes. -
Periphery
A tool to identify unused code in Swift projects. -
EZSwiftExtensions
:smirk: How Swift standard types and classes were supposed to work. -
DifferenceKit
💻 A fast and flexible O(n) difference algorithm framework for Swift collection. -
Result
Swift type modelling the success/failure of arbitrary operations. -
LifetimeTracker
Find retain cycles / memory leaks sooner. -
DeepDiff
🦀Amazingly incredible extraordinary lightning fast diffing in Swift -
Device
Light weight tool for detecting the current device and screen size written in swift. -
SwiftLinkPreview
It makes a preview from an URL, grabbing all the information such as title, relevant texts and images. -
WhatsNew
Showcase new features after an app update similar to Pages, Numbers and Keynote. -
Codextended
Extensions giving Swift's Codable API type inference super powers 🦸♂️🦹♀️ -
AwesomeCache
Delightful on-disk cache (written in Swift) -
Popsicle
Delightful, extensible Swift value interpolation framework. -
SwiftyJSONAccelerator
macOS app to generate Swift 5 code for models from JSON (with Codeable) -
Sugar
:coffee: Something sweet that goes great with your Cocoa -
protobuf-swift
Google ProtocolBuffers for Apple Swift -
Playbook
📘A library for isolated developing UI components and automatically taking snapshots of them. -
ReadabilityKit
Preview extractor for news, articles and full-texts in Swift -
PDFGenerator
A simple generator of PDF written in Swift. -
ObjectiveKit
Swift-friendly API for a set of powerful Objective C runtime functions. -
Compass
:earth_africa: Compass helps you setup a central navigation system for your application -
Delegated
👷♀️ Closure-based delegation without memory leaks -
Bow
🏹 Bow is a cross-platform library for Typed Functional Programming in Swift -
Solar
A Swift micro library for generating Sunrise and Sunset times. -
Rugby
🏈 Cache CocoaPods for faster rebuild and indexing Xcode project -
Pythonic.swift
Pythonic tool-belt for Swift – a Swift implementation of selected parts of Python standard library. -
SwiftyUtils
All the reusable code that we need in each project -
BetterSafariView
A better way to present a SFSafariViewController or start a ASWebAuthenticationSession in SwiftUI. -
SwiftPlantUML
A command-line tool and Swift Package for generating class diagrams powered by PlantUML
Appwrite - The open-source backend cloud platform
* 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.