| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881 |
- // !$*UTF8*$!
- {
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 46;
- objects = {
- /* Begin PBXBuildFile section */
- 3C0F4E9423BAE74F000A2FE7 /* CachedTileOverlay.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0F4E9323BAE74F000A2FE7 /* CachedTileOverlay.m */; };
- 3C0F4E9723BAF594000A2FE7 /* FileCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0F4E9623BAF594000A2FE7 /* FileCache.m */; };
- 3C1DEC3D239F6C42006F7E2A /* MKMapView+ZoomLevel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C1DEC3B239F6C42006F7E2A /* MKMapView+ZoomLevel.m */; };
- 3C2D99A2239B92F1007B759E /* ApexMapView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2D99A0239B92F1007B759E /* ApexMapView.m */; };
- 3C2D99A5239B93C8007B759E /* AMViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2D99A4239B93C8007B759E /* AMViewController.m */; };
- 3C57169D23D186A30002E9FC /* WebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C57169A23D186A30002E9FC /* WebViewController.m */; };
- 3C57169E23D186A30002E9FC /* wkweb.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C57169B23D186A30002E9FC /* wkweb.storyboard */; };
- 3CA1A2DE23A212E700639FCC /* Launch Screen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3CA1A2DD23A212E700639FCC /* Launch Screen.storyboard */; };
- 420DEF2620A1898500720524 /* AMCommHeadCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 420DEF2420A1898500720524 /* AMCommHeadCell.m */; };
- 420DEF2720A1898500720524 /* AMCommHeadCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 420DEF2520A1898500720524 /* AMCommHeadCell.xib */; };
- 420DEF2B20A1899600720524 /* AMCommContentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 420DEF2920A1899600720524 /* AMCommContentCell.m */; };
- 420DEF2C20A1899600720524 /* AMCommContentCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 420DEF2A20A1899600720524 /* AMCommContentCell.xib */; };
- 420DEF3020A189AA00720524 /* AMCommEditCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 420DEF2E20A189AA00720524 /* AMCommEditCell.m */; };
- 420DEF3120A189AA00720524 /* AMCommEditCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 420DEF2F20A189AA00720524 /* AMCommEditCell.xib */; };
- 420F0CA420901C2E005C4690 /* KPIRepeatTapGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 420F0CA320901C2E005C4690 /* KPIRepeatTapGestureRecognizer.m */; };
- 42253C94209C007700879B09 /* AMMapView.m in Sources */ = {isa = PBXBuildFile; fileRef = 42253C93209C007700879B09 /* AMMapView.m */; };
- 42253C98209C3C0F00879B09 /* AMShipMap.m in Sources */ = {isa = PBXBuildFile; fileRef = 42253C97209C3C0F00879B09 /* AMShipMap.m */; };
- 4225E42421E08502009D2364 /* ApexResultViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E42321E08502009D2364 /* ApexResultViewController.m */; };
- 4225E42621E08576009D2364 /* ApexResult.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4225E42521E08576009D2364 /* ApexResult.storyboard */; };
- 4225E42D21E08895009D2364 /* ApexResultViewController+TableDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E42C21E08895009D2364 /* ApexResultViewController+TableDelegate.m */; };
- 4225E43021E088AA009D2364 /* ApexResultViewController+TableDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E42F21E088AA009D2364 /* ApexResultViewController+TableDataSource.m */; };
- 4225E43321E08A54009D2364 /* ApexResultContainerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E43221E08A54009D2364 /* ApexResultContainerCell.m */; };
- 4225E43921E08A8C009D2364 /* ApexResultDocumentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E43721E08A8C009D2364 /* ApexResultDocumentCell.m */; };
- 4225E43A21E08A8C009D2364 /* ApexResultDocumentCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4225E43821E08A8C009D2364 /* ApexResultDocumentCell.xib */; };
- 4225E43D21E08ACE009D2364 /* ApexResultContainerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E43C21E08ACE009D2364 /* ApexResultContainerModel.m */; };
- 4225E44021E08AEF009D2364 /* ApexResultDocumentModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E43F21E08AEF009D2364 /* ApexResultDocumentModel.m */; };
- 4225E44321E08B47009D2364 /* ApexResultBaseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E44221E08B47009D2364 /* ApexResultBaseModel.m */; };
- 4225E44821E099CB009D2364 /* ApexResultPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E44721E099CB009D2364 /* ApexResultPresenter.m */; };
- 4225E44F21E0A39A009D2364 /* RAProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E44B21E0A39A009D2364 /* RAProgressHUD.m */; };
- 4225E45021E0A39A009D2364 /* UIView+RAConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E44D21E0A39A009D2364 /* UIView+RAConstraint.m */; };
- 4235C30320229F7200A99D04 /* Result.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4235C30220229F7200A99D04 /* Result.xib */; };
- 4235C3052022A60A00A99D04 /* ResultCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4235C3042022A60A00A99D04 /* ResultCell.xib */; };
- 4253900E2079B7C700ECF982 /* KPIPieChartCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 4253900C2079B7C700ECF982 /* KPIPieChartCell.m */; };
- 4253900F2079B7C700ECF982 /* KPIPieChartCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4253900D2079B7C700ECF982 /* KPIPieChartCell.xib */; };
- 425390202079B99B00ECF982 /* XYCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 425390172079B99A00ECF982 /* XYCommon.m */; };
- 425390212079B99B00ECF982 /* PieChart.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 425390192079B99B00ECF982 /* PieChart.xcassets */; };
- 425390222079B99B00ECF982 /* XYRotatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4253901B2079B99B00ECF982 /* XYRotatedView.m */; };
- 425390232079B99B00ECF982 /* XYPieChartView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4253901C2079B99B00ECF982 /* XYPieChartView.m */; };
- 425390242079B99B00ECF982 /* XYRenderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4253901E2079B99B00ECF982 /* XYRenderView.m */; };
- 425390262079B9B500ECF982 /* KPI.json in Resources */ = {isa = PBXBuildFile; fileRef = 425390252079B9B400ECF982 /* KPI.json */; };
- 42539029207A159300ECF982 /* KPIButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 42539028207A159300ECF982 /* KPIButton.m */; };
- 42541ACF207C49610072BC5A /* fake_home.json in Resources */ = {isa = PBXBuildFile; fileRef = 42541ACE207C49610072BC5A /* fake_home.json */; };
- 425CF096201EB2B500750E32 /* JLRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 425CF08C201EB2B500750E32 /* JLRefreshFooter.m */; };
- 425CF097201EB2B500750E32 /* JLRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 425CF08F201EB2B500750E32 /* JLRefreshHeader.m */; };
- 425CF098201EB2B500750E32 /* JLRefreshBasis.m in Sources */ = {isa = PBXBuildFile; fileRef = 425CF091201EB2B500750E32 /* JLRefreshBasis.m */; };
- 425CF099201EB2B500750E32 /* UIScrollView+JLRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 425CF093201EB2B500750E32 /* UIScrollView+JLRefresh.m */; };
- 425CF09A201EB2B500750E32 /* UIView+JLExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 425CF095201EB2B500750E32 /* UIView+JLExtension.m */; };
- 42604122201C4B41002374A8 /* ShipingStatusCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42604121201C4B41002374A8 /* ShipingStatusCell.m */; };
- 42604127201C578B002374A8 /* ShipSearchController.m in Sources */ = {isa = PBXBuildFile; fileRef = 42604126201C578B002374A8 /* ShipSearchController.m */; };
- 42604129201C57A7002374A8 /* ShipSearch.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 42604128201C57A7002374A8 /* ShipSearch.storyboard */; };
- 426E8AB9202163EC0073BA5D /* JLCustomerAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 426E8AB6202163EC0073BA5D /* JLCustomerAlertController.m */; };
- 426E8ABA202163EC0073BA5D /* JLPresentationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 426E8AB8202163EC0073BA5D /* JLPresentationController.m */; };
- 426E8ABD2021AEC50073BA5D /* JLCustomerNavigationAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 426E8ABC2021AEC50073BA5D /* JLCustomerNavigationAlertController.m */; };
- 426F397F2033CEE80025C568 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 426F397E2033CEE80025C568 /* AudioToolbox.framework */; };
- 426F39822033D0930025C568 /* ResultCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 426F39812033D0930025C568 /* ResultCell.m */; };
- 427CF5D02023F5560041472A /* NewImages.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 427CF5CF2023F5560041472A /* NewImages.xcassets */; };
- 427CF5E0202452460041472A /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 427CF5DF202452450041472A /* Accelerate.framework */; };
- 42BB7402208431DA00B9B6E4 /* KPILegendCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BB7401208431DA00B9B6E4 /* KPILegendCell.m */; };
- 42BB740620846B4500B9B6E4 /* KPITableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BB740420846B4500B9B6E4 /* KPITableCell.m */; };
- 42BB740720846B4500B9B6E4 /* KPITableCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42BB740520846B4500B9B6E4 /* KPITableCell.xib */; };
- 42BB74092084732D00B9B6E4 /* KPICell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42BB74082084732D00B9B6E4 /* KPICell.xib */; };
- 42BB740B2084737800B9B6E4 /* KPILegendCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42BB740A2084737800B9B6E4 /* KPILegendCell.xib */; };
- 42BCACCA209AE243009DDA43 /* AMAnnotationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BCACC9209AE243009DDA43 /* AMAnnotationView.m */; };
- 42BCACCD209AE342009DDA43 /* AMMapAnnotaion.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BCACCC209AE342009DDA43 /* AMMapAnnotaion.m */; };
- 42BFD2D2207B697800DA9038 /* KPICell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BFD2D1207B697800DA9038 /* KPICell.m */; };
- 42C6754E21E2F1D4001E3FF4 /* ApexResultAdditionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 42C6754D21E2F1D4001E3FF4 /* ApexResultAdditionView.m */; };
- 42C6755221E32654001E3FF4 /* ApexResultViewController+QuickLook.m in Sources */ = {isa = PBXBuildFile; fileRef = 42C6755121E32654001E3FF4 /* ApexResultViewController+QuickLook.m */; };
- 42DE626220A41907005FB582 /* AMTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 42DE626120A41907005FB582 /* AMTextField.m */; };
- 42E8212F21F6ED1800127705 /* ApexResultAdditionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42E8212E21F6ED1800127705 /* ApexResultAdditionView.xib */; };
- 42FB6EB921F2B9FE00F694AB /* ApexResultContainerCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42FB6EB821F2B9FE00F694AB /* ApexResultContainerCell.xib */; };
- 42FB6EBD21F2BAB800F694AB /* ApexResultBLInfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FB6EBB21F2BAB800F694AB /* ApexResultBLInfoCell.m */; };
- 42FB6EBE21F2BAB800F694AB /* ApexResultBLInfoCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42FB6EBC21F2BAB800F694AB /* ApexResultBLInfoCell.xib */; };
- 42FB6EC221F2BB6400F694AB /* ApexResultBookingCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FB6EC021F2BB6400F694AB /* ApexResultBookingCell.m */; };
- 42FB6EC321F2BB6400F694AB /* ApexResultBookingCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42FB6EC121F2BB6400F694AB /* ApexResultBookingCell.xib */; };
- 42FB6EC621F2BC5300F694AB /* ApexResultBookingModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FB6EC521F2BC5300F694AB /* ApexResultBookingModel.m */; };
- 42FB6EC921F2BC8600F694AB /* ApexResultAddition.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FB6EC821F2BC8600F694AB /* ApexResultAddition.m */; };
- 42FB6ECC21F2C0E300F694AB /* ApexResultBLInfoModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FB6ECB21F2C0E300F694AB /* ApexResultBLInfoModel.m */; };
- 42FB6ECF21F3136300F694AB /* ApexResultMenuItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FB6ECE21F3136300F694AB /* ApexResultMenuItem.m */; };
- 7101BEC82031389A00CC6E3A /* DetailCellKVNew.m in Sources */ = {isa = PBXBuildFile; fileRef = 7101BEC72031389A00CC6E3A /* DetailCellKVNew.m */; };
- 7103C84B22549E7F00261926 /* CLLocation+Sino.m in Sources */ = {isa = PBXBuildFile; fileRef = 7103C84922549E7E00261926 /* CLLocation+Sino.m */; };
- 711BA6C1191E0525002EDE6F /* MessageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 711BA6C0191E0525002EDE6F /* MessageViewController.m */; };
- 711BA6C4191E0553002EDE6F /* MessageItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 711BA6C3191E0553002EDE6F /* MessageItem.m */; };
- 711DC6B218C30A4800FB1749 /* TableCellEdit.m in Sources */ = {isa = PBXBuildFile; fileRef = 711DC6B118C30A4800FB1749 /* TableCellEdit.m */; };
- 7120DCEB18BE25CE00E7546F /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCEA18BE25CE00E7546F /* AVFoundation.framework */; };
- 7120DCED18BE25DA00E7546F /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCEC18BE25DA00E7546F /* CoreData.framework */; };
- 7120DCEF18BE25E500E7546F /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCEE18BE25E500E7546F /* CoreLocation.framework */; };
- 7120DCF118BE25F500E7546F /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCF018BE25F500E7546F /* CoreText.framework */; };
- 7120DCF318BE260700E7546F /* GLKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCF218BE260700E7546F /* GLKit.framework */; };
- 7120DCF518BE261500E7546F /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCF418BE261500E7546F /* ImageIO.framework */; };
- 7120DCF718BE262300E7546F /* libc++.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCF618BE262300E7546F /* libc++.dylib */; };
- 7120DCF918BE262E00E7546F /* libicucore.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCF818BE262E00E7546F /* libicucore.dylib */; };
- 7120DCFB18BE263800E7546F /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCFA18BE263800E7546F /* libz.dylib */; };
- 7120DCFD18BE264300E7546F /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCFC18BE264300E7546F /* OpenGLES.framework */; };
- 7120DCFF18BE265100E7546F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCFE18BE265100E7546F /* QuartzCore.framework */; };
- 7120DD0118BE266000E7546F /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DD0018BE266000E7546F /* SystemConfiguration.framework */; };
- 7120DD0418BE273900E7546F /* LocationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7120DD0318BE273900E7546F /* LocationViewController.m */; };
- 712A301318CFEF550022E6E6 /* CustomizeFieldViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 712A301218CFEF550022E6E6 /* CustomizeFieldViewController.m */; };
- 712CBA0318CF38DB00C61394 /* RTLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 712CBA0218CF38DB00C61394 /* RTLabel.m */; };
- 71308AF7191E7B0E0024B2B0 /* MessageDetailItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 71308AF6191E7B0E0024B2B0 /* MessageDetailItem.m */; };
- 71308AFA191E7B2A0024B2B0 /* MessageDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71308AF9191E7B2A0024B2B0 /* MessageDetailViewController.m */; };
- 7130B3F41900FB61000610D8 /* NewsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7130B3F31900FB61000610D8 /* NewsViewController.m */; };
- 71330C2018BCC4DA0048956C /* FunctionSelectViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71330C1F18BCC4DA0048956C /* FunctionSelectViewController.m */; };
- 71375C8F18D96EDE00EBA026 /* TabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71375C8E18D96EDE00EBA026 /* TabBarController.m */; };
- 713AA7A1191736E600B44092 /* DocumentsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 713AA7A0191736E600B44092 /* DocumentsViewController.m */; };
- 713AA7A41917373600B44092 /* LocalDocumentsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 713AA7A31917373600B44092 /* LocalDocumentsViewController.m */; };
- 71406DCE18C36A52000914C4 /* TableCellBool.m in Sources */ = {isa = PBXBuildFile; fileRef = 71406DCD18C36A52000914C4 /* TableCellBool.m */; };
- 71406DD118C36A6E000914C4 /* TableCellDate.m in Sources */ = {isa = PBXBuildFile; fileRef = 71406DD018C36A6E000914C4 /* TableCellDate.m */; };
- 714C39B81922FEE1004F045B /* NewsDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 714C39B71922FEE1004F045B /* NewsDetailViewController.m */; };
- 714C39BF19234065004F045B /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 714C39C119234065004F045B /* Localizable.strings */; };
- 71514ED2191B7E2500009C00 /* AddressBookUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71514ED1191B7E2500009C00 /* AddressBookUI.framework */; };
- 715643B720198A1400B04267 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 715643B620198A1400B04267 /* Main.storyboard */; };
- 715643BB20198A9900B04267 /* RootViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643BA20198A9900B04267 /* RootViewController.m */; };
- 715643BE2019AA9B00B04267 /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643BD2019AA9B00B04267 /* LoginViewController.m */; };
- 715643C12019B27500B04267 /* HomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643C02019B27500B04267 /* HomeViewController.m */; };
- 715643C42019B58400B04267 /* OrderHistoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643C32019B58400B04267 /* OrderHistoryViewController.m */; };
- 715643C72019BB6700B04267 /* StaticModelistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643C62019BB6700B04267 /* StaticModelistViewController.m */; };
- 715643CA2019BC4C00B04267 /* SearchlistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643C92019BC4C00B04267 /* SearchlistViewController.m */; };
- 715643CD2019BC6C00B04267 /* ToolslistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643CC2019BC6C00B04267 /* ToolslistViewController.m */; };
- 715643D02019BCCE00B04267 /* MylistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643CF2019BCCE00B04267 /* MylistViewController.m */; };
- 715643D3201ACB1700B04267 /* StaticModeTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643D2201ACB1700B04267 /* StaticModeTableViewCell.m */; };
- 715643D5201AD2AB00B04267 /* StaticModelistViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 715643D4201AD2AB00B04267 /* StaticModelistViewController.xib */; };
- 715643D7201AD99300B04267 /* StaticModeTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 715643D6201AD99300B04267 /* StaticModeTableViewCell.xib */; };
- 715643DA201C079F00B04267 /* tools.json in Resources */ = {isa = PBXBuildFile; fileRef = 715643D9201C079F00B04267 /* tools.json */; };
- 715643DC201C117300B04267 /* search.json in Resources */ = {isa = PBXBuildFile; fileRef = 715643DB201C117300B04267 /* search.json */; };
- 715643DE201C1AE600B04267 /* my.json in Resources */ = {isa = PBXBuildFile; fileRef = 715643DD201C1AE600B04267 /* my.json */; };
- 7157098E2021572600EFE5C5 /* NetworkUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 7157098C2021572600EFE5C5 /* NetworkUtils.m */; };
- 715709922021574D00EFE5C5 /* RAConvertor.m in Sources */ = {isa = PBXBuildFile; fileRef = 715709912021574D00EFE5C5 /* RAConvertor.m */; };
- 71570996202157A600EFE5C5 /* RAUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 71570995202157A600EFE5C5 /* RAUtils.m */; };
- 71570999202157BD00EFE5C5 /* RANetworkTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 71570997202157BC00EFE5C5 /* RANetworkTaskDelegate.m */; };
- 715709A520215B5100EFE5C5 /* zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 7157099C20215B5000EFE5C5 /* zip.c */; };
- 715709A620215B5100EFE5C5 /* unzip.c in Sources */ = {isa = PBXBuildFile; fileRef = 7157099E20215B5000EFE5C5 /* unzip.c */; };
- 715709A720215B5100EFE5C5 /* ioapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 715709A020215B5000EFE5C5 /* ioapi.c */; };
- 715709A820215B5100EFE5C5 /* mztools.c in Sources */ = {isa = PBXBuildFile; fileRef = 715709A420215B5100EFE5C5 /* mztools.c */; };
- 715709AB20215B6200EFE5C5 /* ZipArchive.mm in Sources */ = {isa = PBXBuildFile; fileRef = 715709AA20215B6200EFE5C5 /* ZipArchive.mm */; };
- 715709AE20215CB000EFE5C5 /* RANetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 715709AD20215CB000EFE5C5 /* RANetwork.m */; };
- 715709B920215E0000EFE5C5 /* NSData+CommonCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = 715709B020215DFF00EFE5C5 /* NSData+CommonCrypto.m */; };
- 715709BA20215E0000EFE5C5 /* NSString+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 715709B220215DFF00EFE5C5 /* NSString+Base64.m */; };
- 715709BB20215E0000EFE5C5 /* NSData+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 715709B320215DFF00EFE5C5 /* NSData+Base64.m */; };
- 715709BC20215E0000EFE5C5 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 715709B620215DFF00EFE5C5 /* LICENSE */; };
- 715709BD20215E0000EFE5C5 /* AESCrypt.m in Sources */ = {isa = PBXBuildFile; fileRef = 715709B820215DFF00EFE5C5 /* AESCrypt.m */; };
- 716027D1204D334A003CA085 /* DetailShareItemProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 716027D0204D334A003CA085 /* DetailShareItemProvider.m */; };
- 716027D4204D3D15003CA085 /* LPShareActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 716027D2204D3D15003CA085 /* LPShareActivity.m */; };
- 7162546B201C3AF1009E3A41 /* readme.txt in Resources */ = {isa = PBXBuildFile; fileRef = 7162546A201C3AF1009E3A41 /* readme.txt */; };
- 7162546D201C412E009E3A41 /* ShippingStatusCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7162546C201C412E009E3A41 /* ShippingStatusCell.xib */; };
- 71625470201C5205009E3A41 /* fake_container_list.json in Resources */ = {isa = PBXBuildFile; fileRef = 7162546F201C5205009E3A41 /* fake_container_list.json */; };
- 716FF7921904ED2600ED6C3D /* NewsData.m in Sources */ = {isa = PBXBuildFile; fileRef = 716FF7911904ED2600ED6C3D /* NewsData.m */; };
- 716FF7951904FBC600ED6C3D /* NewsTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 716FF7941904FBC600ED6C3D /* NewsTableViewCell.m */; };
- 717D76EB18C7F8120070302D /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 717D76EA18C7F8120070302D /* Reachability.m */; };
- 717D772F18C84E3F0070302D /* PageData.m in Sources */ = {isa = PBXBuildFile; fileRef = 717D772E18C84E3F0070302D /* PageData.m */; };
- 71807B982021965B00E1F1DD /* fake_tracking.json in Resources */ = {isa = PBXBuildFile; fileRef = 71807B972021965B00E1F1DD /* fake_tracking.json */; };
- 71807B9C2021979A00E1F1DD /* DetailCellTracking.m in Sources */ = {isa = PBXBuildFile; fileRef = 71807B9B2021979A00E1F1DD /* DetailCellTracking.m */; };
- 71807B9E2021ACE500E1F1DD /* fake_search.json in Resources */ = {isa = PBXBuildFile; fileRef = 71807B9D2021ACE500E1F1DD /* fake_search.json */; };
- 718BE8B0190F9D970046EA6A /* MyAutocompleteView.m in Sources */ = {isa = PBXBuildFile; fileRef = 718BE8A7190F9D970046EA6A /* MyAutocompleteView.m */; };
- 718BE8B2190F9D970046EA6A /* MyAutocompleteItemsSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 718BE8AB190F9D970046EA6A /* MyAutocompleteItemsSource.m */; };
- 718BE8B3190F9D970046EA6A /* MyAutocompletionCellFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 718BE8AD190F9D970046EA6A /* MyAutocompletionCellFactory.m */; };
- 718BE8B4190F9D970046EA6A /* MySuggestion.m in Sources */ = {isa = PBXBuildFile; fileRef = 718BE8AF190F9D970046EA6A /* MySuggestion.m */; };
- 71951E6F18C6A9A5005024BD /* TouchLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 71951E6E18C6A9A5005024BD /* TouchLabel.m */; };
- 719A51A518C5A4AF0080C075 /* SimpleGrid.m in Sources */ = {isa = PBXBuildFile; fileRef = 719A51A418C5A4AF0080C075 /* SimpleGrid.m */; };
- 719A51A918C5A5D30080C075 /* SimpleGridDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 719A51A818C5A5D30080C075 /* SimpleGridDataSource.m */; };
- 719A51BA18C5AB7B0080C075 /* SimpleGridComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 719A51B918C5AB7B0080C075 /* SimpleGridComponent.m */; };
- 719BEC1718FFAB7B00DFE987 /* ToolsPanelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 719BEC1618FFAB7B00DFE987 /* ToolsPanelViewController.m */; };
- 719E7E3318C0368A003408FF /* ApexMobileDB.m in Sources */ = {isa = PBXBuildFile; fileRef = 719E7E3218C0368A003408FF /* ApexMobileDB.m */; };
- 719E7E3518C0395E003408FF /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 719E7E3418C0395E003408FF /* libsqlite3.dylib */; };
- 719EF8E118BB839F00EFFF5F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 719EF8E018BB839F00EFFF5F /* Foundation.framework */; };
- 719EF8E318BB839F00EFFF5F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 719EF8E218BB839F00EFFF5F /* CoreGraphics.framework */; };
- 719EF8E518BB839F00EFFF5F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 719EF8E418BB839F00EFFF5F /* UIKit.framework */; };
- 719EF8EB18BB839F00EFFF5F /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 719EF8E918BB839F00EFFF5F /* InfoPlist.strings */; };
- 719EF8ED18BB839F00EFFF5F /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 719EF8EC18BB839F00EFFF5F /* main.m */; };
- 719EF8F118BB839F00EFFF5F /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 719EF8F018BB839F00EFFF5F /* AppDelegate.m */; };
- 719EF8FA18BB839F00EFFF5F /* ApexMobileFirstViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 719EF8F918BB839F00EFFF5F /* ApexMobileFirstViewController.m */; };
- 719EF8FD18BB839F00EFFF5F /* ApexMobileSecondViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 719EF8FC18BB839F00EFFF5F /* ApexMobileSecondViewController.m */; };
- 71A003FC18D680560057CDFD /* RetrievePasswordViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A003FB18D680560057CDFD /* RetrievePasswordViewController.m */; };
- 71A003FF18D6BFB40057CDFD /* ChangePasswordViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A003FE18D6BFB40057CDFD /* ChangePasswordViewController.m */; };
- 71A01D7918C9AE77003307A9 /* DetailCellKV.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A01D7818C9AE77003307A9 /* DetailCellKV.m */; };
- 71A01D7C18C9AE97003307A9 /* DetailCellList.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A01D7B18C9AE97003307A9 /* DetailCellList.m */; };
- 71A01D7F18C9AEC8003307A9 /* DetailCellWeb.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A01D7E18C9AEC8003307A9 /* DetailCellWeb.m */; };
- 71A01D8218C9BA67003307A9 /* DetailContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A01D8118C9BA67003307A9 /* DetailContent.m */; };
- 71A01D8518C9BDC8003307A9 /* DetailTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A01D8418C9BDC8003307A9 /* DetailTabBarController.m */; };
- 71A2D76218DC3895001C380A /* LineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A2D76118DC3895001C380A /* LineView.m */; };
- 71A565D918C20F5900CDAC07 /* SearchTableAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A565D818C20F5900CDAC07 /* SearchTableAdapter.m */; };
- 71A565DF18C212EA00CDAC07 /* Constant.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A565DE18C212EA00CDAC07 /* Constant.m */; };
- 71AE427318C47AF900B8EC3D /* SearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71AE427218C47AF900B8EC3D /* SearchViewController.m */; };
- 71B7998D2021AE7400F8685E /* MDHTMLLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 71B7998C2021AE7400F8685E /* MDHTMLLabel.m */; };
- 71B7999B2021B22D00F8685E /* AMResultViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71B7999A2021B22D00F8685E /* AMResultViewController.m */; };
- 71BA502E1908ED5700D0BD31 /* CellItemHistory.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BA502D1908ED5700D0BD31 /* CellItemHistory.m */; };
- 71BA50311908ED9100D0BD31 /* HistoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BA50301908ED9100D0BD31 /* HistoryViewController.m */; };
- 71BA50341908EDCF00D0BD31 /* HistoryTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BA50331908EDCF00D0BD31 /* HistoryTabBarController.m */; };
- 71BA50371908F21500D0BD31 /* HistoryData.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BA50361908F21500D0BD31 /* HistoryData.m */; };
- 71CEE38A18CB749E00052C63 /* DetailPageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71CEE38918CB749E00052C63 /* DetailPageViewController.m */; };
- 71CEE3D718CC559B00052C63 /* ApexMobileNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71CEE3D618CC559B00052C63 /* ApexMobileNavigationController.m */; };
- 71DA6047190A00F600683003 /* FavoritesData.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DA6046190A00F600683003 /* FavoritesData.m */; };
- 71DA604A190A02CE00683003 /* FavoritesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DA6049190A02CE00683003 /* FavoritesViewController.m */; };
- 71DA74A618BDDD31003B46A6 /* AboutViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DA74A518BDDD30003B46A6 /* AboutViewController.m */; };
- 71DA74A818BDDFB5003B46A6 /* about.htm in Resources */ = {isa = PBXBuildFile; fileRef = 71DA74A718BDDFB5003B46A6 /* about.htm */; };
- 71E0D1D72022AB7E009A08EB /* FullyShowViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E0D1D22022AB7E009A08EB /* FullyShowViewController.m */; };
- 71E0D1D82022AB7E009A08EB /* ResultViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E0D1D32022AB7E009A08EB /* ResultViewController.m */; };
- 71E0D1D92022AB7E009A08EB /* Result.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 71E0D1D52022AB7E009A08EB /* Result.storyboard */; };
- 71F67CF619063612004E8462 /* ApexHistoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F67CF519063612004E8462 /* ApexHistoryViewController.m */; };
- 71F67CF919065EA8004E8462 /* SimpleMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F67CF819065EA8004E8462 /* SimpleMenu.m */; };
- 71F67CFC19066375004E8462 /* PulldownMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F67CFB19066375004E8462 /* PulldownMenu.m */; };
- 71FCDE0720492B5E00B0746B /* MyQLPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71FCDE0620492B5E00B0746B /* MyQLPreviewController.m */; };
- /* End PBXBuildFile section */
- /* Begin PBXFileReference section */
- 3C0F4E9223BAE74F000A2FE7 /* CachedTileOverlay.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CachedTileOverlay.h; path = ../../common/ApexMap/CachedTileOverlay.h; sourceTree = "<group>"; };
- 3C0F4E9323BAE74F000A2FE7 /* CachedTileOverlay.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CachedTileOverlay.m; path = ../../common/ApexMap/CachedTileOverlay.m; sourceTree = "<group>"; };
- 3C0F4E9523BAF594000A2FE7 /* FileCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FileCache.h; path = ../../common/FileCache.h; sourceTree = "<group>"; };
- 3C0F4E9623BAF594000A2FE7 /* FileCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FileCache.m; path = ../../common/FileCache.m; sourceTree = "<group>"; };
- 3C1DEC3B239F6C42006F7E2A /* MKMapView+ZoomLevel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "MKMapView+ZoomLevel.m"; path = "../../common/ApexMap/MKMapView+ZoomLevel.m"; sourceTree = "<group>"; };
- 3C1DEC3C239F6C42006F7E2A /* MKMapView+ZoomLevel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "MKMapView+ZoomLevel.h"; path = "../../common/ApexMap/MKMapView+ZoomLevel.h"; sourceTree = "<group>"; };
- 3C2D99A0239B92F1007B759E /* ApexMapView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ApexMapView.m; path = ../../common/ApexMap/ApexMapView.m; sourceTree = "<group>"; };
- 3C2D99A1239B92F1007B759E /* ApexMapView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ApexMapView.h; path = ../../common/ApexMap/ApexMapView.h; sourceTree = "<group>"; };
- 3C2D99A3239B93C8007B759E /* AMViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMViewController.h; sourceTree = "<group>"; };
- 3C2D99A4239B93C8007B759E /* AMViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMViewController.m; sourceTree = "<group>"; };
- 3C57169A23D186A30002E9FC /* WebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WebViewController.m; path = "../../common/WK PDF+Web/WebViewController.m"; sourceTree = "<group>"; };
- 3C57169B23D186A30002E9FC /* wkweb.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = wkweb.storyboard; path = "../../common/WK PDF+Web/wkweb.storyboard"; sourceTree = "<group>"; };
- 3C57169C23D186A30002E9FC /* WebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WebViewController.h; path = "../../common/WK PDF+Web/WebViewController.h"; sourceTree = "<group>"; };
- 3CA1A2DD23A212E700639FCC /* Launch Screen.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = "Launch Screen.storyboard"; sourceTree = "<group>"; };
- 420DEF2320A1898500720524 /* AMCommHeadCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMCommHeadCell.h; sourceTree = "<group>"; };
- 420DEF2420A1898500720524 /* AMCommHeadCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMCommHeadCell.m; sourceTree = "<group>"; };
- 420DEF2520A1898500720524 /* AMCommHeadCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AMCommHeadCell.xib; sourceTree = "<group>"; };
- 420DEF2820A1899600720524 /* AMCommContentCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMCommContentCell.h; sourceTree = "<group>"; };
- 420DEF2920A1899600720524 /* AMCommContentCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMCommContentCell.m; sourceTree = "<group>"; };
- 420DEF2A20A1899600720524 /* AMCommContentCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AMCommContentCell.xib; sourceTree = "<group>"; };
- 420DEF2D20A189AA00720524 /* AMCommEditCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMCommEditCell.h; sourceTree = "<group>"; };
- 420DEF2E20A189AA00720524 /* AMCommEditCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMCommEditCell.m; sourceTree = "<group>"; };
- 420DEF2F20A189AA00720524 /* AMCommEditCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AMCommEditCell.xib; sourceTree = "<group>"; };
- 420F0CA220901C2E005C4690 /* KPIRepeatTapGestureRecognizer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KPIRepeatTapGestureRecognizer.h; sourceTree = "<group>"; };
- 420F0CA320901C2E005C4690 /* KPIRepeatTapGestureRecognizer.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KPIRepeatTapGestureRecognizer.m; sourceTree = "<group>"; };
- 42253C92209C007700879B09 /* AMMapView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMMapView.h; sourceTree = "<group>"; };
- 42253C93209C007700879B09 /* AMMapView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMMapView.m; sourceTree = "<group>"; };
- 42253C96209C3C0F00879B09 /* AMShipMap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMShipMap.h; sourceTree = "<group>"; };
- 42253C97209C3C0F00879B09 /* AMShipMap.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMShipMap.m; sourceTree = "<group>"; };
- 4225E42221E08502009D2364 /* ApexResultViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultViewController.h; sourceTree = "<group>"; };
- 4225E42321E08502009D2364 /* ApexResultViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultViewController.m; sourceTree = "<group>"; };
- 4225E42521E08576009D2364 /* ApexResult.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = ApexResult.storyboard; sourceTree = "<group>"; };
- 4225E42B21E08895009D2364 /* ApexResultViewController+TableDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ApexResultViewController+TableDelegate.h"; sourceTree = "<group>"; };
- 4225E42C21E08895009D2364 /* ApexResultViewController+TableDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "ApexResultViewController+TableDelegate.m"; sourceTree = "<group>"; };
- 4225E42E21E088AA009D2364 /* ApexResultViewController+TableDataSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ApexResultViewController+TableDataSource.h"; sourceTree = "<group>"; };
- 4225E42F21E088AA009D2364 /* ApexResultViewController+TableDataSource.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "ApexResultViewController+TableDataSource.m"; sourceTree = "<group>"; };
- 4225E43121E08A54009D2364 /* ApexResultContainerCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultContainerCell.h; sourceTree = "<group>"; };
- 4225E43221E08A54009D2364 /* ApexResultContainerCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultContainerCell.m; sourceTree = "<group>"; };
- 4225E43621E08A8C009D2364 /* ApexResultDocumentCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultDocumentCell.h; sourceTree = "<group>"; };
- 4225E43721E08A8C009D2364 /* ApexResultDocumentCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultDocumentCell.m; sourceTree = "<group>"; };
- 4225E43821E08A8C009D2364 /* ApexResultDocumentCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ApexResultDocumentCell.xib; sourceTree = "<group>"; };
- 4225E43B21E08ACE009D2364 /* ApexResultContainerModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultContainerModel.h; sourceTree = "<group>"; };
- 4225E43C21E08ACE009D2364 /* ApexResultContainerModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultContainerModel.m; sourceTree = "<group>"; };
- 4225E43E21E08AEF009D2364 /* ApexResultDocumentModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultDocumentModel.h; sourceTree = "<group>"; };
- 4225E43F21E08AEF009D2364 /* ApexResultDocumentModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultDocumentModel.m; sourceTree = "<group>"; };
- 4225E44121E08B47009D2364 /* ApexResultBaseModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultBaseModel.h; sourceTree = "<group>"; };
- 4225E44221E08B47009D2364 /* ApexResultBaseModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultBaseModel.m; sourceTree = "<group>"; };
- 4225E44421E0989D009D2364 /* ApexResultProtocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultProtocol.h; sourceTree = "<group>"; };
- 4225E44621E099CB009D2364 /* ApexResultPresenter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultPresenter.h; sourceTree = "<group>"; };
- 4225E44721E099CB009D2364 /* ApexResultPresenter.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultPresenter.m; sourceTree = "<group>"; };
- 4225E44A21E0A39A009D2364 /* RAProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RAProgressHUD.h; sourceTree = "<group>"; };
- 4225E44B21E0A39A009D2364 /* RAProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RAProgressHUD.m; sourceTree = "<group>"; };
- 4225E44D21E0A39A009D2364 /* UIView+RAConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+RAConstraint.m"; sourceTree = "<group>"; };
- 4225E44E21E0A39A009D2364 /* UIView+RAConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+RAConstraint.h"; sourceTree = "<group>"; };
- 4235C30220229F7200A99D04 /* Result.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Result.xib; path = ../../common/customUI/Result.xib; sourceTree = "<group>"; };
- 4235C3042022A60A00A99D04 /* ResultCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = ResultCell.xib; path = ../../common/customUI/ResultCell.xib; sourceTree = "<group>"; };
- 4253900B2079B7C700ECF982 /* KPIPieChartCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KPIPieChartCell.h; sourceTree = "<group>"; };
- 4253900C2079B7C700ECF982 /* KPIPieChartCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KPIPieChartCell.m; sourceTree = "<group>"; };
- 4253900D2079B7C700ECF982 /* KPIPieChartCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = KPIPieChartCell.xib; sourceTree = "<group>"; };
- 425390172079B99A00ECF982 /* XYCommon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XYCommon.m; sourceTree = "<group>"; };
- 425390182079B99A00ECF982 /* XYRotatedView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYRotatedView.h; sourceTree = "<group>"; };
- 425390192079B99B00ECF982 /* PieChart.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = PieChart.xcassets; sourceTree = "<group>"; };
- 4253901A2079B99B00ECF982 /* XYPieChartView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYPieChartView.h; sourceTree = "<group>"; };
- 4253901B2079B99B00ECF982 /* XYRotatedView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XYRotatedView.m; sourceTree = "<group>"; };
- 4253901C2079B99B00ECF982 /* XYPieChartView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XYPieChartView.m; sourceTree = "<group>"; };
- 4253901D2079B99B00ECF982 /* XYRenderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYRenderView.h; sourceTree = "<group>"; };
- 4253901E2079B99B00ECF982 /* XYRenderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XYRenderView.m; sourceTree = "<group>"; };
- 4253901F2079B99B00ECF982 /* XYCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYCommon.h; sourceTree = "<group>"; };
- 425390252079B9B400ECF982 /* KPI.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = KPI.json; sourceTree = "<group>"; };
- 42539027207A159300ECF982 /* KPIButton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KPIButton.h; sourceTree = "<group>"; };
- 42539028207A159300ECF982 /* KPIButton.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KPIButton.m; sourceTree = "<group>"; };
- 42541ACE207C49610072BC5A /* fake_home.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = fake_home.json; sourceTree = "<group>"; };
- 425CF08B201EB2B500750E32 /* JLRefreshFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JLRefreshFooter.h; sourceTree = "<group>"; };
- 425CF08C201EB2B500750E32 /* JLRefreshFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JLRefreshFooter.m; sourceTree = "<group>"; };
- 425CF08E201EB2B500750E32 /* JLRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JLRefreshHeader.h; sourceTree = "<group>"; };
- 425CF08F201EB2B500750E32 /* JLRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JLRefreshHeader.m; sourceTree = "<group>"; };
- 425CF090201EB2B500750E32 /* JLRefreshBasis.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JLRefreshBasis.h; sourceTree = "<group>"; };
- 425CF091201EB2B500750E32 /* JLRefreshBasis.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JLRefreshBasis.m; sourceTree = "<group>"; };
- 425CF092201EB2B500750E32 /* UIScrollView+JLRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+JLRefresh.h"; sourceTree = "<group>"; };
- 425CF093201EB2B500750E32 /* UIScrollView+JLRefresh.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+JLRefresh.m"; sourceTree = "<group>"; };
- 425CF094201EB2B500750E32 /* UIView+JLExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+JLExtension.h"; sourceTree = "<group>"; };
- 425CF095201EB2B500750E32 /* UIView+JLExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+JLExtension.m"; sourceTree = "<group>"; };
- 42604120201C4B41002374A8 /* ShipingStatusCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShipingStatusCell.h; sourceTree = "<group>"; };
- 42604121201C4B41002374A8 /* ShipingStatusCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShipingStatusCell.m; sourceTree = "<group>"; };
- 42604125201C578B002374A8 /* ShipSearchController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShipSearchController.h; sourceTree = "<group>"; };
- 42604126201C578B002374A8 /* ShipSearchController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShipSearchController.m; sourceTree = "<group>"; };
- 42604128201C57A7002374A8 /* ShipSearch.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = ShipSearch.storyboard; sourceTree = "<group>"; };
- 426E8AB5202163EC0073BA5D /* JLCustomerAlertController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JLCustomerAlertController.h; sourceTree = "<group>"; };
- 426E8AB6202163EC0073BA5D /* JLCustomerAlertController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JLCustomerAlertController.m; sourceTree = "<group>"; };
- 426E8AB7202163EC0073BA5D /* JLPresentationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JLPresentationController.h; sourceTree = "<group>"; };
- 426E8AB8202163EC0073BA5D /* JLPresentationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JLPresentationController.m; sourceTree = "<group>"; };
- 426E8ABB2021AEC50073BA5D /* JLCustomerNavigationAlertController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JLCustomerNavigationAlertController.h; sourceTree = "<group>"; };
- 426E8ABC2021AEC50073BA5D /* JLCustomerNavigationAlertController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JLCustomerNavigationAlertController.m; sourceTree = "<group>"; };
- 426F397E2033CEE80025C568 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
- 426F39802033D0930025C568 /* ResultCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ResultCell.h; path = ../../common/customUI/ResultCell.h; sourceTree = "<group>"; };
- 426F39812033D0930025C568 /* ResultCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = ResultCell.m; path = ../../common/customUI/ResultCell.m; sourceTree = "<group>"; };
- 427994B120300E7300746EDC /* Apex Mobile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = "Apex Mobile.entitlements"; path = "Apex Mobile/Apex Mobile.entitlements"; sourceTree = "<group>"; };
- 427CF5CF2023F5560041472A /* NewImages.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = NewImages.xcassets; sourceTree = "<group>"; };
- 427CF5DF202452450041472A /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
- 42BB7400208431DA00B9B6E4 /* KPILegendCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KPILegendCell.h; sourceTree = "<group>"; };
- 42BB7401208431DA00B9B6E4 /* KPILegendCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KPILegendCell.m; sourceTree = "<group>"; };
- 42BB740320846B4500B9B6E4 /* KPITableCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KPITableCell.h; sourceTree = "<group>"; };
- 42BB740420846B4500B9B6E4 /* KPITableCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KPITableCell.m; sourceTree = "<group>"; };
- 42BB740520846B4500B9B6E4 /* KPITableCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = KPITableCell.xib; sourceTree = "<group>"; };
- 42BB74082084732D00B9B6E4 /* KPICell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = KPICell.xib; sourceTree = "<group>"; };
- 42BB740A2084737800B9B6E4 /* KPILegendCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = KPILegendCell.xib; sourceTree = "<group>"; };
- 42BCACC8209AE243009DDA43 /* AMAnnotationView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMAnnotationView.h; sourceTree = "<group>"; };
- 42BCACC9209AE243009DDA43 /* AMAnnotationView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMAnnotationView.m; sourceTree = "<group>"; };
- 42BCACCB209AE342009DDA43 /* AMMapAnnotaion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMMapAnnotaion.h; sourceTree = "<group>"; };
- 42BCACCC209AE342009DDA43 /* AMMapAnnotaion.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMMapAnnotaion.m; sourceTree = "<group>"; };
- 42BFD2D0207B697800DA9038 /* KPICell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KPICell.h; sourceTree = "<group>"; };
- 42BFD2D1207B697800DA9038 /* KPICell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KPICell.m; sourceTree = "<group>"; };
- 42C6754C21E2F1D4001E3FF4 /* ApexResultAdditionView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultAdditionView.h; sourceTree = "<group>"; };
- 42C6754D21E2F1D4001E3FF4 /* ApexResultAdditionView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultAdditionView.m; sourceTree = "<group>"; };
- 42C6755021E32654001E3FF4 /* ApexResultViewController+QuickLook.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ApexResultViewController+QuickLook.h"; sourceTree = "<group>"; };
- 42C6755121E32654001E3FF4 /* ApexResultViewController+QuickLook.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "ApexResultViewController+QuickLook.m"; sourceTree = "<group>"; };
- 42DE626020A41907005FB582 /* AMTextField.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMTextField.h; sourceTree = "<group>"; };
- 42DE626120A41907005FB582 /* AMTextField.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMTextField.m; sourceTree = "<group>"; };
- 42E8212E21F6ED1800127705 /* ApexResultAdditionView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ApexResultAdditionView.xib; sourceTree = "<group>"; };
- 42FB6EB821F2B9FE00F694AB /* ApexResultContainerCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ApexResultContainerCell.xib; sourceTree = "<group>"; };
- 42FB6EBA21F2BAB800F694AB /* ApexResultBLInfoCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultBLInfoCell.h; sourceTree = "<group>"; };
- 42FB6EBB21F2BAB800F694AB /* ApexResultBLInfoCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultBLInfoCell.m; sourceTree = "<group>"; };
- 42FB6EBC21F2BAB800F694AB /* ApexResultBLInfoCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ApexResultBLInfoCell.xib; sourceTree = "<group>"; };
- 42FB6EBF21F2BB6400F694AB /* ApexResultBookingCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultBookingCell.h; sourceTree = "<group>"; };
- 42FB6EC021F2BB6400F694AB /* ApexResultBookingCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultBookingCell.m; sourceTree = "<group>"; };
- 42FB6EC121F2BB6400F694AB /* ApexResultBookingCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ApexResultBookingCell.xib; sourceTree = "<group>"; };
- 42FB6EC421F2BC5300F694AB /* ApexResultBookingModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultBookingModel.h; sourceTree = "<group>"; };
- 42FB6EC521F2BC5300F694AB /* ApexResultBookingModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultBookingModel.m; sourceTree = "<group>"; };
- 42FB6EC721F2BC8600F694AB /* ApexResultAddition.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultAddition.h; sourceTree = "<group>"; };
- 42FB6EC821F2BC8600F694AB /* ApexResultAddition.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultAddition.m; sourceTree = "<group>"; };
- 42FB6ECA21F2C0E300F694AB /* ApexResultBLInfoModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultBLInfoModel.h; sourceTree = "<group>"; };
- 42FB6ECB21F2C0E300F694AB /* ApexResultBLInfoModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultBLInfoModel.m; sourceTree = "<group>"; };
- 42FB6ECD21F3136300F694AB /* ApexResultMenuItem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultMenuItem.h; sourceTree = "<group>"; };
- 42FB6ECE21F3136300F694AB /* ApexResultMenuItem.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultMenuItem.m; sourceTree = "<group>"; };
- 7101BEC62031389A00CC6E3A /* DetailCellKVNew.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DetailCellKVNew.h; sourceTree = "<group>"; };
- 7101BEC72031389A00CC6E3A /* DetailCellKVNew.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DetailCellKVNew.m; sourceTree = "<group>"; };
- 7103C84922549E7E00261926 /* CLLocation+Sino.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "CLLocation+Sino.m"; path = "../../common/MapNavigation/CLLocation+Sino.m"; sourceTree = "<group>"; };
- 7103C84A22549E7E00261926 /* CLLocation+Sino.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "CLLocation+Sino.h"; path = "../../common/MapNavigation/CLLocation+Sino.h"; sourceTree = "<group>"; };
- 711BA6BF191E0525002EDE6F /* MessageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageViewController.h; sourceTree = "<group>"; };
- 711BA6C0191E0525002EDE6F /* MessageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageViewController.m; sourceTree = "<group>"; };
- 711BA6C2191E0553002EDE6F /* MessageItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageItem.h; sourceTree = "<group>"; };
- 711BA6C3191E0553002EDE6F /* MessageItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageItem.m; sourceTree = "<group>"; };
- 711DC6B018C30A4800FB1749 /* TableCellEdit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TableCellEdit.h; sourceTree = "<group>"; };
- 711DC6B118C30A4800FB1749 /* TableCellEdit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TableCellEdit.m; sourceTree = "<group>"; };
- 7120DCEA18BE25CE00E7546F /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
- 7120DCEC18BE25DA00E7546F /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
- 7120DCEE18BE25E500E7546F /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
- 7120DCF018BE25F500E7546F /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
- 7120DCF218BE260700E7546F /* GLKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; };
- 7120DCF418BE261500E7546F /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = System/Library/Frameworks/ImageIO.framework; sourceTree = SDKROOT; };
- 7120DCF618BE262300E7546F /* libc++.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libc++.dylib"; path = "usr/lib/libc++.dylib"; sourceTree = SDKROOT; };
- 7120DCF818BE262E00E7546F /* libicucore.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libicucore.dylib; path = usr/lib/libicucore.dylib; sourceTree = SDKROOT; };
- 7120DCFA18BE263800E7546F /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
- 7120DCFC18BE264300E7546F /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
- 7120DCFE18BE265100E7546F /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
- 7120DD0018BE266000E7546F /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
- 7120DD0218BE273900E7546F /* LocationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocationViewController.h; sourceTree = "<group>"; };
- 7120DD0318BE273900E7546F /* LocationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocationViewController.m; sourceTree = "<group>"; };
- 712A301118CFEF550022E6E6 /* CustomizeFieldViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomizeFieldViewController.h; sourceTree = "<group>"; };
- 712A301218CFEF550022E6E6 /* CustomizeFieldViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomizeFieldViewController.m; sourceTree = "<group>"; };
- 712CBA0118CF38DB00C61394 /* RTLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RTLabel.h; sourceTree = "<group>"; };
- 712CBA0218CF38DB00C61394 /* RTLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RTLabel.m; sourceTree = "<group>"; };
- 71308AF5191E7B0E0024B2B0 /* MessageDetailItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageDetailItem.h; sourceTree = "<group>"; };
- 71308AF6191E7B0E0024B2B0 /* MessageDetailItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageDetailItem.m; sourceTree = "<group>"; };
- 71308AF8191E7B2A0024B2B0 /* MessageDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageDetailViewController.h; sourceTree = "<group>"; };
- 71308AF9191E7B2A0024B2B0 /* MessageDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageDetailViewController.m; sourceTree = "<group>"; };
- 7130B3F21900FB61000610D8 /* NewsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewsViewController.h; sourceTree = "<group>"; };
- 7130B3F31900FB61000610D8 /* NewsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewsViewController.m; sourceTree = "<group>"; };
- 71330C1E18BCC4DA0048956C /* FunctionSelectViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FunctionSelectViewController.h; sourceTree = "<group>"; };
- 71330C1F18BCC4DA0048956C /* FunctionSelectViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FunctionSelectViewController.m; sourceTree = "<group>"; };
- 71375C8D18D96EDE00EBA026 /* TabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TabBarController.h; sourceTree = "<group>"; };
- 71375C8E18D96EDE00EBA026 /* TabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TabBarController.m; sourceTree = "<group>"; };
- 713AA79F191736E600B44092 /* DocumentsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DocumentsViewController.h; sourceTree = "<group>"; };
- 713AA7A0191736E600B44092 /* DocumentsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DocumentsViewController.m; sourceTree = "<group>"; };
- 713AA7A21917373600B44092 /* LocalDocumentsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocalDocumentsViewController.h; sourceTree = "<group>"; };
- 713AA7A31917373600B44092 /* LocalDocumentsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocalDocumentsViewController.m; sourceTree = "<group>"; };
- 71406DCC18C36A52000914C4 /* TableCellBool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TableCellBool.h; sourceTree = "<group>"; };
- 71406DCD18C36A52000914C4 /* TableCellBool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TableCellBool.m; sourceTree = "<group>"; };
- 71406DCF18C36A6E000914C4 /* TableCellDate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TableCellDate.h; sourceTree = "<group>"; };
- 71406DD018C36A6E000914C4 /* TableCellDate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TableCellDate.m; sourceTree = "<group>"; };
- 714C39B61922FEE1004F045B /* NewsDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewsDetailViewController.h; sourceTree = "<group>"; };
- 714C39B71922FEE1004F045B /* NewsDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewsDetailViewController.m; sourceTree = "<group>"; };
- 714C39C019234065004F045B /* Base */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Base; path = Base.lproj/Localizable.strings; sourceTree = "<group>"; };
- 71514ED1191B7E2500009C00 /* AddressBookUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AddressBookUI.framework; path = System/Library/Frameworks/AddressBookUI.framework; sourceTree = SDKROOT; };
- 715643B620198A1400B04267 /* Main.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
- 715643B920198A9900B04267 /* RootViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RootViewController.h; sourceTree = "<group>"; };
- 715643BA20198A9900B04267 /* RootViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RootViewController.m; sourceTree = "<group>"; };
- 715643BC2019AA9B00B04267 /* LoginViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
- 715643BD2019AA9B00B04267 /* LoginViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
- 715643BF2019B27500B04267 /* HomeViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeViewController.h; sourceTree = "<group>"; };
- 715643C02019B27500B04267 /* HomeViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeViewController.m; sourceTree = "<group>"; };
- 715643C22019B58400B04267 /* OrderHistoryViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OrderHistoryViewController.h; sourceTree = "<group>"; };
- 715643C32019B58400B04267 /* OrderHistoryViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = OrderHistoryViewController.m; sourceTree = "<group>"; };
- 715643C52019BB6700B04267 /* StaticModelistViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StaticModelistViewController.h; sourceTree = "<group>"; };
- 715643C62019BB6700B04267 /* StaticModelistViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = StaticModelistViewController.m; sourceTree = "<group>"; };
- 715643C82019BC4C00B04267 /* SearchlistViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SearchlistViewController.h; sourceTree = "<group>"; };
- 715643C92019BC4C00B04267 /* SearchlistViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SearchlistViewController.m; sourceTree = "<group>"; };
- 715643CB2019BC6C00B04267 /* ToolslistViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ToolslistViewController.h; sourceTree = "<group>"; };
- 715643CC2019BC6C00B04267 /* ToolslistViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ToolslistViewController.m; sourceTree = "<group>"; };
- 715643CE2019BCCE00B04267 /* MylistViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MylistViewController.h; sourceTree = "<group>"; };
- 715643CF2019BCCE00B04267 /* MylistViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MylistViewController.m; sourceTree = "<group>"; };
- 715643D1201ACB1700B04267 /* StaticModeTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StaticModeTableViewCell.h; sourceTree = "<group>"; };
- 715643D2201ACB1700B04267 /* StaticModeTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = StaticModeTableViewCell.m; sourceTree = "<group>"; };
- 715643D4201AD2AB00B04267 /* StaticModelistViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = StaticModelistViewController.xib; sourceTree = "<group>"; };
- 715643D6201AD99300B04267 /* StaticModeTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = StaticModeTableViewCell.xib; sourceTree = "<group>"; };
- 715643D9201C079F00B04267 /* tools.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = tools.json; sourceTree = "<group>"; };
- 715643DB201C117300B04267 /* search.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = search.json; sourceTree = "<group>"; };
- 715643DD201C1AE600B04267 /* my.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = my.json; sourceTree = "<group>"; };
- 7157098C2021572600EFE5C5 /* NetworkUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NetworkUtils.m; path = ../../common/NetworkUtils.m; sourceTree = "<group>"; };
- 7157098D2021572600EFE5C5 /* NetworkUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NetworkUtils.h; path = ../../common/NetworkUtils.h; sourceTree = "<group>"; };
- 715709902021574D00EFE5C5 /* RAConvertor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAConvertor.h; path = ../../common/RAConvertor.h; sourceTree = "<group>"; };
- 715709912021574D00EFE5C5 /* RAConvertor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAConvertor.m; path = ../../common/RAConvertor.m; sourceTree = "<group>"; };
- 715709932021576A00EFE5C5 /* const.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = const.h; sourceTree = "<group>"; };
- 71570994202157A600EFE5C5 /* RAUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAUtils.h; path = "../../RedAnt ERP Mobile/common/RAUtils.h"; sourceTree = "<group>"; };
- 71570995202157A600EFE5C5 /* RAUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAUtils.m; path = "../../RedAnt ERP Mobile/common/RAUtils.m"; sourceTree = "<group>"; };
- 71570997202157BC00EFE5C5 /* RANetworkTaskDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RANetworkTaskDelegate.m; path = ../../common/upload/RANetworkTaskDelegate.m; sourceTree = "<group>"; };
- 71570998202157BC00EFE5C5 /* RANetworkTaskDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RANetworkTaskDelegate.h; path = ../../common/upload/RANetworkTaskDelegate.h; sourceTree = "<group>"; };
- 7157099A2021591F00EFE5C5 /* config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = config.h; sourceTree = "<group>"; };
- 7157099C20215B5000EFE5C5 /* zip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = zip.c; path = "../../RedAnt ERP Mobile/common/zip/minizip/zip.c"; sourceTree = "<group>"; };
- 7157099D20215B5000EFE5C5 /* crypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = crypt.h; path = "../../RedAnt ERP Mobile/common/zip/minizip/crypt.h"; sourceTree = "<group>"; };
- 7157099E20215B5000EFE5C5 /* unzip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = unzip.c; path = "../../RedAnt ERP Mobile/common/zip/minizip/unzip.c"; sourceTree = "<group>"; };
- 7157099F20215B5000EFE5C5 /* zip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = zip.h; path = "../../RedAnt ERP Mobile/common/zip/minizip/zip.h"; sourceTree = "<group>"; };
- 715709A020215B5000EFE5C5 /* ioapi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ioapi.c; path = "../../RedAnt ERP Mobile/common/zip/minizip/ioapi.c"; sourceTree = "<group>"; };
- 715709A120215B5000EFE5C5 /* ioapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ioapi.h; path = "../../RedAnt ERP Mobile/common/zip/minizip/ioapi.h"; sourceTree = "<group>"; };
- 715709A220215B5100EFE5C5 /* mztools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mztools.h; path = "../../RedAnt ERP Mobile/common/zip/minizip/mztools.h"; sourceTree = "<group>"; };
- 715709A320215B5100EFE5C5 /* unzip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = unzip.h; path = "../../RedAnt ERP Mobile/common/zip/minizip/unzip.h"; sourceTree = "<group>"; };
- 715709A420215B5100EFE5C5 /* mztools.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mztools.c; path = "../../RedAnt ERP Mobile/common/zip/minizip/mztools.c"; sourceTree = "<group>"; };
- 715709A920215B6200EFE5C5 /* ZipArchive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ZipArchive.h; path = "../../RedAnt ERP Mobile/common/zip/ZipArchive.h"; sourceTree = "<group>"; };
- 715709AA20215B6200EFE5C5 /* ZipArchive.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = ZipArchive.mm; path = "../../RedAnt ERP Mobile/common/zip/ZipArchive.mm"; sourceTree = "<group>"; };
- 715709AC20215CB000EFE5C5 /* RANetwork.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RANetwork.h; sourceTree = "<group>"; };
- 715709AD20215CB000EFE5C5 /* RANetwork.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RANetwork.m; sourceTree = "<group>"; };
- 715709B020215DFF00EFE5C5 /* NSData+CommonCrypto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSData+CommonCrypto.m"; path = "../../RedAnt ERP Mobile/common/AES/NSData+CommonCrypto.m"; sourceTree = "<group>"; };
- 715709B120215DFF00EFE5C5 /* NSString+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSString+Base64.h"; path = "../../RedAnt ERP Mobile/common/AES/NSString+Base64.h"; sourceTree = "<group>"; };
- 715709B220215DFF00EFE5C5 /* NSString+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSString+Base64.m"; path = "../../RedAnt ERP Mobile/common/AES/NSString+Base64.m"; sourceTree = "<group>"; };
- 715709B320215DFF00EFE5C5 /* NSData+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSData+Base64.m"; path = "../../RedAnt ERP Mobile/common/AES/NSData+Base64.m"; sourceTree = "<group>"; };
- 715709B420215DFF00EFE5C5 /* AESCrypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AESCrypt.h; path = "../../RedAnt ERP Mobile/common/AES/AESCrypt.h"; sourceTree = "<group>"; };
- 715709B520215DFF00EFE5C5 /* NSData+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSData+Base64.h"; path = "../../RedAnt ERP Mobile/common/AES/NSData+Base64.h"; sourceTree = "<group>"; };
- 715709B620215DFF00EFE5C5 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = LICENSE; path = "../../RedAnt ERP Mobile/common/AES/LICENSE"; sourceTree = "<group>"; };
- 715709B720215DFF00EFE5C5 /* NSData+CommonCrypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSData+CommonCrypto.h"; path = "../../RedAnt ERP Mobile/common/AES/NSData+CommonCrypto.h"; sourceTree = "<group>"; };
- 715709B820215DFF00EFE5C5 /* AESCrypt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AESCrypt.m; path = "../../RedAnt ERP Mobile/common/AES/AESCrypt.m"; sourceTree = "<group>"; };
- 716027CF204D334A003CA085 /* DetailShareItemProvider.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DetailShareItemProvider.h; sourceTree = "<group>"; };
- 716027D0204D334A003CA085 /* DetailShareItemProvider.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DetailShareItemProvider.m; sourceTree = "<group>"; };
- 716027D2204D3D15003CA085 /* LPShareActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LPShareActivity.m; sourceTree = "<group>"; };
- 716027D3204D3D15003CA085 /* LPShareActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LPShareActivity.h; sourceTree = "<group>"; };
- 7162546A201C3AF1009E3A41 /* readme.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = readme.txt; sourceTree = "<group>"; };
- 7162546C201C412E009E3A41 /* ShippingStatusCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ShippingStatusCell.xib; sourceTree = "<group>"; };
- 7162546F201C5205009E3A41 /* fake_container_list.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = fake_container_list.json; sourceTree = "<group>"; };
- 716FF7901904ED2600ED6C3D /* NewsData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewsData.h; sourceTree = "<group>"; };
- 716FF7911904ED2600ED6C3D /* NewsData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewsData.m; sourceTree = "<group>"; };
- 716FF7931904FBC600ED6C3D /* NewsTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewsTableViewCell.h; sourceTree = "<group>"; };
- 716FF7941904FBC600ED6C3D /* NewsTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewsTableViewCell.m; sourceTree = "<group>"; };
- 717D76E918C7F8120070302D /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = "<group>"; };
- 717D76EA18C7F8120070302D /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = "<group>"; };
- 717D772D18C84E3F0070302D /* PageData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PageData.h; sourceTree = "<group>"; };
- 717D772E18C84E3F0070302D /* PageData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PageData.m; sourceTree = "<group>"; };
- 71807B972021965B00E1F1DD /* fake_tracking.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = fake_tracking.json; sourceTree = "<group>"; };
- 71807B9A2021979A00E1F1DD /* DetailCellTracking.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DetailCellTracking.h; sourceTree = "<group>"; };
- 71807B9B2021979A00E1F1DD /* DetailCellTracking.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DetailCellTracking.m; sourceTree = "<group>"; };
- 71807B9D2021ACE500E1F1DD /* fake_search.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = fake_search.json; sourceTree = "<group>"; };
- 718BE8A6190F9D970046EA6A /* MyAutocompleteView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyAutocompleteView.h; sourceTree = "<group>"; };
- 718BE8A7190F9D970046EA6A /* MyAutocompleteView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyAutocompleteView.m; sourceTree = "<group>"; };
- 718BE8AA190F9D970046EA6A /* MyAutocompleteItemsSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyAutocompleteItemsSource.h; sourceTree = "<group>"; };
- 718BE8AB190F9D970046EA6A /* MyAutocompleteItemsSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyAutocompleteItemsSource.m; sourceTree = "<group>"; };
- 718BE8AC190F9D970046EA6A /* MyAutocompletionCellFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyAutocompletionCellFactory.h; sourceTree = "<group>"; };
- 718BE8AD190F9D970046EA6A /* MyAutocompletionCellFactory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyAutocompletionCellFactory.m; sourceTree = "<group>"; };
- 718BE8AE190F9D970046EA6A /* MySuggestion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MySuggestion.h; sourceTree = "<group>"; };
- 718BE8AF190F9D970046EA6A /* MySuggestion.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MySuggestion.m; sourceTree = "<group>"; };
- 71951E6D18C6A9A5005024BD /* TouchLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TouchLabel.h; sourceTree = "<group>"; };
- 71951E6E18C6A9A5005024BD /* TouchLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TouchLabel.m; sourceTree = "<group>"; };
- 719A51A318C5A4AF0080C075 /* SimpleGrid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SimpleGrid.h; path = ../SimpleGrid.h; sourceTree = "<group>"; };
- 719A51A418C5A4AF0080C075 /* SimpleGrid.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SimpleGrid.m; path = ../SimpleGrid.m; sourceTree = "<group>"; };
- 719A51A718C5A5D30080C075 /* SimpleGridDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SimpleGridDataSource.h; sourceTree = "<group>"; };
- 719A51A818C5A5D30080C075 /* SimpleGridDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SimpleGridDataSource.m; sourceTree = "<group>"; };
- 719A51B818C5AB7B0080C075 /* SimpleGridComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SimpleGridComponent.h; sourceTree = "<group>"; };
- 719A51B918C5AB7B0080C075 /* SimpleGridComponent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SimpleGridComponent.m; sourceTree = "<group>"; };
- 719BEC1518FFAB7B00DFE987 /* ToolsPanelViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ToolsPanelViewController.h; sourceTree = "<group>"; };
- 719BEC1618FFAB7B00DFE987 /* ToolsPanelViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ToolsPanelViewController.m; sourceTree = "<group>"; };
- 719E7E3118C0368A003408FF /* ApexMobileDB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApexMobileDB.h; sourceTree = "<group>"; };
- 719E7E3218C0368A003408FF /* ApexMobileDB.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApexMobileDB.m; sourceTree = "<group>"; };
- 719E7E3418C0395E003408FF /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = usr/lib/libsqlite3.dylib; sourceTree = SDKROOT; };
- 719EF8DD18BB839F00EFFF5F /* Apex Mobile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Apex Mobile.app"; sourceTree = BUILT_PRODUCTS_DIR; };
- 719EF8E018BB839F00EFFF5F /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
- 719EF8E218BB839F00EFFF5F /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
- 719EF8E418BB839F00EFFF5F /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
- 719EF8E818BB839F00EFFF5F /* Apex Mobile-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Apex Mobile-Info.plist"; sourceTree = "<group>"; };
- 719EF8EA18BB839F00EFFF5F /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 719EF8EC18BB839F00EFFF5F /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
- 719EF8EE18BB839F00EFFF5F /* Apex Mobile-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Apex Mobile-Prefix.pch"; sourceTree = "<group>"; };
- 719EF8EF18BB839F00EFFF5F /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
- 719EF8F018BB839F00EFFF5F /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
- 719EF8F818BB839F00EFFF5F /* ApexMobileFirstViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexMobileFirstViewController.h; sourceTree = "<group>"; };
- 719EF8F918BB839F00EFFF5F /* ApexMobileFirstViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexMobileFirstViewController.m; sourceTree = "<group>"; };
- 719EF8FB18BB839F00EFFF5F /* ApexMobileSecondViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexMobileSecondViewController.h; sourceTree = "<group>"; };
- 719EF8FC18BB839F00EFFF5F /* ApexMobileSecondViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexMobileSecondViewController.m; sourceTree = "<group>"; };
- 719EF90518BB839F00EFFF5F /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
- 719EF90D18BB839F00EFFF5F /* Apex MobileTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Apex MobileTests-Info.plist"; sourceTree = "<group>"; };
- 719EF90F18BB839F00EFFF5F /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 719EF91118BB839F00EFFF5F /* Apex_MobileTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Apex_MobileTests.m; sourceTree = "<group>"; };
- 71A003FA18D680560057CDFD /* RetrievePasswordViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RetrievePasswordViewController.h; sourceTree = "<group>"; };
- 71A003FB18D680560057CDFD /* RetrievePasswordViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RetrievePasswordViewController.m; sourceTree = "<group>"; };
- 71A003FD18D6BFB40057CDFD /* ChangePasswordViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChangePasswordViewController.h; sourceTree = "<group>"; };
- 71A003FE18D6BFB40057CDFD /* ChangePasswordViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChangePasswordViewController.m; sourceTree = "<group>"; };
- 71A01D7718C9AE77003307A9 /* DetailCellKV.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailCellKV.h; sourceTree = "<group>"; };
- 71A01D7818C9AE77003307A9 /* DetailCellKV.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailCellKV.m; sourceTree = "<group>"; };
- 71A01D7A18C9AE97003307A9 /* DetailCellList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailCellList.h; sourceTree = "<group>"; };
- 71A01D7B18C9AE97003307A9 /* DetailCellList.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailCellList.m; sourceTree = "<group>"; };
- 71A01D7D18C9AEC8003307A9 /* DetailCellWeb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailCellWeb.h; sourceTree = "<group>"; };
- 71A01D7E18C9AEC8003307A9 /* DetailCellWeb.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailCellWeb.m; sourceTree = "<group>"; };
- 71A01D8018C9BA67003307A9 /* DetailContent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailContent.h; sourceTree = "<group>"; };
- 71A01D8118C9BA67003307A9 /* DetailContent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailContent.m; sourceTree = "<group>"; };
- 71A01D8318C9BDC8003307A9 /* DetailTabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailTabBarController.h; sourceTree = "<group>"; };
- 71A01D8418C9BDC8003307A9 /* DetailTabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailTabBarController.m; sourceTree = "<group>"; };
- 71A2D76018DC3895001C380A /* LineView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LineView.h; sourceTree = "<group>"; };
- 71A2D76118DC3895001C380A /* LineView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LineView.m; sourceTree = "<group>"; };
- 71A565D718C20F5900CDAC07 /* SearchTableAdapter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchTableAdapter.h; sourceTree = "<group>"; };
- 71A565D818C20F5900CDAC07 /* SearchTableAdapter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchTableAdapter.m; sourceTree = "<group>"; };
- 71A565DD18C212EA00CDAC07 /* Constant.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Constant.h; sourceTree = "<group>"; };
- 71A565DE18C212EA00CDAC07 /* Constant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Constant.m; sourceTree = "<group>"; };
- 71AE427118C47AF900B8EC3D /* SearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchViewController.h; sourceTree = "<group>"; };
- 71AE427218C47AF900B8EC3D /* SearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchViewController.m; sourceTree = "<group>"; };
- 71B7998B2021AE7400F8685E /* MDHTMLLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MDHTMLLabel.h; path = "../../RedAnt ERP Mobile/common/customUI/MDHTMLLabel.h"; sourceTree = "<group>"; };
- 71B7998C2021AE7400F8685E /* MDHTMLLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MDHTMLLabel.m; path = "../../RedAnt ERP Mobile/common/customUI/MDHTMLLabel.m"; sourceTree = "<group>"; };
- 71B799992021B22D00F8685E /* AMResultViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMResultViewController.h; sourceTree = "<group>"; };
- 71B7999A2021B22D00F8685E /* AMResultViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMResultViewController.m; sourceTree = "<group>"; };
- 71BA502C1908ED5700D0BD31 /* CellItemHistory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CellItemHistory.h; sourceTree = "<group>"; };
- 71BA502D1908ED5700D0BD31 /* CellItemHistory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CellItemHistory.m; sourceTree = "<group>"; };
- 71BA502F1908ED9100D0BD31 /* HistoryViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HistoryViewController.h; sourceTree = "<group>"; };
- 71BA50301908ED9100D0BD31 /* HistoryViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HistoryViewController.m; sourceTree = "<group>"; };
- 71BA50321908EDCF00D0BD31 /* HistoryTabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HistoryTabBarController.h; sourceTree = "<group>"; };
- 71BA50331908EDCF00D0BD31 /* HistoryTabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HistoryTabBarController.m; sourceTree = "<group>"; };
- 71BA50351908F21500D0BD31 /* HistoryData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HistoryData.h; sourceTree = "<group>"; };
- 71BA50361908F21500D0BD31 /* HistoryData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HistoryData.m; sourceTree = "<group>"; };
- 71CEE38818CB749E00052C63 /* DetailPageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailPageViewController.h; sourceTree = "<group>"; };
- 71CEE38918CB749E00052C63 /* DetailPageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailPageViewController.m; sourceTree = "<group>"; };
- 71CEE3D518CC559B00052C63 /* ApexMobileNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApexMobileNavigationController.h; sourceTree = "<group>"; };
- 71CEE3D618CC559B00052C63 /* ApexMobileNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApexMobileNavigationController.m; sourceTree = "<group>"; };
- 71DA6045190A00F600683003 /* FavoritesData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FavoritesData.h; sourceTree = "<group>"; };
- 71DA6046190A00F600683003 /* FavoritesData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FavoritesData.m; sourceTree = "<group>"; };
- 71DA6048190A02CE00683003 /* FavoritesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FavoritesViewController.h; path = ../FavoritesViewController.h; sourceTree = "<group>"; };
- 71DA6049190A02CE00683003 /* FavoritesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FavoritesViewController.m; path = ../FavoritesViewController.m; sourceTree = "<group>"; };
- 71DA74A418BDDD30003B46A6 /* AboutViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AboutViewController.h; path = ../AboutViewController.h; sourceTree = "<group>"; };
- 71DA74A518BDDD30003B46A6 /* AboutViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AboutViewController.m; path = ../AboutViewController.m; sourceTree = "<group>"; };
- 71DA74A718BDDFB5003B46A6 /* about.htm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = about.htm; sourceTree = "<group>"; };
- 71E0D1D22022AB7E009A08EB /* FullyShowViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FullyShowViewController.m; path = ../../common/customUI/FullyShowViewController.m; sourceTree = "<group>"; };
- 71E0D1D32022AB7E009A08EB /* ResultViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ResultViewController.m; path = ../../common/customUI/ResultViewController.m; sourceTree = "<group>"; };
- 71E0D1D42022AB7E009A08EB /* ResultViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ResultViewController.h; path = ../../common/customUI/ResultViewController.h; sourceTree = "<group>"; };
- 71E0D1D52022AB7E009A08EB /* Result.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Result.storyboard; path = ../../common/customUI/Result.storyboard; sourceTree = "<group>"; };
- 71E0D1D62022AB7E009A08EB /* FullyShowViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FullyShowViewController.h; path = ../../common/customUI/FullyShowViewController.h; sourceTree = "<group>"; };
- 71F67CF419063612004E8462 /* ApexHistoryViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApexHistoryViewController.h; sourceTree = "<group>"; };
- 71F67CF519063612004E8462 /* ApexHistoryViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApexHistoryViewController.m; sourceTree = "<group>"; };
- 71F67CF719065EA8004E8462 /* SimpleMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SimpleMenu.h; sourceTree = "<group>"; };
- 71F67CF819065EA8004E8462 /* SimpleMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SimpleMenu.m; sourceTree = "<group>"; };
- 71F67CFA19066375004E8462 /* PulldownMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PulldownMenu.h; sourceTree = "<group>"; };
- 71F67CFB19066375004E8462 /* PulldownMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PulldownMenu.m; sourceTree = "<group>"; };
- 71FCDE0520492B5E00B0746B /* MyQLPreviewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MyQLPreviewController.h; path = ../../common/customUI/MyQLPreviewController.h; sourceTree = "<group>"; };
- 71FCDE0620492B5E00B0746B /* MyQLPreviewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = MyQLPreviewController.m; path = ../../common/customUI/MyQLPreviewController.m; sourceTree = "<group>"; };
- /* End PBXFileReference section */
- /* Begin PBXFrameworksBuildPhase section */
- 719EF8DA18BB839F00EFFF5F /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 426F397F2033CEE80025C568 /* AudioToolbox.framework in Frameworks */,
- 427CF5E0202452460041472A /* Accelerate.framework in Frameworks */,
- 71514ED2191B7E2500009C00 /* AddressBookUI.framework in Frameworks */,
- 719E7E3518C0395E003408FF /* libsqlite3.dylib in Frameworks */,
- 7120DD0118BE266000E7546F /* SystemConfiguration.framework in Frameworks */,
- 7120DCFF18BE265100E7546F /* QuartzCore.framework in Frameworks */,
- 7120DCFD18BE264300E7546F /* OpenGLES.framework in Frameworks */,
- 7120DCFB18BE263800E7546F /* libz.dylib in Frameworks */,
- 7120DCF918BE262E00E7546F /* libicucore.dylib in Frameworks */,
- 7120DCF718BE262300E7546F /* libc++.dylib in Frameworks */,
- 7120DCF518BE261500E7546F /* ImageIO.framework in Frameworks */,
- 7120DCF318BE260700E7546F /* GLKit.framework in Frameworks */,
- 7120DCF118BE25F500E7546F /* CoreText.framework in Frameworks */,
- 7120DCEF18BE25E500E7546F /* CoreLocation.framework in Frameworks */,
- 7120DCED18BE25DA00E7546F /* CoreData.framework in Frameworks */,
- 7120DCEB18BE25CE00E7546F /* AVFoundation.framework in Frameworks */,
- 719EF8E318BB839F00EFFF5F /* CoreGraphics.framework in Frameworks */,
- 719EF8E518BB839F00EFFF5F /* UIKit.framework in Frameworks */,
- 719EF8E118BB839F00EFFF5F /* Foundation.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXFrameworksBuildPhase section */
- /* Begin PBXGroup section */
- 420DEF1C20A1889F00720524 /* Communication */ = {
- isa = PBXGroup;
- children = (
- 420DEF2320A1898500720524 /* AMCommHeadCell.h */,
- 420DEF2420A1898500720524 /* AMCommHeadCell.m */,
- 420DEF2520A1898500720524 /* AMCommHeadCell.xib */,
- 420DEF2820A1899600720524 /* AMCommContentCell.h */,
- 420DEF2920A1899600720524 /* AMCommContentCell.m */,
- 420DEF2A20A1899600720524 /* AMCommContentCell.xib */,
- 420DEF2D20A189AA00720524 /* AMCommEditCell.h */,
- 420DEF2E20A189AA00720524 /* AMCommEditCell.m */,
- 420DEF2F20A189AA00720524 /* AMCommEditCell.xib */,
- 42DE626020A41907005FB582 /* AMTextField.h */,
- 42DE626120A41907005FB582 /* AMTextField.m */,
- );
- name = Communication;
- sourceTree = "<group>";
- };
- 42253C95209C3BF300879B09 /* ShipMap */ = {
- isa = PBXGroup;
- children = (
- 42253C96209C3C0F00879B09 /* AMShipMap.h */,
- 42253C97209C3C0F00879B09 /* AMShipMap.m */,
- );
- path = ShipMap;
- sourceTree = "<group>";
- };
- 4225E42121E084A4009D2364 /* Result */ = {
- isa = PBXGroup;
- children = (
- 4225E44421E0989D009D2364 /* ApexResultProtocol.h */,
- 42FB6ECD21F3136300F694AB /* ApexResultMenuItem.h */,
- 42FB6ECE21F3136300F694AB /* ApexResultMenuItem.m */,
- 4225E42221E08502009D2364 /* ApexResultViewController.h */,
- 4225E42321E08502009D2364 /* ApexResultViewController.m */,
- 4225E42521E08576009D2364 /* ApexResult.storyboard */,
- 4225E44521E099B7009D2364 /* Presenter */,
- 42C6754F21E3262D001E3FF4 /* QuickLook */,
- 4225E42A21E08858009D2364 /* TableDelegate */,
- 4225E42921E0884E009D2364 /* TableDataSource */,
- 4225E42821E085E3009D2364 /* Model */,
- 4225E42721E085CE009D2364 /* Cell */,
- );
- path = Result;
- sourceTree = "<group>";
- };
- 4225E42721E085CE009D2364 /* Cell */ = {
- isa = PBXGroup;
- children = (
- 4225E43121E08A54009D2364 /* ApexResultContainerCell.h */,
- 4225E43221E08A54009D2364 /* ApexResultContainerCell.m */,
- 42FB6EB821F2B9FE00F694AB /* ApexResultContainerCell.xib */,
- 4225E43621E08A8C009D2364 /* ApexResultDocumentCell.h */,
- 4225E43721E08A8C009D2364 /* ApexResultDocumentCell.m */,
- 4225E43821E08A8C009D2364 /* ApexResultDocumentCell.xib */,
- 42FB6EBA21F2BAB800F694AB /* ApexResultBLInfoCell.h */,
- 42FB6EBB21F2BAB800F694AB /* ApexResultBLInfoCell.m */,
- 42FB6EBC21F2BAB800F694AB /* ApexResultBLInfoCell.xib */,
- 42FB6EBF21F2BB6400F694AB /* ApexResultBookingCell.h */,
- 42FB6EC021F2BB6400F694AB /* ApexResultBookingCell.m */,
- 42FB6EC121F2BB6400F694AB /* ApexResultBookingCell.xib */,
- 42C6754C21E2F1D4001E3FF4 /* ApexResultAdditionView.h */,
- 42C6754D21E2F1D4001E3FF4 /* ApexResultAdditionView.m */,
- 42E8212E21F6ED1800127705 /* ApexResultAdditionView.xib */,
- );
- path = Cell;
- sourceTree = "<group>";
- };
- 4225E42821E085E3009D2364 /* Model */ = {
- isa = PBXGroup;
- children = (
- 4225E44121E08B47009D2364 /* ApexResultBaseModel.h */,
- 4225E44221E08B47009D2364 /* ApexResultBaseModel.m */,
- 42FB6EC721F2BC8600F694AB /* ApexResultAddition.h */,
- 42FB6EC821F2BC8600F694AB /* ApexResultAddition.m */,
- 4225E43B21E08ACE009D2364 /* ApexResultContainerModel.h */,
- 4225E43C21E08ACE009D2364 /* ApexResultContainerModel.m */,
- 4225E43E21E08AEF009D2364 /* ApexResultDocumentModel.h */,
- 4225E43F21E08AEF009D2364 /* ApexResultDocumentModel.m */,
- 42FB6EC421F2BC5300F694AB /* ApexResultBookingModel.h */,
- 42FB6EC521F2BC5300F694AB /* ApexResultBookingModel.m */,
- 42FB6ECA21F2C0E300F694AB /* ApexResultBLInfoModel.h */,
- 42FB6ECB21F2C0E300F694AB /* ApexResultBLInfoModel.m */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 4225E42921E0884E009D2364 /* TableDataSource */ = {
- isa = PBXGroup;
- children = (
- 4225E42E21E088AA009D2364 /* ApexResultViewController+TableDataSource.h */,
- 4225E42F21E088AA009D2364 /* ApexResultViewController+TableDataSource.m */,
- );
- path = TableDataSource;
- sourceTree = "<group>";
- };
- 4225E42A21E08858009D2364 /* TableDelegate */ = {
- isa = PBXGroup;
- children = (
- 4225E42B21E08895009D2364 /* ApexResultViewController+TableDelegate.h */,
- 4225E42C21E08895009D2364 /* ApexResultViewController+TableDelegate.m */,
- );
- path = TableDelegate;
- sourceTree = "<group>";
- };
- 4225E44521E099B7009D2364 /* Presenter */ = {
- isa = PBXGroup;
- children = (
- 4225E44621E099CB009D2364 /* ApexResultPresenter.h */,
- 4225E44721E099CB009D2364 /* ApexResultPresenter.m */,
- );
- path = Presenter;
- sourceTree = "<group>";
- };
- 4225E44921E0A39A009D2364 /* HUD */ = {
- isa = PBXGroup;
- children = (
- 4225E44A21E0A39A009D2364 /* RAProgressHUD.h */,
- 4225E44B21E0A39A009D2364 /* RAProgressHUD.m */,
- );
- name = HUD;
- path = ../../common/HUD;
- sourceTree = "<group>";
- };
- 4225E44C21E0A39A009D2364 /* LayoutConstraint */ = {
- isa = PBXGroup;
- children = (
- 4225E44E21E0A39A009D2364 /* UIView+RAConstraint.h */,
- 4225E44D21E0A39A009D2364 /* UIView+RAConstraint.m */,
- );
- name = LayoutConstraint;
- path = ../../common/LayoutConstraint;
- sourceTree = "<group>";
- };
- 425390072079B73800ECF982 /* KPI */ = {
- isa = PBXGroup;
- children = (
- 425390152079B7EA00ECF982 /* Cell */,
- 420F0CA220901C2E005C4690 /* KPIRepeatTapGestureRecognizer.h */,
- 420F0CA320901C2E005C4690 /* KPIRepeatTapGestureRecognizer.m */,
- );
- name = KPI;
- sourceTree = "<group>";
- };
- 425390152079B7EA00ECF982 /* Cell */ = {
- isa = PBXGroup;
- children = (
- 4253900B2079B7C700ECF982 /* KPIPieChartCell.h */,
- 4253900C2079B7C700ECF982 /* KPIPieChartCell.m */,
- 4253900D2079B7C700ECF982 /* KPIPieChartCell.xib */,
- 42539027207A159300ECF982 /* KPIButton.h */,
- 42539028207A159300ECF982 /* KPIButton.m */,
- 42BFD2D0207B697800DA9038 /* KPICell.h */,
- 42BFD2D1207B697800DA9038 /* KPICell.m */,
- 42BB74082084732D00B9B6E4 /* KPICell.xib */,
- 42BB7400208431DA00B9B6E4 /* KPILegendCell.h */,
- 42BB7401208431DA00B9B6E4 /* KPILegendCell.m */,
- 42BB740A2084737800B9B6E4 /* KPILegendCell.xib */,
- 42BB740320846B4500B9B6E4 /* KPITableCell.h */,
- 42BB740420846B4500B9B6E4 /* KPITableCell.m */,
- 42BB740520846B4500B9B6E4 /* KPITableCell.xib */,
- );
- name = Cell;
- sourceTree = "<group>";
- };
- 425390162079B94300ECF982 /* PieChart */ = {
- isa = PBXGroup;
- children = (
- 425390192079B99B00ECF982 /* PieChart.xcassets */,
- 4253901F2079B99B00ECF982 /* XYCommon.h */,
- 425390172079B99A00ECF982 /* XYCommon.m */,
- 4253901A2079B99B00ECF982 /* XYPieChartView.h */,
- 4253901C2079B99B00ECF982 /* XYPieChartView.m */,
- 4253901D2079B99B00ECF982 /* XYRenderView.h */,
- 4253901E2079B99B00ECF982 /* XYRenderView.m */,
- 425390182079B99A00ECF982 /* XYRotatedView.h */,
- 4253901B2079B99B00ECF982 /* XYRotatedView.m */,
- );
- path = PieChart;
- sourceTree = "<group>";
- };
- 425CF088201EAF8800750E32 /* History */ = {
- isa = PBXGroup;
- children = (
- 715643C22019B58400B04267 /* OrderHistoryViewController.h */,
- 715643C32019B58400B04267 /* OrderHistoryViewController.m */,
- );
- name = History;
- sourceTree = "<group>";
- };
- 425CF089201EB2B500750E32 /* Refresh */ = {
- isa = PBXGroup;
- children = (
- 425CF08A201EB2B500750E32 /* Footer */,
- 425CF08D201EB2B500750E32 /* Header */,
- 425CF090201EB2B500750E32 /* JLRefreshBasis.h */,
- 425CF091201EB2B500750E32 /* JLRefreshBasis.m */,
- 425CF092201EB2B500750E32 /* UIScrollView+JLRefresh.h */,
- 425CF093201EB2B500750E32 /* UIScrollView+JLRefresh.m */,
- 425CF094201EB2B500750E32 /* UIView+JLExtension.h */,
- 425CF095201EB2B500750E32 /* UIView+JLExtension.m */,
- );
- name = Refresh;
- path = ../../common/customUI/Refresh;
- sourceTree = "<group>";
- };
- 425CF08A201EB2B500750E32 /* Footer */ = {
- isa = PBXGroup;
- children = (
- 425CF08B201EB2B500750E32 /* JLRefreshFooter.h */,
- 425CF08C201EB2B500750E32 /* JLRefreshFooter.m */,
- );
- path = Footer;
- sourceTree = "<group>";
- };
- 425CF08D201EB2B500750E32 /* Header */ = {
- isa = PBXGroup;
- children = (
- 425CF08E201EB2B500750E32 /* JLRefreshHeader.h */,
- 425CF08F201EB2B500750E32 /* JLRefreshHeader.m */,
- );
- path = Header;
- sourceTree = "<group>";
- };
- 42604123201C53DB002374A8 /* Home */ = {
- isa = PBXGroup;
- children = (
- 715643BF2019B27500B04267 /* HomeViewController.h */,
- 715643C02019B27500B04267 /* HomeViewController.m */,
- 42604125201C578B002374A8 /* ShipSearchController.h */,
- 42604126201C578B002374A8 /* ShipSearchController.m */,
- 42604128201C57A7002374A8 /* ShipSearch.storyboard */,
- );
- name = Home;
- sourceTree = "<group>";
- };
- 42604124201C53ED002374A8 /* ShipStatusCell */ = {
- isa = PBXGroup;
- children = (
- 7162546C201C412E009E3A41 /* ShippingStatusCell.xib */,
- 42604120201C4B41002374A8 /* ShipingStatusCell.h */,
- 42604121201C4B41002374A8 /* ShipingStatusCell.m */,
- );
- name = ShipStatusCell;
- sourceTree = "<group>";
- };
- 426E8AB4202163EB0073BA5D /* Alert */ = {
- isa = PBXGroup;
- children = (
- 426E8AB5202163EC0073BA5D /* JLCustomerAlertController.h */,
- 426E8AB6202163EC0073BA5D /* JLCustomerAlertController.m */,
- 426E8AB7202163EC0073BA5D /* JLPresentationController.h */,
- 426E8AB8202163EC0073BA5D /* JLPresentationController.m */,
- 426E8ABB2021AEC50073BA5D /* JLCustomerNavigationAlertController.h */,
- 426E8ABC2021AEC50073BA5D /* JLCustomerNavigationAlertController.m */,
- );
- name = Alert;
- path = ../../common/customUI/Alert;
- sourceTree = "<group>";
- };
- 42C6754F21E3262D001E3FF4 /* QuickLook */ = {
- isa = PBXGroup;
- children = (
- 42C6755021E32654001E3FF4 /* ApexResultViewController+QuickLook.h */,
- 42C6755121E32654001E3FF4 /* ApexResultViewController+QuickLook.m */,
- );
- path = QuickLook;
- sourceTree = "<group>";
- };
- 713AA79E1917366A00B44092 /* documents */ = {
- isa = PBXGroup;
- children = (
- 713AA79F191736E600B44092 /* DocumentsViewController.h */,
- 713AA7A0191736E600B44092 /* DocumentsViewController.m */,
- 713AA7A21917373600B44092 /* LocalDocumentsViewController.h */,
- 713AA7A31917373600B44092 /* LocalDocumentsViewController.m */,
- );
- name = documents;
- sourceTree = "<group>";
- };
- 715643B820198A6000B04267 /* new */ = {
- isa = PBXGroup;
- children = (
- 42253C95209C3BF300879B09 /* ShipMap */,
- 425390162079B94300ECF982 /* PieChart */,
- 425390072079B73800ECF982 /* KPI */,
- 716027CE204D3302003CA085 /* share */,
- 7162546A201C3AF1009E3A41 /* readme.txt */,
- 7157099A2021591F00EFE5C5 /* config.h */,
- 715709932021576A00EFE5C5 /* const.h */,
- 7157098F2021573600EFE5C5 /* utils */,
- 71B7998E2021AE7F00F8685E /* customUI */,
- 7157098B202156EC00EFE5C5 /* network */,
- 71B799822021AE3200F8685E /* result */,
- 71807B992021976000E1F1DD /* detail */,
- 42604124201C53ED002374A8 /* ShipStatusCell */,
- 425CF088201EAF8800750E32 /* History */,
- 42604123201C53DB002374A8 /* Home */,
- 7162546E201C51DC009E3A41 /* fake data */,
- 715643D8201C057E00B04267 /* ModeList */,
- 715643B920198A9900B04267 /* RootViewController.h */,
- 715643BA20198A9900B04267 /* RootViewController.m */,
- 715643BC2019AA9B00B04267 /* LoginViewController.h */,
- 715643BD2019AA9B00B04267 /* LoginViewController.m */,
- 715643C52019BB6700B04267 /* StaticModelistViewController.h */,
- 715643C62019BB6700B04267 /* StaticModelistViewController.m */,
- 715643D4201AD2AB00B04267 /* StaticModelistViewController.xib */,
- 715643D1201ACB1700B04267 /* StaticModeTableViewCell.h */,
- 715643D2201ACB1700B04267 /* StaticModeTableViewCell.m */,
- 715643D6201AD99300B04267 /* StaticModeTableViewCell.xib */,
- 715643C82019BC4C00B04267 /* SearchlistViewController.h */,
- 715643C92019BC4C00B04267 /* SearchlistViewController.m */,
- 715643CB2019BC6C00B04267 /* ToolslistViewController.h */,
- 715643CC2019BC6C00B04267 /* ToolslistViewController.m */,
- 715643CE2019BCCE00B04267 /* MylistViewController.h */,
- 715643CF2019BCCE00B04267 /* MylistViewController.m */,
- );
- name = new;
- sourceTree = "<group>";
- };
- 715643D8201C057E00B04267 /* ModeList */ = {
- isa = PBXGroup;
- children = (
- 715643D9201C079F00B04267 /* tools.json */,
- 715643DB201C117300B04267 /* search.json */,
- 715643DD201C1AE600B04267 /* my.json */,
- );
- name = ModeList;
- sourceTree = "<group>";
- };
- 7157098B202156EC00EFE5C5 /* network */ = {
- isa = PBXGroup;
- children = (
- 71570998202157BC00EFE5C5 /* RANetworkTaskDelegate.h */,
- 71570997202157BC00EFE5C5 /* RANetworkTaskDelegate.m */,
- 7157098D2021572600EFE5C5 /* NetworkUtils.h */,
- 7157098C2021572600EFE5C5 /* NetworkUtils.m */,
- 715709AC20215CB000EFE5C5 /* RANetwork.h */,
- 715709AD20215CB000EFE5C5 /* RANetwork.m */,
- 717D76E918C7F8120070302D /* Reachability.h */,
- 717D76EA18C7F8120070302D /* Reachability.m */,
- );
- name = network;
- sourceTree = "<group>";
- };
- 7157098F2021573600EFE5C5 /* utils */ = {
- isa = PBXGroup;
- children = (
- 715709AF20215DEC00EFE5C5 /* AES */,
- 7157099B20215B4100EFE5C5 /* zip */,
- 71570994202157A600EFE5C5 /* RAUtils.h */,
- 71570995202157A600EFE5C5 /* RAUtils.m */,
- 715709902021574D00EFE5C5 /* RAConvertor.h */,
- 715709912021574D00EFE5C5 /* RAConvertor.m */,
- );
- name = utils;
- sourceTree = "<group>";
- };
- 7157099B20215B4100EFE5C5 /* zip */ = {
- isa = PBXGroup;
- children = (
- 715709A920215B6200EFE5C5 /* ZipArchive.h */,
- 715709AA20215B6200EFE5C5 /* ZipArchive.mm */,
- 7157099D20215B5000EFE5C5 /* crypt.h */,
- 715709A020215B5000EFE5C5 /* ioapi.c */,
- 715709A120215B5000EFE5C5 /* ioapi.h */,
- 715709A420215B5100EFE5C5 /* mztools.c */,
- 715709A220215B5100EFE5C5 /* mztools.h */,
- 7157099E20215B5000EFE5C5 /* unzip.c */,
- 715709A320215B5100EFE5C5 /* unzip.h */,
- 7157099C20215B5000EFE5C5 /* zip.c */,
- 7157099F20215B5000EFE5C5 /* zip.h */,
- );
- name = zip;
- sourceTree = "<group>";
- };
- 715709AF20215DEC00EFE5C5 /* AES */ = {
- isa = PBXGroup;
- children = (
- 715709B420215DFF00EFE5C5 /* AESCrypt.h */,
- 715709B820215DFF00EFE5C5 /* AESCrypt.m */,
- 715709B620215DFF00EFE5C5 /* LICENSE */,
- 715709B520215DFF00EFE5C5 /* NSData+Base64.h */,
- 715709B320215DFF00EFE5C5 /* NSData+Base64.m */,
- 715709B720215DFF00EFE5C5 /* NSData+CommonCrypto.h */,
- 715709B020215DFF00EFE5C5 /* NSData+CommonCrypto.m */,
- 715709B120215DFF00EFE5C5 /* NSString+Base64.h */,
- 715709B220215DFF00EFE5C5 /* NSString+Base64.m */,
- );
- name = AES;
- sourceTree = "<group>";
- };
- 716027CE204D3302003CA085 /* share */ = {
- isa = PBXGroup;
- children = (
- 716027D3204D3D15003CA085 /* LPShareActivity.h */,
- 716027D2204D3D15003CA085 /* LPShareActivity.m */,
- 716027CF204D334A003CA085 /* DetailShareItemProvider.h */,
- 716027D0204D334A003CA085 /* DetailShareItemProvider.m */,
- );
- name = share;
- sourceTree = "<group>";
- };
- 7162546E201C51DC009E3A41 /* fake data */ = {
- isa = PBXGroup;
- children = (
- 42541ACE207C49610072BC5A /* fake_home.json */,
- 425390252079B9B400ECF982 /* KPI.json */,
- 7162546F201C5205009E3A41 /* fake_container_list.json */,
- 71807B972021965B00E1F1DD /* fake_tracking.json */,
- 71807B9D2021ACE500E1F1DD /* fake_search.json */,
- );
- name = "fake data";
- sourceTree = "<group>";
- };
- 71807B992021976000E1F1DD /* detail */ = {
- isa = PBXGroup;
- children = (
- 71807B9A2021979A00E1F1DD /* DetailCellTracking.h */,
- 71807B9B2021979A00E1F1DD /* DetailCellTracking.m */,
- 7101BEC62031389A00CC6E3A /* DetailCellKVNew.h */,
- 7101BEC72031389A00CC6E3A /* DetailCellKVNew.m */,
- );
- name = detail;
- sourceTree = "<group>";
- };
- 719A51A618C5A4E40080C075 /* CustomUI */ = {
- isa = PBXGroup;
- children = (
- 718BE8A6190F9D970046EA6A /* MyAutocompleteView.h */,
- 718BE8A7190F9D970046EA6A /* MyAutocompleteView.m */,
- 718BE8AA190F9D970046EA6A /* MyAutocompleteItemsSource.h */,
- 718BE8AB190F9D970046EA6A /* MyAutocompleteItemsSource.m */,
- 718BE8AC190F9D970046EA6A /* MyAutocompletionCellFactory.h */,
- 718BE8AD190F9D970046EA6A /* MyAutocompletionCellFactory.m */,
- 718BE8AE190F9D970046EA6A /* MySuggestion.h */,
- 718BE8AF190F9D970046EA6A /* MySuggestion.m */,
- 71F67CFA19066375004E8462 /* PulldownMenu.h */,
- 71F67CFB19066375004E8462 /* PulldownMenu.m */,
- 712CBA0118CF38DB00C61394 /* RTLabel.h */,
- 712CBA0218CF38DB00C61394 /* RTLabel.m */,
- 719A51A318C5A4AF0080C075 /* SimpleGrid.h */,
- 719A51A418C5A4AF0080C075 /* SimpleGrid.m */,
- 71951E6D18C6A9A5005024BD /* TouchLabel.h */,
- 71951E6E18C6A9A5005024BD /* TouchLabel.m */,
- 71F67CF719065EA8004E8462 /* SimpleMenu.h */,
- 71F67CF819065EA8004E8462 /* SimpleMenu.m */,
- );
- name = CustomUI;
- sourceTree = "<group>";
- };
- 719A51AA18C5A60C0080C075 /* unused */ = {
- isa = PBXGroup;
- children = (
- 719A51A718C5A5D30080C075 /* SimpleGridDataSource.h */,
- 719A51A818C5A5D30080C075 /* SimpleGridDataSource.m */,
- 719A51B818C5AB7B0080C075 /* SimpleGridComponent.h */,
- 719A51B918C5AB7B0080C075 /* SimpleGridComponent.m */,
- );
- name = unused;
- sourceTree = "<group>";
- };
- 719A51AB18C5A66A0080C075 /* Search */ = {
- isa = PBXGroup;
- children = (
- 71AE427118C47AF900B8EC3D /* SearchViewController.h */,
- 71AE427218C47AF900B8EC3D /* SearchViewController.m */,
- 71A565D718C20F5900CDAC07 /* SearchTableAdapter.h */,
- 71A565D818C20F5900CDAC07 /* SearchTableAdapter.m */,
- 711DC6B018C30A4800FB1749 /* TableCellEdit.h */,
- 711DC6B118C30A4800FB1749 /* TableCellEdit.m */,
- 71406DCC18C36A52000914C4 /* TableCellBool.h */,
- 71406DCD18C36A52000914C4 /* TableCellBool.m */,
- 71406DCF18C36A6E000914C4 /* TableCellDate.h */,
- 71406DD018C36A6E000914C4 /* TableCellDate.m */,
- );
- name = Search;
- sourceTree = "<group>";
- };
- 719A51AC18C5A6A80080C075 /* Location */ = {
- isa = PBXGroup;
- children = (
- 3C0F4E9223BAE74F000A2FE7 /* CachedTileOverlay.h */,
- 3C0F4E9323BAE74F000A2FE7 /* CachedTileOverlay.m */,
- 3C2D99A1239B92F1007B759E /* ApexMapView.h */,
- 3C2D99A0239B92F1007B759E /* ApexMapView.m */,
- 3C1DEC3C239F6C42006F7E2A /* MKMapView+ZoomLevel.h */,
- 3C1DEC3B239F6C42006F7E2A /* MKMapView+ZoomLevel.m */,
- 7103C84A22549E7E00261926 /* CLLocation+Sino.h */,
- 7103C84922549E7E00261926 /* CLLocation+Sino.m */,
- 7120DD0218BE273900E7546F /* LocationViewController.h */,
- 7120DD0318BE273900E7546F /* LocationViewController.m */,
- 42BCACC8209AE243009DDA43 /* AMAnnotationView.h */,
- 42BCACC9209AE243009DDA43 /* AMAnnotationView.m */,
- 42BCACCB209AE342009DDA43 /* AMMapAnnotaion.h */,
- 42BCACCC209AE342009DDA43 /* AMMapAnnotaion.m */,
- 42253C92209C007700879B09 /* AMMapView.h */,
- 42253C93209C007700879B09 /* AMMapView.m */,
- 3C2D99A3239B93C8007B759E /* AMViewController.h */,
- 3C2D99A4239B93C8007B759E /* AMViewController.m */,
- );
- name = Location;
- sourceTree = "<group>";
- };
- 719A51AD18C5A6D00080C075 /* About */ = {
- isa = PBXGroup;
- children = (
- 71DA74A418BDDD30003B46A6 /* AboutViewController.h */,
- 71DA74A518BDDD30003B46A6 /* AboutViewController.m */,
- );
- name = About;
- sourceTree = "<group>";
- };
- 719A51AE18C5A7230080C075 /* FunctionSelect */ = {
- isa = PBXGroup;
- children = (
- 71330C1E18BCC4DA0048956C /* FunctionSelectViewController.h */,
- 71330C1F18BCC4DA0048956C /* FunctionSelectViewController.m */,
- );
- name = FunctionSelect;
- sourceTree = "<group>";
- };
- 719A51AF18C5A75A0080C075 /* Result */ = {
- isa = PBXGroup;
- children = (
- 717D772D18C84E3F0070302D /* PageData.h */,
- 717D772E18C84E3F0070302D /* PageData.m */,
- );
- name = Result;
- sourceTree = "<group>";
- };
- 719A51B018C5A7680080C075 /* Detail */ = {
- isa = PBXGroup;
- children = (
- 71A01D7718C9AE77003307A9 /* DetailCellKV.h */,
- 71A01D7818C9AE77003307A9 /* DetailCellKV.m */,
- 71A01D7A18C9AE97003307A9 /* DetailCellList.h */,
- 71A01D7B18C9AE97003307A9 /* DetailCellList.m */,
- 71A01D7D18C9AEC8003307A9 /* DetailCellWeb.h */,
- 71A01D7E18C9AEC8003307A9 /* DetailCellWeb.m */,
- 71A01D8018C9BA67003307A9 /* DetailContent.h */,
- 71A01D8118C9BA67003307A9 /* DetailContent.m */,
- 71A01D8318C9BDC8003307A9 /* DetailTabBarController.h */,
- 71A01D8418C9BDC8003307A9 /* DetailTabBarController.m */,
- 71CEE38818CB749E00052C63 /* DetailPageViewController.h */,
- 71CEE38918CB749E00052C63 /* DetailPageViewController.m */,
- 71A2D76018DC3895001C380A /* LineView.h */,
- 71A2D76118DC3895001C380A /* LineView.m */,
- 420DEF1C20A1889F00720524 /* Communication */,
- );
- name = Detail;
- sourceTree = "<group>";
- };
- 719A51B118C5A7740080C075 /* FieldsSetting */ = {
- isa = PBXGroup;
- children = (
- 712A301118CFEF550022E6E6 /* CustomizeFieldViewController.h */,
- 712A301218CFEF550022E6E6 /* CustomizeFieldViewController.m */,
- );
- name = FieldsSetting;
- sourceTree = "<group>";
- };
- 719BEC1418FFA60800DFE987 /* tools */ = {
- isa = PBXGroup;
- children = (
- 719BEC1518FFAB7B00DFE987 /* ToolsPanelViewController.h */,
- 719BEC1618FFAB7B00DFE987 /* ToolsPanelViewController.m */,
- 7130B3F21900FB61000610D8 /* NewsViewController.h */,
- 7130B3F31900FB61000610D8 /* NewsViewController.m */,
- 716FF7901904ED2600ED6C3D /* NewsData.h */,
- 716FF7911904ED2600ED6C3D /* NewsData.m */,
- 716FF7931904FBC600ED6C3D /* NewsTableViewCell.h */,
- 716FF7941904FBC600ED6C3D /* NewsTableViewCell.m */,
- 71F67CF419063612004E8462 /* ApexHistoryViewController.h */,
- 71F67CF519063612004E8462 /* ApexHistoryViewController.m */,
- 71BA50321908EDCF00D0BD31 /* HistoryTabBarController.h */,
- 71BA50331908EDCF00D0BD31 /* HistoryTabBarController.m */,
- 71BA502F1908ED9100D0BD31 /* HistoryViewController.h */,
- 71BA50301908ED9100D0BD31 /* HistoryViewController.m */,
- 71BA50351908F21500D0BD31 /* HistoryData.h */,
- 71BA50361908F21500D0BD31 /* HistoryData.m */,
- 71DA6048190A02CE00683003 /* FavoritesViewController.h */,
- 71DA6049190A02CE00683003 /* FavoritesViewController.m */,
- 71DA6045190A00F600683003 /* FavoritesData.h */,
- 71DA6046190A00F600683003 /* FavoritesData.m */,
- 71BA502C1908ED5700D0BD31 /* CellItemHistory.h */,
- 71BA502D1908ED5700D0BD31 /* CellItemHistory.m */,
- 714C39B61922FEE1004F045B /* NewsDetailViewController.h */,
- 714C39B71922FEE1004F045B /* NewsDetailViewController.m */,
- );
- name = tools;
- sourceTree = "<group>";
- };
- 719E7E2D18C01555003408FF /* utils */ = {
- isa = PBXGroup;
- children = (
- 3C57169C23D186A30002E9FC /* WebViewController.h */,
- 3C57169A23D186A30002E9FC /* WebViewController.m */,
- 3C57169B23D186A30002E9FC /* wkweb.storyboard */,
- 3C0F4E9523BAF594000A2FE7 /* FileCache.h */,
- 3C0F4E9623BAF594000A2FE7 /* FileCache.m */,
- 719E7E3118C0368A003408FF /* ApexMobileDB.h */,
- 719E7E3218C0368A003408FF /* ApexMobileDB.m */,
- 71A565DD18C212EA00CDAC07 /* Constant.h */,
- 71A565DE18C212EA00CDAC07 /* Constant.m */,
- );
- name = utils;
- sourceTree = "<group>";
- };
- 719EF8D418BB839F00EFFF5F = {
- isa = PBXGroup;
- children = (
- 3CA1A2DD23A212E700639FCC /* Launch Screen.storyboard */,
- 427994B120300E7300746EDC /* Apex Mobile.entitlements */,
- 719EF8E618BB839F00EFFF5F /* Apex Mobile */,
- 719EF90B18BB839F00EFFF5F /* Apex MobileTests */,
- 719EF8DF18BB839F00EFFF5F /* Frameworks */,
- 719EF8DE18BB839F00EFFF5F /* Products */,
- );
- sourceTree = "<group>";
- };
- 719EF8DE18BB839F00EFFF5F /* Products */ = {
- isa = PBXGroup;
- children = (
- 719EF8DD18BB839F00EFFF5F /* Apex Mobile.app */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 719EF8DF18BB839F00EFFF5F /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 426F397E2033CEE80025C568 /* AudioToolbox.framework */,
- 427CF5DF202452450041472A /* Accelerate.framework */,
- 71514ED1191B7E2500009C00 /* AddressBookUI.framework */,
- 719E7E3418C0395E003408FF /* libsqlite3.dylib */,
- 7120DD0018BE266000E7546F /* SystemConfiguration.framework */,
- 7120DCFE18BE265100E7546F /* QuartzCore.framework */,
- 7120DCFC18BE264300E7546F /* OpenGLES.framework */,
- 7120DCFA18BE263800E7546F /* libz.dylib */,
- 7120DCF818BE262E00E7546F /* libicucore.dylib */,
- 7120DCF618BE262300E7546F /* libc++.dylib */,
- 7120DCF418BE261500E7546F /* ImageIO.framework */,
- 7120DCF218BE260700E7546F /* GLKit.framework */,
- 7120DCF018BE25F500E7546F /* CoreText.framework */,
- 7120DCEE18BE25E500E7546F /* CoreLocation.framework */,
- 7120DCEC18BE25DA00E7546F /* CoreData.framework */,
- 7120DCEA18BE25CE00E7546F /* AVFoundation.framework */,
- 719EF8E018BB839F00EFFF5F /* Foundation.framework */,
- 719EF8E218BB839F00EFFF5F /* CoreGraphics.framework */,
- 719EF8E418BB839F00EFFF5F /* UIKit.framework */,
- 719EF90518BB839F00EFFF5F /* XCTest.framework */,
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- 719EF8E618BB839F00EFFF5F /* Apex Mobile */ = {
- isa = PBXGroup;
- children = (
- 4225E44921E0A39A009D2364 /* HUD */,
- 4225E44C21E0A39A009D2364 /* LayoutConstraint */,
- 4225E42121E084A4009D2364 /* Result */,
- 426E8AB4202163EB0073BA5D /* Alert */,
- 425CF089201EB2B500750E32 /* Refresh */,
- 715643B820198A6000B04267 /* new */,
- 71C72714191CFF11001127E0 /* message */,
- 713AA79E1917366A00B44092 /* documents */,
- 719BEC1418FFA60800DFE987 /* tools */,
- 71A003F918D680250057CDFD /* password */,
- 719A51B118C5A7740080C075 /* FieldsSetting */,
- 719A51B018C5A7680080C075 /* Detail */,
- 719A51AF18C5A75A0080C075 /* Result */,
- 719A51AE18C5A7230080C075 /* FunctionSelect */,
- 719A51AD18C5A6D00080C075 /* About */,
- 719A51AC18C5A6A80080C075 /* Location */,
- 719A51AB18C5A66A0080C075 /* Search */,
- 719A51AA18C5A60C0080C075 /* unused */,
- 719A51A618C5A4E40080C075 /* CustomUI */,
- 71A565E018C2141C00CDAC07 /* resource */,
- 719E7E2D18C01555003408FF /* utils */,
- 719EF8EF18BB839F00EFFF5F /* AppDelegate.h */,
- 719EF8F018BB839F00EFFF5F /* AppDelegate.m */,
- 715643B620198A1400B04267 /* Main.storyboard */,
- 719EF8F818BB839F00EFFF5F /* ApexMobileFirstViewController.h */,
- 719EF8F918BB839F00EFFF5F /* ApexMobileFirstViewController.m */,
- 71CEE3D518CC559B00052C63 /* ApexMobileNavigationController.h */,
- 71CEE3D618CC559B00052C63 /* ApexMobileNavigationController.m */,
- 719EF8FB18BB839F00EFFF5F /* ApexMobileSecondViewController.h */,
- 719EF8FC18BB839F00EFFF5F /* ApexMobileSecondViewController.m */,
- 427CF5CF2023F5560041472A /* NewImages.xcassets */,
- 719EF8E718BB839F00EFFF5F /* Supporting Files */,
- 71375C8D18D96EDE00EBA026 /* TabBarController.h */,
- 71375C8E18D96EDE00EBA026 /* TabBarController.m */,
- );
- path = "Apex Mobile";
- sourceTree = "<group>";
- };
- 719EF8E718BB839F00EFFF5F /* Supporting Files */ = {
- isa = PBXGroup;
- children = (
- 719EF8E818BB839F00EFFF5F /* Apex Mobile-Info.plist */,
- 719EF8E918BB839F00EFFF5F /* InfoPlist.strings */,
- 719EF8EC18BB839F00EFFF5F /* main.m */,
- 719EF8EE18BB839F00EFFF5F /* Apex Mobile-Prefix.pch */,
- );
- name = "Supporting Files";
- sourceTree = "<group>";
- };
- 719EF90B18BB839F00EFFF5F /* Apex MobileTests */ = {
- isa = PBXGroup;
- children = (
- 719EF91118BB839F00EFFF5F /* Apex_MobileTests.m */,
- 719EF90C18BB839F00EFFF5F /* Supporting Files */,
- );
- path = "Apex MobileTests";
- sourceTree = "<group>";
- };
- 719EF90C18BB839F00EFFF5F /* Supporting Files */ = {
- isa = PBXGroup;
- children = (
- 719EF90D18BB839F00EFFF5F /* Apex MobileTests-Info.plist */,
- 719EF90E18BB839F00EFFF5F /* InfoPlist.strings */,
- );
- name = "Supporting Files";
- sourceTree = "<group>";
- };
- 71A003F918D680250057CDFD /* password */ = {
- isa = PBXGroup;
- children = (
- 71A003FA18D680560057CDFD /* RetrievePasswordViewController.h */,
- 71A003FB18D680560057CDFD /* RetrievePasswordViewController.m */,
- 71A003FD18D6BFB40057CDFD /* ChangePasswordViewController.h */,
- 71A003FE18D6BFB40057CDFD /* ChangePasswordViewController.m */,
- );
- name = password;
- sourceTree = "<group>";
- };
- 71A565E018C2141C00CDAC07 /* resource */ = {
- isa = PBXGroup;
- children = (
- 71DA74A718BDDFB5003B46A6 /* about.htm */,
- 714C39C119234065004F045B /* Localizable.strings */,
- );
- name = resource;
- sourceTree = "<group>";
- };
- 71B799822021AE3200F8685E /* result */ = {
- isa = PBXGroup;
- children = (
- 71E0D1D62022AB7E009A08EB /* FullyShowViewController.h */,
- 71E0D1D22022AB7E009A08EB /* FullyShowViewController.m */,
- 71E0D1D52022AB7E009A08EB /* Result.storyboard */,
- 426F39802033D0930025C568 /* ResultCell.h */,
- 426F39812033D0930025C568 /* ResultCell.m */,
- 71E0D1D42022AB7E009A08EB /* ResultViewController.h */,
- 71E0D1D32022AB7E009A08EB /* ResultViewController.m */,
- 71B799992021B22D00F8685E /* AMResultViewController.h */,
- 71B7999A2021B22D00F8685E /* AMResultViewController.m */,
- 4235C30220229F7200A99D04 /* Result.xib */,
- 4235C3042022A60A00A99D04 /* ResultCell.xib */,
- 71FCDE0520492B5E00B0746B /* MyQLPreviewController.h */,
- 71FCDE0620492B5E00B0746B /* MyQLPreviewController.m */,
- );
- name = result;
- sourceTree = "<group>";
- };
- 71B7998E2021AE7F00F8685E /* customUI */ = {
- isa = PBXGroup;
- children = (
- 71B7998B2021AE7400F8685E /* MDHTMLLabel.h */,
- 71B7998C2021AE7400F8685E /* MDHTMLLabel.m */,
- );
- name = customUI;
- sourceTree = "<group>";
- };
- 71C72714191CFF11001127E0 /* message */ = {
- isa = PBXGroup;
- children = (
- 711BA6BF191E0525002EDE6F /* MessageViewController.h */,
- 711BA6C0191E0525002EDE6F /* MessageViewController.m */,
- 711BA6C2191E0553002EDE6F /* MessageItem.h */,
- 711BA6C3191E0553002EDE6F /* MessageItem.m */,
- 71308AF5191E7B0E0024B2B0 /* MessageDetailItem.h */,
- 71308AF6191E7B0E0024B2B0 /* MessageDetailItem.m */,
- 71308AF8191E7B2A0024B2B0 /* MessageDetailViewController.h */,
- 71308AF9191E7B2A0024B2B0 /* MessageDetailViewController.m */,
- );
- name = message;
- sourceTree = "<group>";
- };
- /* End PBXGroup section */
- /* Begin PBXNativeTarget section */
- 719EF8DC18BB839F00EFFF5F /* Apex Mobile */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 719EF91518BB839F00EFFF5F /* Build configuration list for PBXNativeTarget "Apex Mobile" */;
- buildPhases = (
- 719EF8D918BB839F00EFFF5F /* Sources */,
- 719EF8DA18BB839F00EFFF5F /* Frameworks */,
- 719EF8DB18BB839F00EFFF5F /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = "Apex Mobile";
- productName = "Apex Mobile";
- productReference = 719EF8DD18BB839F00EFFF5F /* Apex Mobile.app */;
- productType = "com.apple.product-type.application";
- };
- /* End PBXNativeTarget section */
- /* Begin PBXProject section */
- 719EF8D518BB839F00EFFF5F /* Project object */ = {
- isa = PBXProject;
- attributes = {
- CLASSPREFIX = ApexMobile;
- LastUpgradeCheck = 0930;
- ORGANIZATIONNAME = "United Software Applications, Inc";
- TargetAttributes = {
- 719EF8DC18BB839F00EFFF5F = {
- DevelopmentTeam = HXWLAA5YN5;
- ProvisioningStyle = Automatic;
- SystemCapabilities = {
- com.apple.Push = {
- enabled = 1;
- };
- };
- };
- };
- };
- buildConfigurationList = 719EF8D818BB839F00EFFF5F /* Build configuration list for PBXProject "Apex Mobile" */;
- compatibilityVersion = "Xcode 3.2";
- developmentRegion = en;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- Base,
- "zh-Hans",
- );
- mainGroup = 719EF8D418BB839F00EFFF5F;
- productRefGroup = 719EF8DE18BB839F00EFFF5F /* Products */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 719EF8DC18BB839F00EFFF5F /* Apex Mobile */,
- );
- };
- /* End PBXProject section */
- /* Begin PBXResourcesBuildPhase section */
- 719EF8DB18BB839F00EFFF5F /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 42541ACF207C49610072BC5A /* fake_home.json in Resources */,
- 71625470201C5205009E3A41 /* fake_container_list.json in Resources */,
- 7162546B201C3AF1009E3A41 /* readme.txt in Resources */,
- 42604129201C57A7002374A8 /* ShipSearch.storyboard in Resources */,
- 715643DC201C117300B04267 /* search.json in Resources */,
- 420DEF3120A189AA00720524 /* AMCommEditCell.xib in Resources */,
- 4235C30320229F7200A99D04 /* Result.xib in Resources */,
- 425390212079B99B00ECF982 /* PieChart.xcassets in Resources */,
- 3CA1A2DE23A212E700639FCC /* Launch Screen.storyboard in Resources */,
- 715709BC20215E0000EFE5C5 /* LICENSE in Resources */,
- 4225E43A21E08A8C009D2364 /* ApexResultDocumentCell.xib in Resources */,
- 4253900F2079B7C700ECF982 /* KPIPieChartCell.xib in Resources */,
- 42FB6EBE21F2BAB800F694AB /* ApexResultBLInfoCell.xib in Resources */,
- 71E0D1D92022AB7E009A08EB /* Result.storyboard in Resources */,
- 715643DE201C1AE600B04267 /* my.json in Resources */,
- 71807B982021965B00E1F1DD /* fake_tracking.json in Resources */,
- 715643D7201AD99300B04267 /* StaticModeTableViewCell.xib in Resources */,
- 71DA74A818BDDFB5003B46A6 /* about.htm in Resources */,
- 42FB6EB921F2B9FE00F694AB /* ApexResultContainerCell.xib in Resources */,
- 714C39BF19234065004F045B /* Localizable.strings in Resources */,
- 427CF5D02023F5560041472A /* NewImages.xcassets in Resources */,
- 4225E42621E08576009D2364 /* ApexResult.storyboard in Resources */,
- 42E8212F21F6ED1800127705 /* ApexResultAdditionView.xib in Resources */,
- 420DEF2720A1898500720524 /* AMCommHeadCell.xib in Resources */,
- 42BB740B2084737800B9B6E4 /* KPILegendCell.xib in Resources */,
- 3C57169E23D186A30002E9FC /* wkweb.storyboard in Resources */,
- 425390262079B9B500ECF982 /* KPI.json in Resources */,
- 715643DA201C079F00B04267 /* tools.json in Resources */,
- 715643D5201AD2AB00B04267 /* StaticModelistViewController.xib in Resources */,
- 71807B9E2021ACE500E1F1DD /* fake_search.json in Resources */,
- 715643B720198A1400B04267 /* Main.storyboard in Resources */,
- 7162546D201C412E009E3A41 /* ShippingStatusCell.xib in Resources */,
- 420DEF2C20A1899600720524 /* AMCommContentCell.xib in Resources */,
- 42FB6EC321F2BB6400F694AB /* ApexResultBookingCell.xib in Resources */,
- 42BB74092084732D00B9B6E4 /* KPICell.xib in Resources */,
- 42BB740720846B4500B9B6E4 /* KPITableCell.xib in Resources */,
- 719EF8EB18BB839F00EFFF5F /* InfoPlist.strings in Resources */,
- 4235C3052022A60A00A99D04 /* ResultCell.xib in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXResourcesBuildPhase section */
- /* Begin PBXSourcesBuildPhase section */
- 719EF8D918BB839F00EFFF5F /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 715709A620215B5100EFE5C5 /* unzip.c in Sources */,
- 4225E44821E099CB009D2364 /* ApexResultPresenter.m in Sources */,
- 715643D3201ACB1700B04267 /* StaticModeTableViewCell.m in Sources */,
- 718BE8B2190F9D970046EA6A /* MyAutocompleteItemsSource.m in Sources */,
- 71406DCE18C36A52000914C4 /* TableCellBool.m in Sources */,
- 426E8ABD2021AEC50073BA5D /* JLCustomerNavigationAlertController.m in Sources */,
- 3C0F4E9423BAE74F000A2FE7 /* CachedTileOverlay.m in Sources */,
- 71A01D7F18C9AEC8003307A9 /* DetailCellWeb.m in Sources */,
- 3C0F4E9723BAF594000A2FE7 /* FileCache.m in Sources */,
- 71A01D8518C9BDC8003307A9 /* DetailTabBarController.m in Sources */,
- 71F67CFC19066375004E8462 /* PulldownMenu.m in Sources */,
- 71406DD118C36A6E000914C4 /* TableCellDate.m in Sources */,
- 717D772F18C84E3F0070302D /* PageData.m in Sources */,
- 425390202079B99B00ECF982 /* XYCommon.m in Sources */,
- 715709BB20215E0000EFE5C5 /* NSData+Base64.m in Sources */,
- 71375C8F18D96EDE00EBA026 /* TabBarController.m in Sources */,
- 42BB7402208431DA00B9B6E4 /* KPILegendCell.m in Sources */,
- 42FB6EC921F2BC8600F694AB /* ApexResultAddition.m in Sources */,
- 42253C98209C3C0F00879B09 /* AMShipMap.m in Sources */,
- 71951E6F18C6A9A5005024BD /* TouchLabel.m in Sources */,
- 71DA6047190A00F600683003 /* FavoritesData.m in Sources */,
- 425CF099201EB2B500750E32 /* UIScrollView+JLRefresh.m in Sources */,
- 4225E44F21E0A39A009D2364 /* RAProgressHUD.m in Sources */,
- 71A01D7C18C9AE97003307A9 /* DetailCellList.m in Sources */,
- 4225E44021E08AEF009D2364 /* ApexResultDocumentModel.m in Sources */,
- 4225E45021E0A39A009D2364 /* UIView+RAConstraint.m in Sources */,
- 71807B9C2021979A00E1F1DD /* DetailCellTracking.m in Sources */,
- 42539029207A159300ECF982 /* KPIButton.m in Sources */,
- 71DA74A618BDDD31003B46A6 /* AboutViewController.m in Sources */,
- 420DEF2620A1898500720524 /* AMCommHeadCell.m in Sources */,
- 715643C42019B58400B04267 /* OrderHistoryViewController.m in Sources */,
- 712CBA0318CF38DB00C61394 /* RTLabel.m in Sources */,
- 425390242079B99B00ECF982 /* XYRenderView.m in Sources */,
- 3C2D99A2239B92F1007B759E /* ApexMapView.m in Sources */,
- 71CEE3D718CC559B00052C63 /* ApexMobileNavigationController.m in Sources */,
- 426F39822033D0930025C568 /* ResultCell.m in Sources */,
- 715709922021574D00EFE5C5 /* RAConvertor.m in Sources */,
- 71BA50371908F21500D0BD31 /* HistoryData.m in Sources */,
- 71330C2018BCC4DA0048956C /* FunctionSelectViewController.m in Sources */,
- 716027D4204D3D15003CA085 /* LPShareActivity.m in Sources */,
- 715643D02019BCCE00B04267 /* MylistViewController.m in Sources */,
- 715709B920215E0000EFE5C5 /* NSData+CommonCrypto.m in Sources */,
- 718BE8B4190F9D970046EA6A /* MySuggestion.m in Sources */,
- 715709A520215B5100EFE5C5 /* zip.c in Sources */,
- 715709AE20215CB000EFE5C5 /* RANetwork.m in Sources */,
- 42FB6ECF21F3136300F694AB /* ApexResultMenuItem.m in Sources */,
- 425390222079B99B00ECF982 /* XYRotatedView.m in Sources */,
- 719EF8FD18BB839F00EFFF5F /* ApexMobileSecondViewController.m in Sources */,
- 4225E44321E08B47009D2364 /* ApexResultBaseModel.m in Sources */,
- 42253C94209C007700879B09 /* AMMapView.m in Sources */,
- 715709BA20215E0000EFE5C5 /* NSString+Base64.m in Sources */,
- 71AE427318C47AF900B8EC3D /* SearchViewController.m in Sources */,
- 715643BE2019AA9B00B04267 /* LoginViewController.m in Sources */,
- 4225E43321E08A54009D2364 /* ApexResultContainerCell.m in Sources */,
- 7103C84B22549E7F00261926 /* CLLocation+Sino.m in Sources */,
- 71308AF7191E7B0E0024B2B0 /* MessageDetailItem.m in Sources */,
- 71A565D918C20F5900CDAC07 /* SearchTableAdapter.m in Sources */,
- 719EF8FA18BB839F00EFFF5F /* ApexMobileFirstViewController.m in Sources */,
- 4225E42421E08502009D2364 /* ApexResultViewController.m in Sources */,
- 719BEC1718FFAB7B00DFE987 /* ToolsPanelViewController.m in Sources */,
- 71BA502E1908ED5700D0BD31 /* CellItemHistory.m in Sources */,
- 719A51A518C5A4AF0080C075 /* SimpleGrid.m in Sources */,
- 426E8AB9202163EC0073BA5D /* JLCustomerAlertController.m in Sources */,
- 71A003FF18D6BFB40057CDFD /* ChangePasswordViewController.m in Sources */,
- 42604122201C4B41002374A8 /* ShipingStatusCell.m in Sources */,
- 71CEE38A18CB749E00052C63 /* DetailPageViewController.m in Sources */,
- 719E7E3318C0368A003408FF /* ApexMobileDB.m in Sources */,
- 425CF096201EB2B500750E32 /* JLRefreshFooter.m in Sources */,
- 715643C12019B27500B04267 /* HomeViewController.m in Sources */,
- 420DEF2B20A1899600720524 /* AMCommContentCell.m in Sources */,
- 715643C72019BB6700B04267 /* StaticModelistViewController.m in Sources */,
- 7101BEC82031389A00CC6E3A /* DetailCellKVNew.m in Sources */,
- 71E0D1D82022AB7E009A08EB /* ResultViewController.m in Sources */,
- 42BFD2D2207B697800DA9038 /* KPICell.m in Sources */,
- 7157098E2021572600EFE5C5 /* NetworkUtils.m in Sources */,
- 420F0CA420901C2E005C4690 /* KPIRepeatTapGestureRecognizer.m in Sources */,
- 719EF8F118BB839F00EFFF5F /* AppDelegate.m in Sources */,
- 714C39B81922FEE1004F045B /* NewsDetailViewController.m in Sources */,
- 4225E43921E08A8C009D2364 /* ApexResultDocumentCell.m in Sources */,
- 425CF098201EB2B500750E32 /* JLRefreshBasis.m in Sources */,
- 715643CD2019BC6C00B04267 /* ToolslistViewController.m in Sources */,
- 3C2D99A5239B93C8007B759E /* AMViewController.m in Sources */,
- 712A301318CFEF550022E6E6 /* CustomizeFieldViewController.m in Sources */,
- 715709BD20215E0000EFE5C5 /* AESCrypt.m in Sources */,
- 716FF7921904ED2600ED6C3D /* NewsData.m in Sources */,
- 42DE626220A41907005FB582 /* AMTextField.m in Sources */,
- 71F67CF619063612004E8462 /* ApexHistoryViewController.m in Sources */,
- 7130B3F41900FB61000610D8 /* NewsViewController.m in Sources */,
- 711BA6C1191E0525002EDE6F /* MessageViewController.m in Sources */,
- 711BA6C4191E0553002EDE6F /* MessageItem.m in Sources */,
- 71BA50311908ED9100D0BD31 /* HistoryViewController.m in Sources */,
- 71A2D76218DC3895001C380A /* LineView.m in Sources */,
- 71B7999B2021B22D00F8685E /* AMResultViewController.m in Sources */,
- 425CF097201EB2B500750E32 /* JLRefreshHeader.m in Sources */,
- 42BCACCD209AE342009DDA43 /* AMMapAnnotaion.m in Sources */,
- 42FB6EC221F2BB6400F694AB /* ApexResultBookingCell.m in Sources */,
- 3C1DEC3D239F6C42006F7E2A /* MKMapView+ZoomLevel.m in Sources */,
- 711DC6B218C30A4800FB1749 /* TableCellEdit.m in Sources */,
- 716027D1204D334A003CA085 /* DetailShareItemProvider.m in Sources */,
- 4225E43021E088AA009D2364 /* ApexResultViewController+TableDataSource.m in Sources */,
- 420DEF3020A189AA00720524 /* AMCommEditCell.m in Sources */,
- 71A01D8218C9BA67003307A9 /* DetailContent.m in Sources */,
- 71A003FC18D680560057CDFD /* RetrievePasswordViewController.m in Sources */,
- 71FCDE0720492B5E00B0746B /* MyQLPreviewController.m in Sources */,
- 42FB6EC621F2BC5300F694AB /* ApexResultBookingModel.m in Sources */,
- 71F67CF919065EA8004E8462 /* SimpleMenu.m in Sources */,
- 719A51BA18C5AB7B0080C075 /* SimpleGridComponent.m in Sources */,
- 42C6754E21E2F1D4001E3FF4 /* ApexResultAdditionView.m in Sources */,
- 71570996202157A600EFE5C5 /* RAUtils.m in Sources */,
- 715643BB20198A9900B04267 /* RootViewController.m in Sources */,
- 4225E42D21E08895009D2364 /* ApexResultViewController+TableDelegate.m in Sources */,
- 426E8ABA202163EC0073BA5D /* JLPresentationController.m in Sources */,
- 71B7998D2021AE7400F8685E /* MDHTMLLabel.m in Sources */,
- 71E0D1D72022AB7E009A08EB /* FullyShowViewController.m in Sources */,
- 719EF8ED18BB839F00EFFF5F /* main.m in Sources */,
- 42FB6ECC21F2C0E300F694AB /* ApexResultBLInfoModel.m in Sources */,
- 717D76EB18C7F8120070302D /* Reachability.m in Sources */,
- 42FB6EBD21F2BAB800F694AB /* ApexResultBLInfoCell.m in Sources */,
- 715709A720215B5100EFE5C5 /* ioapi.c in Sources */,
- 4253900E2079B7C700ECF982 /* KPIPieChartCell.m in Sources */,
- 42BB740620846B4500B9B6E4 /* KPITableCell.m in Sources */,
- 715643CA2019BC4C00B04267 /* SearchlistViewController.m in Sources */,
- 7120DD0418BE273900E7546F /* LocationViewController.m in Sources */,
- 71308AFA191E7B2A0024B2B0 /* MessageDetailViewController.m in Sources */,
- 713AA7A1191736E600B44092 /* DocumentsViewController.m in Sources */,
- 716FF7951904FBC600ED6C3D /* NewsTableViewCell.m in Sources */,
- 715709AB20215B6200EFE5C5 /* ZipArchive.mm in Sources */,
- 42BCACCA209AE243009DDA43 /* AMAnnotationView.m in Sources */,
- 425CF09A201EB2B500750E32 /* UIView+JLExtension.m in Sources */,
- 42C6755221E32654001E3FF4 /* ApexResultViewController+QuickLook.m in Sources */,
- 71A01D7918C9AE77003307A9 /* DetailCellKV.m in Sources */,
- 42604127201C578B002374A8 /* ShipSearchController.m in Sources */,
- 713AA7A41917373600B44092 /* LocalDocumentsViewController.m in Sources */,
- 71DA604A190A02CE00683003 /* FavoritesViewController.m in Sources */,
- 71BA50341908EDCF00D0BD31 /* HistoryTabBarController.m in Sources */,
- 715709A820215B5100EFE5C5 /* mztools.c in Sources */,
- 719A51A918C5A5D30080C075 /* SimpleGridDataSource.m in Sources */,
- 718BE8B3190F9D970046EA6A /* MyAutocompletionCellFactory.m in Sources */,
- 425390232079B99B00ECF982 /* XYPieChartView.m in Sources */,
- 3C57169D23D186A30002E9FC /* WebViewController.m in Sources */,
- 71570999202157BD00EFE5C5 /* RANetworkTaskDelegate.m in Sources */,
- 71A565DF18C212EA00CDAC07 /* Constant.m in Sources */,
- 4225E43D21E08ACE009D2364 /* ApexResultContainerModel.m in Sources */,
- 718BE8B0190F9D970046EA6A /* MyAutocompleteView.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXSourcesBuildPhase section */
- /* Begin PBXVariantGroup section */
- 714C39C119234065004F045B /* Localizable.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 714C39C019234065004F045B /* Base */,
- );
- name = Localizable.strings;
- sourceTree = "<group>";
- };
- 719EF8E918BB839F00EFFF5F /* InfoPlist.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 719EF8EA18BB839F00EFFF5F /* en */,
- );
- name = InfoPlist.strings;
- sourceTree = "<group>";
- };
- 719EF90E18BB839F00EFFF5F /* InfoPlist.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 719EF90F18BB839F00EFFF5F /* en */,
- );
- name = InfoPlist.strings;
- sourceTree = "<group>";
- };
- /* End PBXVariantGroup section */
- /* Begin XCBuildConfiguration section */
- 719EF91318BB839F00EFFF5F /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- CODE_SIGN_IDENTITY = "iPhone Distribution: United Software Applications, Inc (HXWLAA5YN5)";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution: United Software Applications, Inc (HXWLAA5YN5)";
- COPY_PHASE_STRIP = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
- ONLY_ACTIVE_ARCH = YES;
- SDKROOT = iphoneos;
- TARGETED_DEVICE_FAMILY = 1;
- };
- name = Debug;
- };
- 719EF91418BB839F00EFFF5F /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- CODE_SIGN_IDENTITY = "iPhone Distribution: United Software Applications, Inc (HXWLAA5YN5)";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution: United Software Applications, Inc (HXWLAA5YN5)";
- COPY_PHASE_STRIP = YES;
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
- SDKROOT = iphoneos;
- TARGETED_DEVICE_FAMILY = 1;
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- 719EF91618BB839F00EFFF5F /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CODE_SIGN_ENTITLEMENTS = "Apex Mobile/Apex Mobile.entitlements";
- CODE_SIGN_IDENTITY = "iPhone Developer";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 200117;
- DEVELOPMENT_TEAM = "";
- ENABLE_BITCODE = YES;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)",
- );
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
- GCC_PREFIX_HEADER = "Apex Mobile/Apex Mobile-Prefix.pch";
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- HEADER_SEARCH_PATHS = "";
- INFOPLIST_FILE = "Apex Mobile/Apex Mobile-Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
- MARKETING_VERSION = 2.80;
- OTHER_LDFLAGS = "-ObjC";
- PRODUCT_BUNDLE_IDENTIFIER = "usai.apex.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = "$(TARGET_NAME)";
- PROVISIONING_PROFILE = "";
- "PROVISIONING_PROFILE[sdk=*]" = "";
- PROVISIONING_PROFILE_SPECIFIER = "";
- TARGETED_DEVICE_FAMILY = 1;
- USER_HEADER_SEARCH_PATHS = "";
- "VALID_ARCHS[sdk=*]" = "arm64 armv7 armv7s";
- WRAPPER_EXTENSION = app;
- };
- name = Debug;
- };
- 719EF91718BB839F00EFFF5F /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CODE_SIGN_ENTITLEMENTS = "Apex Mobile/Apex Mobile.entitlements";
- CODE_SIGN_IDENTITY = "iPhone Distribution";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 200117;
- DEVELOPMENT_TEAM = "";
- ENABLE_BITCODE = YES;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)",
- );
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
- GCC_PREFIX_HEADER = "Apex Mobile/Apex Mobile-Prefix.pch";
- HEADER_SEARCH_PATHS = "";
- INFOPLIST_FILE = "Apex Mobile/Apex Mobile-Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
- MARKETING_VERSION = 2.80;
- OTHER_LDFLAGS = "-ObjC";
- PRODUCT_BUNDLE_IDENTIFIER = "usai.apex.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = "$(TARGET_NAME)";
- PROVISIONING_PROFILE = "";
- PROVISIONING_PROFILE_SPECIFIER = "";
- TARGETED_DEVICE_FAMILY = 1;
- USER_HEADER_SEARCH_PATHS = "";
- WRAPPER_EXTENSION = app;
- };
- name = Release;
- };
- /* End XCBuildConfiguration section */
- /* Begin XCConfigurationList section */
- 719EF8D818BB839F00EFFF5F /* Build configuration list for PBXProject "Apex Mobile" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 719EF91318BB839F00EFFF5F /* Debug */,
- 719EF91418BB839F00EFFF5F /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 719EF91518BB839F00EFFF5F /* Build configuration list for PBXNativeTarget "Apex Mobile" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 719EF91618BB839F00EFFF5F /* Debug */,
- 719EF91718BB839F00EFFF5F /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- /* End XCConfigurationList section */
- };
- rootObject = 719EF8D518BB839F00EFFF5F /* Project object */;
- }
|