-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.m
More file actions
28 lines (23 loc) · 831 Bytes
/
main.m
File metadata and controls
28 lines (23 loc) · 831 Bytes
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
//
// 2019-07-25: Version 1.6
//About the Developer:
//There's a lot that goes into each app development. At StarHOST, true to the spirit of a full service mobile aplication development firm we just don't code your app but we actively work with you to create solutions for your business.
//Currently StarHOST is the only Localized mobile application provider in Bangladesh.
//For more information about our products and services visit:
//http://starhostbd.com/apps/
//For any question(s)/comment(s) please email us at:
//info@starhostbd.com
//Development credits:
//iOS XCode Engineering and UI design:
//I.M. Tanjin Ahsan
//Production Management:
//Kazi Zahidul Alam
//
#import <UIKit/UIKit.h>
int main(int argc, char *argv[])
{
@autoreleasepool
{
return UIApplicationMain(argc, argv, nil, @"ReaderAppDelegate");
}
}