mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
542 B
C
22 lines
542 B
C
9 years ago
|
//
|
||
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
||
|
//
|
||
|
|
||
|
@interface AppVersion : NSObject
|
||
|
|
||
|
@property (nonatomic, readonly) NSString *firstAppVersion;
|
||
|
@property (nonatomic, readonly) NSString *lastAppVersion;
|
||
|
@property (nonatomic, readonly) NSString *currentAppVersion;
|
||
|
|
||
8 years ago
|
// Unlike lastAppVersion, this property isn't updated until
|
||
|
// appLaunchDidComplete is called.
|
||
|
@property (nonatomic, readonly) NSString *lastCompletedLaunchAppVersion;
|
||
|
|
||
9 years ago
|
+ (instancetype)instance;
|
||
|
|
||
8 years ago
|
- (void)appLaunchDidComplete;
|
||
|
|
||
8 years ago
|
- (BOOL)isFirstLaunch;
|
||
|
|
||
9 years ago
|
@end
|