Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lmirosevic/GBVersionTracking
Track which versions of your iOS or Mac OS X app a user has previously installed, and the whole upgrade cookie crumb trail.
https://github.com/lmirosevic/GBVersionTracking
Last synced: about 2 hours ago
JSON representation
Track which versions of your iOS or Mac OS X app a user has previously installed, and the whole upgrade cookie crumb trail.
- Host: GitHub
- URL: https://github.com/lmirosevic/GBVersionTracking
- Owner: lmirosevic
- License: apache-2.0
- Created: 2013-01-30T10:56:13.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2021-09-01T13:40:03.000Z (about 3 years ago)
- Last Synced: 2024-04-26T09:02:47.788Z (7 months ago)
- Language: Objective-C
- Homepage:
- Size: 33.2 KB
- Stars: 275
- Watchers: 6
- Forks: 20
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GBVersionTracking ![Version](https://img.shields.io/cocoapods/v/GBVersionTracking.svg?style=flat) ![License](https://img.shields.io/badge/license-Apache_2-green.svg?style=flat)
Track which versions of your iOS or Mac OS X app a user has previously installed.
Usage
------------Call this on each app launch inside `application:didFinishLaunching:withOptions:` (iOS), or `-applicationDidFinishLaunching:` (OS X)
```objective-c
[GBVersionTracking track];
```Then call these whenever you want (in these examples the user has launched a bunch of previous versions, and this is the first time he's launched the new version which is version 3.0):
```objective-c
[GBVersionTracking isFirstLaunchEver]; //Returns: NO
[GBVersionTracking isFirstLaunchForVersion]; //Returns: YES
[GBVersionTracking isFirstLaunchForBuild]; //Returns: YES
[GBVersionTracking currentVersion]; //Returns: @"3.0"
[GBVersionTracking previousVersion]; //Returns: @"2.1"
[GBVersionTracking firstInstalledVersion]; //Returns: @"1.0"
[GBVersionTracking versionHistory]; //Returns: [@"1.0", @"2.0", @"2.1", @"3.0"]
[GBVersionTracking currentBuild]; //Returns: @"3004"
[GBVersionTracking previousBuild]; //Returns: @"2107"
[GBVersionTracking firstInstalledBuild]; //Returns: @"1000"
[GBVersionTracking buildHistory]; //Returns: [@"1000", @"2043", @"2107", @"3004"]
```N.B.: The build and version numbers are whatever you define in your app's Info.plist
Don't forget to import header:
```objective-c
#import
```Installation
------------Use CocoaPods, add this to your project's Podfile and run `pod install`:
```
pod 'GBVersionTracking'
```Copyright & License
------------Copyright 2015 Luka Mirosevic
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at:
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/lmirosevic/gbversiontracking/trend.png)](https://bitdeli.com/free "Bitdeli Badge")