-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGetVersionApp.m
79 lines (63 loc) · 2.44 KB
/
GetVersionApp.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// Developer By Azozz ALFiras
// GetVersionApp - 29/5/2023
#import "GetVersionApp.h"
@interface LSApplicationWorkspace : NSObject
- (id)allApplications;
+ (id)defaultWorkspace;
@end
@interface LSBundleProxy
@property (nonatomic, copy) NSURL *appStoreReceiptURL;
@property (nonatomic, readonly) NSURL *bundleContainerURL;
@property (nonatomic, readonly) NSURL *bundleURL;
@property (nonatomic, readonly) NSURL *containerURL;
@property (nonatomic, readonly) NSURL *dataContainerURL;
@end
@interface LSApplicationProxy
@property (nonatomic,readonly) NSString * applicationIdentifier;
@property(readonly) NSString * bundleVersion;
@property(readonly) BOOL isAppUpdate;
+ (instancetype)applicationProxyForIdentifier:(NSString *)identifier;
@property (nonatomic, readonly) NSString *sourceAppIdentifier;// API_AVAILABLE(ios(8.2)); // e.g. App Store, TestFlight
@end
@implementation GetVersionApp
NSString *ExportPathApp(NSString *From,NSString *To,id String) {
NSString *str = [NSString stringWithFormat:@"%@",String];
NSString *stringlast = nil;
NSScanner *scanner = [NSScanner scannerWithString:str];
[scanner scanUpToString:[NSString stringWithFormat:@"%@",From] intoString:nil];
while (![scanner isAtEnd]) {
[scanner scanString:[NSString stringWithFormat:@"%@",From] intoString:nil];
[scanner scanUpToString:[NSString stringWithFormat:@"%@",To] intoString:&stringlast];
[scanner scanUpToString:[NSString stringWithFormat:@"%@",From] intoString:nil];
}
return stringlast;
}
+(NSArray *_Nullable) GetAllApps{
LSApplicationWorkspace *apps = [NSClassFromString(@"LSApplicationWorkspace") defaultWorkspace];
NSArray *appsArr = [apps allApplications];
NSMutableArray *installedApps = [[NSMutableArray alloc] init];
for(int i =0 ; i < [appsArr count];i++){
[installedApps addObject:appsArr[i]];
}
return installedApps;
}
+(NSString *_Nullable) GetVersionApp:(NSString *_Nullable)PathApp{
@try {
NSString *InfoPlist = [NSString stringWithFormat:@"%@.app/Info.plist",PathApp];
NSDictionary *dictionary = [NSDictionary dictionaryWithContentsOfFile:InfoPlist];
NSString *version = [dictionary objectForKey:@"CFBundleShortVersionString"];
return version;
}@catch(NSException*e){
return nil;
}
}
+(NSString *_Nullable)GetAllVersionApp{
NSArray *ArrayApp = [self GetAllApps];
for(NSDictionary* ArrayApth in ArrayApp) {
NSString *Export = ExportPathApp(@"file:///private",@".app",ArrayApth);
NSString *Version = [self GetVersionApp:Export];
NSLog(@"Version : %@",Version);
}
return nil;
}
@end