├── README.md └── eShieldDemo ├── eShieldDemo.xcodeproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── qiaobeisi.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcuserdata │ └── qiaobeisi.xcuserdatad │ │ ├── xcschemes │ │ ├── xcschememanagement.plist │ │ └── eShieldDemo.xcscheme │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist └── project.pbxproj ├── eShieldDemo ├── ViewController.h ├── AppDelegate.h ├── main.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── CoreTelephony.h ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── AppDelegate.m └── ViewController.m ├── eShieldDemoTests ├── Info.plist └── eShieldDemoTests.m └── eShieldDemoUITests ├── Info.plist └── eShieldDemoUITests.m /README.md: -------------------------------------------------------------------------------- 1 | # BAHStk 2 | 使用私有 API 访问 SIM 卡工具包菜单信息 3 | -------------------------------------------------------------------------------- /eShieldDemo/eShieldDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /eShieldDemo/eShieldDemo.xcodeproj/project.xcworkspace/xcuserdata/qiaobeisi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaseBBHuang/STKitDemo/HEAD/eShieldDemo/eShieldDemo.xcodeproj/project.xcworkspace/xcuserdata/qiaobeisi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /eShieldDemo/eShieldDemo/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // eShieldDemo 4 | // 5 | // Created by 乔贝斯 on 16/9/7. 6 | // Copyright © 2016年 FFT. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface ViewController : UIViewController 13 | 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /eShieldDemo/eShieldDemo/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // eShieldDemo 4 | // 5 | // Created by 乔贝斯 on 16/9/7. 6 | // Copyright © 2016年 FFT. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /eShieldDemo/eShieldDemo/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // eShieldDemo 4 | // 5 | // Created by 乔贝斯 on 16/9/7. 6 | // Copyright © 2016年 FFT. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /eShieldDemo/eShieldDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /eShieldDemo/eShieldDemoTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /eShieldDemo/eShieldDemoUITests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /eShieldDemo/eShieldDemo.xcodeproj/xcuserdata/qiaobeisi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | eShieldDemo.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | 94503D4D1D80208A00A28D05 16 | 17 | primary 18 | 19 | 20 | 94503D661D80208A00A28D05 21 | 22 | primary 23 | 24 | 25 | 94503D711D80208A00A28D05 26 | 27 | primary 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /eShieldDemo/eShieldDemoTests/eShieldDemoTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // eShieldDemoTests.m 3 | // eShieldDemoTests 4 | // 5 | // Created by 乔贝斯 on 16/9/7. 6 | // Copyright © 2016年 FFT. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface eShieldDemoTests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation eShieldDemoTests 16 | 17 | - (void)setUp { 18 | [super setUp]; 19 | // Put setup code here. This method is called before the invocation of each test method in the class. 20 | } 21 | 22 | - (void)tearDown { 23 | // Put teardown code here. This method is called after the invocation of each test method in the class. 24 | [super tearDown]; 25 | } 26 | 27 | - (void)testExample { 28 | // This is an example of a functional test case. 29 | // Use XCTAssert and related functions to verify your tests produce the correct results. 30 | } 31 | 32 | - (void)testPerformanceExample { 33 | // This is an example of a performance test case. 34 | [self measureBlock:^{ 35 | // Put the code you want to measure the time of here. 36 | }]; 37 | } 38 | 39 | @end 40 | -------------------------------------------------------------------------------- /eShieldDemo/eShieldDemo/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /eShieldDemo/eShieldDemoUITests/eShieldDemoUITests.m: -------------------------------------------------------------------------------- 1 | // 2 | // eShieldDemoUITests.m 3 | // eShieldDemoUITests 4 | // 5 | // Created by 乔贝斯 on 16/9/7. 6 | // Copyright © 2016年 FFT. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface eShieldDemoUITests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation eShieldDemoUITests 16 | 17 | - (void)setUp { 18 | [super setUp]; 19 | 20 | // Put setup code here. This method is called before the invocation of each test method in the class. 21 | 22 | // In UI tests it is usually best to stop immediately when a failure occurs. 23 | self.continueAfterFailure = NO; 24 | // UI tests must launch the application that they test. Doing this in setup will make sure it happens for each test method. 25 | [[[XCUIApplication alloc] init] launch]; 26 | 27 | // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. 28 | } 29 | 30 | - (void)tearDown { 31 | // Put teardown code here. This method is called after the invocation of each test method in the class. 32 | [super tearDown]; 33 | } 34 | 35 | - (void)testExample { 36 | // Use recording to get started writing UI tests. 37 | // Use XCTAssert and related functions to verify your tests produce the correct results. 38 | } 39 | 40 | @end 41 | -------------------------------------------------------------------------------- /eShieldDemo/eShieldDemo/CoreTelephony.h: -------------------------------------------------------------------------------- 1 | // 2 | // CoreTelephony.h 3 | // eShieldDemo 4 | // 5 | // Created by 乔贝斯 on 16/9/9. 6 | // Copyright © 2016年 FFT. All rights reserved. 7 | // 8 | 9 | #ifndef CoreTelephony_h 10 | #define CoreTelephony_h 11 | 12 | 13 | struct CTResult 14 | { 15 | int flag; 16 | int a; 17 | }; 18 | 19 | struct __CTServerConnection { 20 | int a; 21 | int b; 22 | CFMachPortRef myport; 23 | int c; 24 | int d; 25 | int e; 26 | int f; 27 | int g; 28 | int h; 29 | int i; 30 | }; 31 | typedef struct __CTServerConnection CTServerConnection; 32 | typedef CTServerConnection* CTServerConnectionRef; 33 | 34 | struct __CellInfo { 35 | int servingmnc; 36 | int network; 37 | int location; 38 | int cellid; 39 | int station; 40 | int freq; 41 | int rxlevel; 42 | int c1; 43 | int c2; 44 | }; 45 | typedef struct __CellInfo CellInfo; 46 | typedef CellInfo* CellInfoRef; 47 | 48 | typedef void (*CTServerConnectionCallback)(CTServerConnectionRef, CFStringRef, CFDictionaryRef, void *); 49 | 50 | CTServerConnectionRef _CTServerConnectionCreate(CFAllocatorRef allocator, CTServerConnectionCallback, int *unknown); 51 | 52 | int *_CTServerConnectionCopySIMToolkitMenu (struct __CTServerConnection * Connection, CFMutableDictionaryRef * Dictionary); 53 | 54 | void *_CTServerConnectionSelectSIMToolkitMenuItem(struct __CTServerConnection *Connection, int item); 55 | 56 | #endif /* CoreTelephony_h */ 57 | -------------------------------------------------------------------------------- /eShieldDemo/eShieldDemo.xcodeproj/xcuserdata/qiaobeisi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 8 | 20 | 21 | 22 | 24 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /eShieldDemo/eShieldDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /eShieldDemo/eShieldDemo/AppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.m 3 | // eShieldDemo 4 | // 5 | // Created by 乔贝斯 on 16/9/7. 6 | // Copyright © 2016年 FFT. All rights reserved. 7 | // 8 | 9 | #import "AppDelegate.h" 10 | 11 | @interface AppDelegate () 12 | 13 | @end 14 | 15 | @implementation AppDelegate 16 | 17 | 18 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 19 | // Override point for customization after application launch. 20 | return YES; 21 | } 22 | 23 | - (void)applicationWillResignActive:(UIApplication *)application { 24 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 25 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 26 | } 27 | 28 | - (void)applicationDidEnterBackground:(UIApplication *)application { 29 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 30 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 31 | } 32 | 33 | - (void)applicationWillEnterForeground:(UIApplication *)application { 34 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 35 | } 36 | 37 | - (void)applicationDidBecomeActive:(UIApplication *)application { 38 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 39 | } 40 | 41 | - (void)applicationWillTerminate:(UIApplication *)application { 42 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 43 | } 44 | 45 | @end 46 | -------------------------------------------------------------------------------- /eShieldDemo/eShieldDemo/ViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.m 3 | // eShieldDemo 4 | // 5 | // Created by 乔贝斯 on 16/9/7. 6 | // Copyright © 2016年 FFT. All rights reserved. 7 | // 8 | 9 | #import "ViewController.h" 10 | #import 11 | #include 12 | #include 13 | #include 14 | #include "CoreTelephony.h" 15 | 16 | 17 | void ConnectionCallback(CTServerConnectionRef connection, CFStringRef string, CFDictionaryRef dictionary, void *data) { 18 | NSLog(@"ConnectionCallback"); 19 | CFShow(dictionary); 20 | } 21 | 22 | 23 | @interface ViewController () 24 | { 25 | void *conn; 26 | struct CTResult it; 27 | CFMutableDictionaryRef dict; 28 | } 29 | 30 | @property (nonatomic, strong)NSMutableDictionary *stkMenuDic; 31 | @property (weak, nonatomic) IBOutlet UILabel *displayLabel; 32 | @property (weak, nonatomic) IBOutlet UIButton *selectItemButton; 33 | 34 | @end 35 | 36 | @implementation ViewController 37 | 38 | 39 | - (void)viewDidLoad { 40 | [super viewDidLoad]; 41 | // Do any additional setup after loading the view, typically from a nib. 42 | 43 | [self initServerConnectionCreate]; 44 | [self readSTKMenu]; 45 | // [self selectSTKMenuItems]; 46 | } 47 | 48 | - (void)initServerConnectionCreate 49 | { 50 | conn = _CTServerConnectionCreate(kCFAllocatorDefault, ConnectionCallback,NULL); 51 | } 52 | 53 | // You can use this method to read the STK Menu 54 | - (void)readSTKMenu 55 | { 56 | _CTServerConnectionCopySIMToolkitMenu(conn, &dict); 57 | self.stkMenuDic = (__bridge NSMutableDictionary *)(dict); 58 | NSLog(@"STK Menu List is: %@", self.stkMenuDic); 59 | NSMutableArray *stkArr = self.stkMenuDic[@"kCTSIMToolkitMenuItems"]; 60 | NSDictionary *itemDic = [stkArr objectAtIndex:0]; // select the first one 61 | NSString *str = itemDic[@"kCTSIMToolkitText"]; 62 | self.displayLabel.text = str; 63 | } 64 | 65 | // select one of STKMenuItems 66 | - (void)selectSTKMenuItems 67 | { 68 | int selectItem = 0; 69 | _CTServerConnectionSelectSIMToolkitMenuItem(conn, selectItem); 70 | } 71 | - (IBAction)selectItemClick:(id)sender { 72 | [self selectSTKMenuItems]; 73 | } 74 | 75 | 76 | 77 | - (void)didReceiveMemoryWarning { 78 | [super didReceiveMemoryWarning]; 79 | // Dispose of any resources that can be recreated. 80 | } 81 | 82 | @end 83 | -------------------------------------------------------------------------------- /eShieldDemo/eShieldDemo.xcodeproj/xcuserdata/qiaobeisi.xcuserdatad/xcschemes/eShieldDemo.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 43 | 49 | 50 | 51 | 52 | 53 | 59 | 60 | 61 | 62 | 63 | 64 | 74 | 76 | 82 | 83 | 84 | 85 | 86 | 87 | 93 | 95 | 101 | 102 | 103 | 104 | 106 | 107 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /eShieldDemo/eShieldDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 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 | 31 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | -------------------------------------------------------------------------------- /eShieldDemo/eShieldDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 94503D531D80208A00A28D05 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 94503D521D80208A00A28D05 /* main.m */; }; 11 | 94503D561D80208A00A28D05 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 94503D551D80208A00A28D05 /* AppDelegate.m */; }; 12 | 94503D591D80208A00A28D05 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 94503D581D80208A00A28D05 /* ViewController.m */; }; 13 | 94503D5C1D80208A00A28D05 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 94503D5A1D80208A00A28D05 /* Main.storyboard */; }; 14 | 94503D5E1D80208A00A28D05 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 94503D5D1D80208A00A28D05 /* Assets.xcassets */; }; 15 | 94503D611D80208A00A28D05 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 94503D5F1D80208A00A28D05 /* LaunchScreen.storyboard */; }; 16 | 94503D6C1D80208A00A28D05 /* eShieldDemoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 94503D6B1D80208A00A28D05 /* eShieldDemoTests.m */; }; 17 | 94503D771D80208A00A28D05 /* eShieldDemoUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 94503D761D80208A00A28D05 /* eShieldDemoUITests.m */; }; 18 | 94503D851D8039FC00A28D05 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 94503D841D8039FC00A28D05 /* CoreTelephony.framework */; }; 19 | /* End PBXBuildFile section */ 20 | 21 | /* Begin PBXContainerItemProxy section */ 22 | 94503D681D80208A00A28D05 /* PBXContainerItemProxy */ = { 23 | isa = PBXContainerItemProxy; 24 | containerPortal = 94503D461D80208A00A28D05 /* Project object */; 25 | proxyType = 1; 26 | remoteGlobalIDString = 94503D4D1D80208A00A28D05; 27 | remoteInfo = eShieldDemo; 28 | }; 29 | 94503D731D80208A00A28D05 /* PBXContainerItemProxy */ = { 30 | isa = PBXContainerItemProxy; 31 | containerPortal = 94503D461D80208A00A28D05 /* Project object */; 32 | proxyType = 1; 33 | remoteGlobalIDString = 94503D4D1D80208A00A28D05; 34 | remoteInfo = eShieldDemo; 35 | }; 36 | /* End PBXContainerItemProxy section */ 37 | 38 | /* Begin PBXFileReference section */ 39 | 94503D4E1D80208A00A28D05 /* eShieldDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = eShieldDemo.app; sourceTree = BUILT_PRODUCTS_DIR; }; 40 | 94503D521D80208A00A28D05 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 41 | 94503D541D80208A00A28D05 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 42 | 94503D551D80208A00A28D05 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 43 | 94503D571D80208A00A28D05 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = ""; }; 44 | 94503D581D80208A00A28D05 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = ""; }; 45 | 94503D5B1D80208A00A28D05 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 46 | 94503D5D1D80208A00A28D05 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 47 | 94503D601D80208A00A28D05 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 48 | 94503D621D80208A00A28D05 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 49 | 94503D671D80208A00A28D05 /* eShieldDemoTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = eShieldDemoTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 50 | 94503D6B1D80208A00A28D05 /* eShieldDemoTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = eShieldDemoTests.m; sourceTree = ""; }; 51 | 94503D6D1D80208A00A28D05 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 52 | 94503D721D80208A00A28D05 /* eShieldDemoUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = eShieldDemoUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 53 | 94503D761D80208A00A28D05 /* eShieldDemoUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = eShieldDemoUITests.m; sourceTree = ""; }; 54 | 94503D781D80208A00A28D05 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 55 | 94503D841D8039FC00A28D05 /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; }; 56 | 94D5DCEE1D82CC9B005B6A7F /* CoreTelephony.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CoreTelephony.h; sourceTree = ""; }; 57 | /* End PBXFileReference section */ 58 | 59 | /* Begin PBXFrameworksBuildPhase section */ 60 | 94503D4B1D80208A00A28D05 /* Frameworks */ = { 61 | isa = PBXFrameworksBuildPhase; 62 | buildActionMask = 2147483647; 63 | files = ( 64 | 94503D851D8039FC00A28D05 /* CoreTelephony.framework in Frameworks */, 65 | ); 66 | runOnlyForDeploymentPostprocessing = 0; 67 | }; 68 | 94503D641D80208A00A28D05 /* Frameworks */ = { 69 | isa = PBXFrameworksBuildPhase; 70 | buildActionMask = 2147483647; 71 | files = ( 72 | ); 73 | runOnlyForDeploymentPostprocessing = 0; 74 | }; 75 | 94503D6F1D80208A00A28D05 /* Frameworks */ = { 76 | isa = PBXFrameworksBuildPhase; 77 | buildActionMask = 2147483647; 78 | files = ( 79 | ); 80 | runOnlyForDeploymentPostprocessing = 0; 81 | }; 82 | /* End PBXFrameworksBuildPhase section */ 83 | 84 | /* Begin PBXGroup section */ 85 | 94503D451D80208A00A28D05 = { 86 | isa = PBXGroup; 87 | children = ( 88 | 94503D841D8039FC00A28D05 /* CoreTelephony.framework */, 89 | 94503D501D80208A00A28D05 /* eShieldDemo */, 90 | 94503D6A1D80208A00A28D05 /* eShieldDemoTests */, 91 | 94503D751D80208A00A28D05 /* eShieldDemoUITests */, 92 | 94503D4F1D80208A00A28D05 /* Products */, 93 | ); 94 | sourceTree = ""; 95 | }; 96 | 94503D4F1D80208A00A28D05 /* Products */ = { 97 | isa = PBXGroup; 98 | children = ( 99 | 94503D4E1D80208A00A28D05 /* eShieldDemo.app */, 100 | 94503D671D80208A00A28D05 /* eShieldDemoTests.xctest */, 101 | 94503D721D80208A00A28D05 /* eShieldDemoUITests.xctest */, 102 | ); 103 | name = Products; 104 | sourceTree = ""; 105 | }; 106 | 94503D501D80208A00A28D05 /* eShieldDemo */ = { 107 | isa = PBXGroup; 108 | children = ( 109 | 94503D541D80208A00A28D05 /* AppDelegate.h */, 110 | 94503D551D80208A00A28D05 /* AppDelegate.m */, 111 | 94503D571D80208A00A28D05 /* ViewController.h */, 112 | 94503D581D80208A00A28D05 /* ViewController.m */, 113 | 94D5DCEE1D82CC9B005B6A7F /* CoreTelephony.h */, 114 | 94503D5A1D80208A00A28D05 /* Main.storyboard */, 115 | 94503D5D1D80208A00A28D05 /* Assets.xcassets */, 116 | 94503D5F1D80208A00A28D05 /* LaunchScreen.storyboard */, 117 | 94503D621D80208A00A28D05 /* Info.plist */, 118 | 94503D511D80208A00A28D05 /* Supporting Files */, 119 | ); 120 | path = eShieldDemo; 121 | sourceTree = ""; 122 | }; 123 | 94503D511D80208A00A28D05 /* Supporting Files */ = { 124 | isa = PBXGroup; 125 | children = ( 126 | 94503D521D80208A00A28D05 /* main.m */, 127 | ); 128 | name = "Supporting Files"; 129 | sourceTree = ""; 130 | }; 131 | 94503D6A1D80208A00A28D05 /* eShieldDemoTests */ = { 132 | isa = PBXGroup; 133 | children = ( 134 | 94503D6B1D80208A00A28D05 /* eShieldDemoTests.m */, 135 | 94503D6D1D80208A00A28D05 /* Info.plist */, 136 | ); 137 | path = eShieldDemoTests; 138 | sourceTree = ""; 139 | }; 140 | 94503D751D80208A00A28D05 /* eShieldDemoUITests */ = { 141 | isa = PBXGroup; 142 | children = ( 143 | 94503D761D80208A00A28D05 /* eShieldDemoUITests.m */, 144 | 94503D781D80208A00A28D05 /* Info.plist */, 145 | ); 146 | path = eShieldDemoUITests; 147 | sourceTree = ""; 148 | }; 149 | /* End PBXGroup section */ 150 | 151 | /* Begin PBXNativeTarget section */ 152 | 94503D4D1D80208A00A28D05 /* eShieldDemo */ = { 153 | isa = PBXNativeTarget; 154 | buildConfigurationList = 94503D7B1D80208A00A28D05 /* Build configuration list for PBXNativeTarget "eShieldDemo" */; 155 | buildPhases = ( 156 | 94503D4A1D80208A00A28D05 /* Sources */, 157 | 94503D4B1D80208A00A28D05 /* Frameworks */, 158 | 94503D4C1D80208A00A28D05 /* Resources */, 159 | ); 160 | buildRules = ( 161 | ); 162 | dependencies = ( 163 | ); 164 | name = eShieldDemo; 165 | productName = eShieldDemo; 166 | productReference = 94503D4E1D80208A00A28D05 /* eShieldDemo.app */; 167 | productType = "com.apple.product-type.application"; 168 | }; 169 | 94503D661D80208A00A28D05 /* eShieldDemoTests */ = { 170 | isa = PBXNativeTarget; 171 | buildConfigurationList = 94503D7E1D80208A00A28D05 /* Build configuration list for PBXNativeTarget "eShieldDemoTests" */; 172 | buildPhases = ( 173 | 94503D631D80208A00A28D05 /* Sources */, 174 | 94503D641D80208A00A28D05 /* Frameworks */, 175 | 94503D651D80208A00A28D05 /* Resources */, 176 | ); 177 | buildRules = ( 178 | ); 179 | dependencies = ( 180 | 94503D691D80208A00A28D05 /* PBXTargetDependency */, 181 | ); 182 | name = eShieldDemoTests; 183 | productName = eShieldDemoTests; 184 | productReference = 94503D671D80208A00A28D05 /* eShieldDemoTests.xctest */; 185 | productType = "com.apple.product-type.bundle.unit-test"; 186 | }; 187 | 94503D711D80208A00A28D05 /* eShieldDemoUITests */ = { 188 | isa = PBXNativeTarget; 189 | buildConfigurationList = 94503D811D80208A00A28D05 /* Build configuration list for PBXNativeTarget "eShieldDemoUITests" */; 190 | buildPhases = ( 191 | 94503D6E1D80208A00A28D05 /* Sources */, 192 | 94503D6F1D80208A00A28D05 /* Frameworks */, 193 | 94503D701D80208A00A28D05 /* Resources */, 194 | ); 195 | buildRules = ( 196 | ); 197 | dependencies = ( 198 | 94503D741D80208A00A28D05 /* PBXTargetDependency */, 199 | ); 200 | name = eShieldDemoUITests; 201 | productName = eShieldDemoUITests; 202 | productReference = 94503D721D80208A00A28D05 /* eShieldDemoUITests.xctest */; 203 | productType = "com.apple.product-type.bundle.ui-testing"; 204 | }; 205 | /* End PBXNativeTarget section */ 206 | 207 | /* Begin PBXProject section */ 208 | 94503D461D80208A00A28D05 /* Project object */ = { 209 | isa = PBXProject; 210 | attributes = { 211 | LastUpgradeCheck = 0730; 212 | ORGANIZATIONNAME = FFT; 213 | TargetAttributes = { 214 | 94503D4D1D80208A00A28D05 = { 215 | CreatedOnToolsVersion = 7.3; 216 | DevelopmentTeam = L4BT67DB2U; 217 | }; 218 | 94503D661D80208A00A28D05 = { 219 | CreatedOnToolsVersion = 7.3; 220 | TestTargetID = 94503D4D1D80208A00A28D05; 221 | }; 222 | 94503D711D80208A00A28D05 = { 223 | CreatedOnToolsVersion = 7.3; 224 | TestTargetID = 94503D4D1D80208A00A28D05; 225 | }; 226 | }; 227 | }; 228 | buildConfigurationList = 94503D491D80208A00A28D05 /* Build configuration list for PBXProject "eShieldDemo" */; 229 | compatibilityVersion = "Xcode 3.2"; 230 | developmentRegion = English; 231 | hasScannedForEncodings = 0; 232 | knownRegions = ( 233 | en, 234 | Base, 235 | ); 236 | mainGroup = 94503D451D80208A00A28D05; 237 | productRefGroup = 94503D4F1D80208A00A28D05 /* Products */; 238 | projectDirPath = ""; 239 | projectRoot = ""; 240 | targets = ( 241 | 94503D4D1D80208A00A28D05 /* eShieldDemo */, 242 | 94503D661D80208A00A28D05 /* eShieldDemoTests */, 243 | 94503D711D80208A00A28D05 /* eShieldDemoUITests */, 244 | ); 245 | }; 246 | /* End PBXProject section */ 247 | 248 | /* Begin PBXResourcesBuildPhase section */ 249 | 94503D4C1D80208A00A28D05 /* Resources */ = { 250 | isa = PBXResourcesBuildPhase; 251 | buildActionMask = 2147483647; 252 | files = ( 253 | 94503D611D80208A00A28D05 /* LaunchScreen.storyboard in Resources */, 254 | 94503D5E1D80208A00A28D05 /* Assets.xcassets in Resources */, 255 | 94503D5C1D80208A00A28D05 /* Main.storyboard in Resources */, 256 | ); 257 | runOnlyForDeploymentPostprocessing = 0; 258 | }; 259 | 94503D651D80208A00A28D05 /* Resources */ = { 260 | isa = PBXResourcesBuildPhase; 261 | buildActionMask = 2147483647; 262 | files = ( 263 | ); 264 | runOnlyForDeploymentPostprocessing = 0; 265 | }; 266 | 94503D701D80208A00A28D05 /* Resources */ = { 267 | isa = PBXResourcesBuildPhase; 268 | buildActionMask = 2147483647; 269 | files = ( 270 | ); 271 | runOnlyForDeploymentPostprocessing = 0; 272 | }; 273 | /* End PBXResourcesBuildPhase section */ 274 | 275 | /* Begin PBXSourcesBuildPhase section */ 276 | 94503D4A1D80208A00A28D05 /* Sources */ = { 277 | isa = PBXSourcesBuildPhase; 278 | buildActionMask = 2147483647; 279 | files = ( 280 | 94503D591D80208A00A28D05 /* ViewController.m in Sources */, 281 | 94503D561D80208A00A28D05 /* AppDelegate.m in Sources */, 282 | 94503D531D80208A00A28D05 /* main.m in Sources */, 283 | ); 284 | runOnlyForDeploymentPostprocessing = 0; 285 | }; 286 | 94503D631D80208A00A28D05 /* Sources */ = { 287 | isa = PBXSourcesBuildPhase; 288 | buildActionMask = 2147483647; 289 | files = ( 290 | 94503D6C1D80208A00A28D05 /* eShieldDemoTests.m in Sources */, 291 | ); 292 | runOnlyForDeploymentPostprocessing = 0; 293 | }; 294 | 94503D6E1D80208A00A28D05 /* Sources */ = { 295 | isa = PBXSourcesBuildPhase; 296 | buildActionMask = 2147483647; 297 | files = ( 298 | 94503D771D80208A00A28D05 /* eShieldDemoUITests.m in Sources */, 299 | ); 300 | runOnlyForDeploymentPostprocessing = 0; 301 | }; 302 | /* End PBXSourcesBuildPhase section */ 303 | 304 | /* Begin PBXTargetDependency section */ 305 | 94503D691D80208A00A28D05 /* PBXTargetDependency */ = { 306 | isa = PBXTargetDependency; 307 | target = 94503D4D1D80208A00A28D05 /* eShieldDemo */; 308 | targetProxy = 94503D681D80208A00A28D05 /* PBXContainerItemProxy */; 309 | }; 310 | 94503D741D80208A00A28D05 /* PBXTargetDependency */ = { 311 | isa = PBXTargetDependency; 312 | target = 94503D4D1D80208A00A28D05 /* eShieldDemo */; 313 | targetProxy = 94503D731D80208A00A28D05 /* PBXContainerItemProxy */; 314 | }; 315 | /* End PBXTargetDependency section */ 316 | 317 | /* Begin PBXVariantGroup section */ 318 | 94503D5A1D80208A00A28D05 /* Main.storyboard */ = { 319 | isa = PBXVariantGroup; 320 | children = ( 321 | 94503D5B1D80208A00A28D05 /* Base */, 322 | ); 323 | name = Main.storyboard; 324 | sourceTree = ""; 325 | }; 326 | 94503D5F1D80208A00A28D05 /* LaunchScreen.storyboard */ = { 327 | isa = PBXVariantGroup; 328 | children = ( 329 | 94503D601D80208A00A28D05 /* Base */, 330 | ); 331 | name = LaunchScreen.storyboard; 332 | sourceTree = ""; 333 | }; 334 | /* End PBXVariantGroup section */ 335 | 336 | /* Begin XCBuildConfiguration section */ 337 | 94503D791D80208A00A28D05 /* Debug */ = { 338 | isa = XCBuildConfiguration; 339 | buildSettings = { 340 | ALWAYS_SEARCH_USER_PATHS = NO; 341 | CLANG_ANALYZER_NONNULL = YES; 342 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 343 | CLANG_CXX_LIBRARY = "libc++"; 344 | CLANG_ENABLE_MODULES = YES; 345 | CLANG_ENABLE_OBJC_ARC = YES; 346 | CLANG_WARN_BOOL_CONVERSION = YES; 347 | CLANG_WARN_CONSTANT_CONVERSION = YES; 348 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 349 | CLANG_WARN_EMPTY_BODY = YES; 350 | CLANG_WARN_ENUM_CONVERSION = YES; 351 | CLANG_WARN_INT_CONVERSION = YES; 352 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 353 | CLANG_WARN_UNREACHABLE_CODE = YES; 354 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 355 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 356 | COPY_PHASE_STRIP = NO; 357 | DEBUG_INFORMATION_FORMAT = dwarf; 358 | ENABLE_STRICT_OBJC_MSGSEND = YES; 359 | ENABLE_TESTABILITY = YES; 360 | GCC_C_LANGUAGE_STANDARD = gnu99; 361 | GCC_DYNAMIC_NO_PIC = NO; 362 | GCC_NO_COMMON_BLOCKS = YES; 363 | GCC_OPTIMIZATION_LEVEL = 0; 364 | GCC_PREPROCESSOR_DEFINITIONS = ( 365 | "DEBUG=1", 366 | "$(inherited)", 367 | ); 368 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 369 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 370 | GCC_WARN_UNDECLARED_SELECTOR = YES; 371 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 372 | GCC_WARN_UNUSED_FUNCTION = YES; 373 | GCC_WARN_UNUSED_VARIABLE = YES; 374 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 375 | MTL_ENABLE_DEBUG_INFO = YES; 376 | ONLY_ACTIVE_ARCH = YES; 377 | SDKROOT = iphoneos; 378 | }; 379 | name = Debug; 380 | }; 381 | 94503D7A1D80208A00A28D05 /* Release */ = { 382 | isa = XCBuildConfiguration; 383 | buildSettings = { 384 | ALWAYS_SEARCH_USER_PATHS = NO; 385 | CLANG_ANALYZER_NONNULL = YES; 386 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 387 | CLANG_CXX_LIBRARY = "libc++"; 388 | CLANG_ENABLE_MODULES = YES; 389 | CLANG_ENABLE_OBJC_ARC = YES; 390 | CLANG_WARN_BOOL_CONVERSION = YES; 391 | CLANG_WARN_CONSTANT_CONVERSION = YES; 392 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 393 | CLANG_WARN_EMPTY_BODY = YES; 394 | CLANG_WARN_ENUM_CONVERSION = YES; 395 | CLANG_WARN_INT_CONVERSION = YES; 396 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 397 | CLANG_WARN_UNREACHABLE_CODE = YES; 398 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 399 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 400 | COPY_PHASE_STRIP = NO; 401 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 402 | ENABLE_NS_ASSERTIONS = NO; 403 | ENABLE_STRICT_OBJC_MSGSEND = YES; 404 | GCC_C_LANGUAGE_STANDARD = gnu99; 405 | GCC_NO_COMMON_BLOCKS = YES; 406 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 407 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 408 | GCC_WARN_UNDECLARED_SELECTOR = YES; 409 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 410 | GCC_WARN_UNUSED_FUNCTION = YES; 411 | GCC_WARN_UNUSED_VARIABLE = YES; 412 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 413 | MTL_ENABLE_DEBUG_INFO = NO; 414 | SDKROOT = iphoneos; 415 | VALIDATE_PRODUCT = YES; 416 | }; 417 | name = Release; 418 | }; 419 | 94503D7C1D80208A00A28D05 /* Debug */ = { 420 | isa = XCBuildConfiguration; 421 | buildSettings = { 422 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 423 | CODE_SIGN_IDENTITY = "iPhone Developer"; 424 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 425 | DEVELOPMENT_TEAM = L4BT67DB2U; 426 | INFOPLIST_FILE = eShieldDemo/Info.plist; 427 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 428 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 429 | PRODUCT_BUNDLE_IDENTIFIER = com.base.commonBank; 430 | PRODUCT_NAME = "$(TARGET_NAME)"; 431 | PROVISIONING_PROFILE = ""; 432 | }; 433 | name = Debug; 434 | }; 435 | 94503D7D1D80208A00A28D05 /* Release */ = { 436 | isa = XCBuildConfiguration; 437 | buildSettings = { 438 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 439 | CODE_SIGN_IDENTITY = "iPhone Developer"; 440 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 441 | DEVELOPMENT_TEAM = L4BT67DB2U; 442 | INFOPLIST_FILE = eShieldDemo/Info.plist; 443 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 444 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 445 | PRODUCT_BUNDLE_IDENTIFIER = com.base.commonBank; 446 | PRODUCT_NAME = "$(TARGET_NAME)"; 447 | PROVISIONING_PROFILE = ""; 448 | }; 449 | name = Release; 450 | }; 451 | 94503D7F1D80208A00A28D05 /* Debug */ = { 452 | isa = XCBuildConfiguration; 453 | buildSettings = { 454 | BUNDLE_LOADER = "$(TEST_HOST)"; 455 | INFOPLIST_FILE = eShieldDemoTests/Info.plist; 456 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 457 | PRODUCT_BUNDLE_IDENTIFIER = "com.basehuang.-.eShieldDemoTests"; 458 | PRODUCT_NAME = "$(TARGET_NAME)"; 459 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/eShieldDemo.app/eShieldDemo"; 460 | }; 461 | name = Debug; 462 | }; 463 | 94503D801D80208A00A28D05 /* Release */ = { 464 | isa = XCBuildConfiguration; 465 | buildSettings = { 466 | BUNDLE_LOADER = "$(TEST_HOST)"; 467 | INFOPLIST_FILE = eShieldDemoTests/Info.plist; 468 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 469 | PRODUCT_BUNDLE_IDENTIFIER = "com.basehuang.-.eShieldDemoTests"; 470 | PRODUCT_NAME = "$(TARGET_NAME)"; 471 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/eShieldDemo.app/eShieldDemo"; 472 | }; 473 | name = Release; 474 | }; 475 | 94503D821D80208A00A28D05 /* Debug */ = { 476 | isa = XCBuildConfiguration; 477 | buildSettings = { 478 | INFOPLIST_FILE = eShieldDemoUITests/Info.plist; 479 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 480 | PRODUCT_BUNDLE_IDENTIFIER = "com.basehuang.-.eShieldDemoUITests"; 481 | PRODUCT_NAME = "$(TARGET_NAME)"; 482 | TEST_TARGET_NAME = eShieldDemo; 483 | }; 484 | name = Debug; 485 | }; 486 | 94503D831D80208A00A28D05 /* Release */ = { 487 | isa = XCBuildConfiguration; 488 | buildSettings = { 489 | INFOPLIST_FILE = eShieldDemoUITests/Info.plist; 490 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 491 | PRODUCT_BUNDLE_IDENTIFIER = "com.basehuang.-.eShieldDemoUITests"; 492 | PRODUCT_NAME = "$(TARGET_NAME)"; 493 | TEST_TARGET_NAME = eShieldDemo; 494 | }; 495 | name = Release; 496 | }; 497 | /* End XCBuildConfiguration section */ 498 | 499 | /* Begin XCConfigurationList section */ 500 | 94503D491D80208A00A28D05 /* Build configuration list for PBXProject "eShieldDemo" */ = { 501 | isa = XCConfigurationList; 502 | buildConfigurations = ( 503 | 94503D791D80208A00A28D05 /* Debug */, 504 | 94503D7A1D80208A00A28D05 /* Release */, 505 | ); 506 | defaultConfigurationIsVisible = 0; 507 | defaultConfigurationName = Release; 508 | }; 509 | 94503D7B1D80208A00A28D05 /* Build configuration list for PBXNativeTarget "eShieldDemo" */ = { 510 | isa = XCConfigurationList; 511 | buildConfigurations = ( 512 | 94503D7C1D80208A00A28D05 /* Debug */, 513 | 94503D7D1D80208A00A28D05 /* Release */, 514 | ); 515 | defaultConfigurationIsVisible = 0; 516 | defaultConfigurationName = Release; 517 | }; 518 | 94503D7E1D80208A00A28D05 /* Build configuration list for PBXNativeTarget "eShieldDemoTests" */ = { 519 | isa = XCConfigurationList; 520 | buildConfigurations = ( 521 | 94503D7F1D80208A00A28D05 /* Debug */, 522 | 94503D801D80208A00A28D05 /* Release */, 523 | ); 524 | defaultConfigurationIsVisible = 0; 525 | defaultConfigurationName = Release; 526 | }; 527 | 94503D811D80208A00A28D05 /* Build configuration list for PBXNativeTarget "eShieldDemoUITests" */ = { 528 | isa = XCConfigurationList; 529 | buildConfigurations = ( 530 | 94503D821D80208A00A28D05 /* Debug */, 531 | 94503D831D80208A00A28D05 /* Release */, 532 | ); 533 | defaultConfigurationIsVisible = 0; 534 | defaultConfigurationName = Release; 535 | }; 536 | /* End XCConfigurationList section */ 537 | }; 538 | rootObject = 94503D461D80208A00A28D05 /* Project object */; 539 | } 540 | --------------------------------------------------------------------------------