Newer
Older
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
//
// NSBundle+Extension.h
//
// Created by Nikolay Demyankov on 10.08.15.
//
#import <Foundation/Foundation.h>
/**
* Category for the NSBundle class.
*/
@interface NSBundle (HCPExtension)
/**
* Getter for the current build version of the application.
*
* @return build version of the app
*/
+ (NSString *)applicationBuildVersion;
/**
* Getter for application's version name.
*
* @return version name of the app
*/
+ (NSString *)applicationVersionName;
/**
* Path to the www folder in the application bundle.
*
* @return path to www folder
*/
+ (NSString *)pathToWwwFolder;
/**
* Path to the config.xml file in the project.
*
* @return path to the config file
*/
+ (NSString *)pathToCordovaConfigXml;
@end