mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
15 lines
470 B
Objective-C
15 lines
470 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface BuildConfig : NSObject
|
|
|
|
+ (instancetype _Nonnull)sharedBuildConfig;
|
|
|
|
@property (nonatomic, strong, readonly) NSString * _Nonnull hockeyAppId;
|
|
@property (nonatomic, readonly) int32_t apiId;
|
|
@property (nonatomic, strong, readonly) NSString * _Nonnull apiHash;
|
|
@property (nonatomic, readonly) bool isInternalBuild;
|
|
@property (nonatomic, readonly) bool isAppStoreBuild;
|
|
@property (nonatomic, readonly) int64_t appStoreId;
|
|
|
|
@end
|