mirror of
https://github.com/movixcorp/MovixOpenSource.git
synced 2026-08-04 13:06:00 +00:00
21 lines
573 B
Objective-C
21 lines
573 B
Objective-C
#import "UpdateModule.h"
|
|
|
|
@implementation UpdateModule
|
|
|
|
RCT_EXPORT_MODULE()
|
|
|
|
RCT_EXPORT_METHOD(getVersionName:(RCTPromiseResolveBlock)resolve
|
|
reject:(RCTPromiseRejectBlock)reject)
|
|
{
|
|
NSString *version = [NSBundle mainBundle].infoDictionary[@"CFBundleShortVersionString"];
|
|
resolve(version ?: @"unknown");
|
|
}
|
|
|
|
RCT_EXPORT_METHOD(getVersionCode:(RCTPromiseResolveBlock)resolve
|
|
reject:(RCTPromiseRejectBlock)reject)
|
|
{
|
|
NSString *build = [NSBundle mainBundle].infoDictionary[@"CFBundleVersion"];
|
|
resolve(@([build integerValue]));
|
|
}
|
|
|
|
@end
|