Commit c7e5758a7e8ead6c28c15ad792ac4f8d25df95dd
1 parent
48809c9395
Exists in
master
and in
1 other branch
fix bug build and crash app
Showing 7 changed files with 1533 additions and 142 deletions Side-by-side Diff
- LifeLog/LifeLog/ServerAPI.m
- LifeLog/Pods/Pods.xcodeproj/project.pbxproj
- LifeLog/Pods/Target Support Files/Pods-LifeLog/Pods-LifeLog-acknowledgements.markdown
- LifeLog/Pods/Target Support Files/Pods-LifeLog/Pods-LifeLog-acknowledgements.plist
- LifeLog/Pods/Target Support Files/Pods-LifeLog/Pods-LifeLog-frameworks.sh
- LifeLog/Pods/Target Support Files/Pods-LifeLog/Pods-LifeLog.debug.xcconfig
- LifeLog/Pods/Target Support Files/Pods-LifeLog/Pods-LifeLog.release.xcconfig
LifeLog/LifeLog/ServerAPI.m
| ... | ... | @@ -103,6 +103,9 @@ |
| 103 | 103 | } |
| 104 | 104 | else { // status = 0 error |
| 105 | 105 | NSString *message = dataResult[@"message"]; |
| 106 | + if (message == nil) { | |
| 107 | + message = @"Unknown error"; | |
| 108 | + } | |
| 106 | 109 | NSError *loginFaild = [NSError errorWithDomain:@"LifeLog_Domain" code:-1 userInfo:@{@"message":message}]; |
| 107 | 110 | completion(nil, nil, loginFaild); |
| 108 | 111 | } |
| ... | ... | @@ -158,6 +161,9 @@ |
| 158 | 161 | } |
| 159 | 162 | else { // status = 0 error |
| 160 | 163 | NSString *message = dataResult[@"message"]; |
| 164 | + if (message == nil) { | |
| 165 | + message = @"Unknown error"; | |
| 166 | + } | |
| 161 | 167 | NSError *loginFaild = [NSError errorWithDomain:@"LifeLog_Domain" code:-1 userInfo:@{@"message":message}]; |
| 162 | 168 | completion(nil, nil, loginFaild); |
| 163 | 169 | } |
| ... | ... | @@ -186,6 +192,9 @@ |
| 186 | 192 | } |
| 187 | 193 | else { // status = 0 error |
| 188 | 194 | NSString *message = dataResult[@"message"]; |
| 195 | + if (message == nil) { | |
| 196 | + message = @"Unknown error"; | |
| 197 | + } | |
| 189 | 198 | NSError *forgetPass = [NSError errorWithDomain:@"LifeLog_Domain" code:-1 userInfo:@{@"message":message}]; |
| 190 | 199 | completion(forgetPass); |
| 191 | 200 | } |
| ... | ... | @@ -293,6 +302,9 @@ |
| 293 | 302 | } |
| 294 | 303 | else { |
| 295 | 304 | NSString *message = dataResult[@"message"]; |
| 305 | + if (message == nil) { | |
| 306 | + message = @"Unknown error"; | |
| 307 | + } | |
| 296 | 308 | NSError *errorObject = [NSError errorWithDomain:@"LifeLog_Domain" code:-1 userInfo:@{@"message":message}]; |
| 297 | 309 | completion(nil, errorObject); |
| 298 | 310 | } |
| ... | ... | @@ -324,6 +336,9 @@ |
| 324 | 336 | } |
| 325 | 337 | else { |
| 326 | 338 | NSString *message = dataResult[@"message"]; |
| 339 | + if (message == nil) { | |
| 340 | + message = @"Unknown error"; | |
| 341 | + } | |
| 327 | 342 | NSError *errorObject = [NSError errorWithDomain:@"LifeLog_Domain" code:-1 userInfo:@{@"message":message}]; |
| 328 | 343 | completion(nil, errorObject); |
| 329 | 344 | } |
| ... | ... | @@ -366,6 +381,9 @@ |
| 366 | 381 | } |
| 367 | 382 | else { |
| 368 | 383 | NSString *message = dataResult[@"message"]; |
| 384 | + if (message == nil) { | |
| 385 | + message = @"Unknown error"; | |
| 386 | + } | |
| 369 | 387 | NSError *errorObject = [NSError errorWithDomain:@"LifeLog_Domain" code:-1 userInfo:@{@"message":message}]; |
| 370 | 388 | completion(nil, errorObject); |
| 371 | 389 | } |
LifeLog/Pods/Pods.xcodeproj/project.pbxproj
Changes suppressed. Click to show
| ... | ... | @@ -7,88 +7,414 @@ |
| 7 | 7 | objects = { |
| 8 | 8 | |
| 9 | 9 | /* Begin PBXBuildFile section */ |
| 10 | - 0968524ED4DE8DF7834055C5B6089D72 /* MBProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C00BC2034DD6F61EF20C563BA04E4C1 /* MBProgressHUD-dummy.m */; }; | |
| 10 | + 017EF095D67EE8F854EDAD4A2B2790D2 /* YAxisRendererHorizontalBarChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08CECCD43F23EFAA8ED444D6A5884B18 /* YAxisRendererHorizontalBarChart.swift */; }; | |
| 11 | + 0308D89A9F819E4AF4545F72A609D272 /* ChartColorTemplates.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C60139459C1F76B62E67DBACE859F9D /* ChartColorTemplates.swift */; }; | |
| 12 | + 05869F3C3509AAA9A31C7A4F982E45B5 /* IValueFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCF14CE30FE9F54B950D6D9D3A9F4F82 /* IValueFormatter.swift */; }; | |
| 13 | + 0685520A676FF3BE32BAEA4C5C878CB9 /* MarkerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3579A1D3FDFE3E233E703BDAE59B9B8E /* MarkerView.swift */; }; | |
| 14 | + 0968524ED4DE8DF7834055C5B6089D72 /* MBProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF4C9DA15123751574625FD80936778A /* MBProgressHUD-dummy.m */; }; | |
| 15 | + 0A84B463BABCA1CD5CE63CD3252F323F /* LineScatterCandleRadarChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1B5D51B39793079DC3EB31F1DC8766B /* LineScatterCandleRadarChartDataSet.swift */; }; | |
| 16 | + 0F8D46B68AC42BADE9D9B28C546F769E /* LegendRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C404EACF02EF248D9774E114A895342 /* LegendRenderer.swift */; }; | |
| 17 | + 0F91DA4887ED7547B48D7E6B13EC3215 /* ChevronUpShapeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F81132DA4C74EC5799DCB2F9F21402E6 /* ChevronUpShapeRenderer.swift */; }; | |
| 18 | + 0FD11274BC7D17C1FDEABC3A3F82C575 /* ChartDataEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCBDFD4D780B2712967C2F3FC2EB7B12 /* ChartDataEntry.swift */; }; | |
| 19 | + 10EC0E53ABF22A801F5F3B2CA5D56C27 /* ScatterChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56554648DCA16EB067D39A2FCC30D478 /* ScatterChartView.swift */; }; | |
| 11 | 20 | 1215629D558162CE728B27386DA02D1D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6647ACC906E3FCEEFF3813BB32B1FCF6 /* Foundation.framework */; }; |
| 12 | - 14A0B914C8A7F8EEE1317349A990C581 /* CircleProgressBar.h in Headers */ = {isa = PBXBuildFile; fileRef = EFA750912F601AEA781316E22E962BDC /* CircleProgressBar.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 13 | - 1592E7C3059060DAA3A6D976250E7FD9 /* CircleProgressBar-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 68F1CC874FC7F656AD0DC9F2B768808F /* CircleProgressBar-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 21 | + 1376ED88D6AFC3A079AE214302568AD2 /* PieChartRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = D59637356C6D55AC41CF26FAE2442E98 /* PieChartRenderer.swift */; }; | |
| 22 | + 14A0B914C8A7F8EEE1317349A990C581 /* CircleProgressBar.h in Headers */ = {isa = PBXBuildFile; fileRef = 22D055D917398309E3DB5C2E37A359CB /* CircleProgressBar.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 23 | + 152409899B88199697082E9D3104502C /* HorizontalBarHighlighter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AADFC1449A615369B80496672196F00 /* HorizontalBarHighlighter.swift */; }; | |
| 24 | + 1592E7C3059060DAA3A6D976250E7FD9 /* CircleProgressBar-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D5ED235F2C7D016BC867641EB893AE0 /* CircleProgressBar-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 25 | + 15C2B48224260E50C912E9A5B3C95E5D /* LineChartRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BEFF4AEF432AD6FB924AEDAB34DC1C3 /* LineChartRenderer.swift */; }; | |
| 26 | + 16B57D23AA767CA20ABF5C59633E5476 /* IndexAxisValueFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5769E959789D8BF8ED81CC851A5895E /* IndexAxisValueFormatter.swift */; }; | |
| 14 | 27 | 171B76B1870F4F2D54B33EFA1BE6FDA6 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EC1FD743D031D373EDF29CC526F758E2 /* UIKit.framework */; }; |
| 15 | - 28A794912ED1E06B05D96DF5ED0AED19 /* MBProgressHUD-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D6958406969C746A2264CC8D6BEB6737 /* MBProgressHUD-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 16 | - 2FB418A613B03A588C8D3DF12F348D8E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6647ACC906E3FCEEFF3813BB32B1FCF6 /* Foundation.framework */; }; | |
| 17 | - 752082F0CF2210B595EA2F4452AE572E /* Pods-LifeLog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B2AF4B58C683DE3E9F46928ED66EE9ED /* Pods-LifeLog-dummy.m */; }; | |
| 18 | - 7FA1FDC003B51BD9EEDAE2E3D55382E3 /* CircleProgressBar-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 68B49BE33D100B749C511DE8B402F376 /* CircleProgressBar-dummy.m */; }; | |
| 19 | - 80C57AC821F5A19CDEB99A4A4AADDD50 /* Pods-LifeLog-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 85237E86ECAFF9C2A40892965ED10B39 /* Pods-LifeLog-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 20 | - 897C38C8E3C31950E2E93A4D6937CCC4 /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AFA7A8FC16E3D4607F9C877E05CCE23 /* MBProgressHUD.m */; }; | |
| 28 | + 1C9AE10135E055E452BFF7FADE326B66 /* MoveViewJob.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4892B467149A123F63E889F86C45615C /* MoveViewJob.swift */; }; | |
| 29 | + 1D440BC2043125E55794E26A1A8234D8 /* ScatterChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = C36B236229A50387413F2BBD2132BB95 /* ScatterChartDataSet.swift */; }; | |
| 30 | + 1EFBC782C85B8CE3A6C3C7450904EE90 /* YAxisRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = E850D610BC5B70AC3FAA3907CAE4E41E /* YAxisRenderer.swift */; }; | |
| 31 | + 225935644059A3B1C8C9D7B90ADA8605 /* ChartData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BCAF3980E60AE817E0B49A364F80398 /* ChartData.swift */; }; | |
| 32 | + 240EEC1DCCF3B9666D8BD9FDEE5F178C /* ChartViewBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4AE8FA11DE04247465206BC009DE1C4 /* ChartViewBase.swift */; }; | |
| 33 | + 28438DF21EB25EFF8B1EED10BF877A12 /* LKLineActivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 63B742192A1ECCB84366E712560DD257 /* LKLineActivity.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 34 | + 2890120A33D4CECF4E1B0B534BE6ABBE /* CombinedChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF7BF3542661B1A621CD5BE47A2D991B /* CombinedChartView.swift */; }; | |
| 35 | + 2894BA9E825FB925037AB93ACD54EB4A /* ComponentBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C3FA84A837E9A40C34656D17B959D4D /* ComponentBase.swift */; }; | |
| 36 | + 28A794912ED1E06B05D96DF5ED0AED19 /* MBProgressHUD-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 07373A0A03BE49CEBD0B777C7E18B265 /* MBProgressHUD-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 37 | + 292A160D7A9EED2F660D1B084CA703D8 /* ScatterChartData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B29DD85D54DEC0CF2C829C961EAB07B /* ScatterChartData.swift */; }; | |
| 38 | + 2BBC1C57E014127C8A14791A000B224A /* ChartUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E496F68558C7B89BDA61855AE5F4B5D /* ChartUtils.swift */; }; | |
| 39 | + 2D53683F3CD3086FDE356172B0735EA7 /* CombinedChartData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CA00FECC8F16803BB0449D97B17BCCB /* CombinedChartData.swift */; }; | |
| 40 | + 2E4D314618B62AF4880C3721C15F5DC9 /* Description.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29D75DC83503F358C12A28F2C312371A /* Description.swift */; }; | |
| 41 | + 3259DDAE8F5E0D04F47EF71789C6BFFB /* LKActivity-Flat.png in Resources */ = {isa = PBXBuildFile; fileRef = C3DBD3FD9B924E23A728E52C4C6D67C6 /* LKActivity-Flat.png */; }; | |
| 42 | + 32622A2CCDE4E4E8B05460074E977F97 /* LKActivity.png in Resources */ = {isa = PBXBuildFile; fileRef = 0EDA4414840EDA4249483BAF87FE5038 /* LKActivity.png */; }; | |
| 43 | + 36C08E206E73AFDD893ED1AFC2825303 /* Line.m in Sources */ = {isa = PBXBuildFile; fileRef = 72C93DAFA406DB5336BB38F23D121D70 /* Line.m */; }; | |
| 44 | + 3892407590F7B7AAAA487B421A0869F4 /* RadarChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D2E154F5158B24BD70B290F51ABBBF1 /* RadarChartView.swift */; }; | |
| 45 | + 3B67CCA0C785525BE0189A952AC7560A /* LineRadarChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F64CAA4005D69EB3A9AD29B61EC756F /* LineRadarChartDataSet.swift */; }; | |
| 46 | + 3BBB1AF62BFE74A4F2F260478D4D616A /* PieChartDataEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 631152A3AC05ADDF86DCB783EEA2A58E /* PieChartDataEntry.swift */; }; | |
| 47 | + 3EC8B035577209DA9C154B36BD18B178 /* ScatterChartRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 103E7280D398CCD64D1E8B63B6A01437 /* ScatterChartRenderer.swift */; }; | |
| 48 | + 41FAFAF7BA778E14F5AADB3C5C7DF187 /* IChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DC3109C246BB2161FE52F39743F8673 /* IChartDataSet.swift */; }; | |
| 49 | + 43FEF964BBBC805BBAF174F695EDA1E6 /* RadarHighlighter.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3F77ED20A9F4FFF2DF431C4BDEB7641 /* RadarHighlighter.swift */; }; | |
| 50 | + 4401262D20D50B54F8209056C7A859A8 /* PieRadarHighlighter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7693413328F48BC34C775D4E463F2B68 /* PieRadarHighlighter.swift */; }; | |
| 51 | + 47838AB3924CE7AD854428FC6D3A4377 /* LKLineActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E162D50D5E0D6BD6F21B143ADC6F7F9 /* LKLineActivity.m */; }; | |
| 52 | + 485B17677950925066FE142ACC32C316 /* LineScatterCandleRadarRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD87C0C5CF816F7581DA1F94AC5F3E8B /* LineScatterCandleRadarRenderer.swift */; }; | |
| 53 | + 487371F421F531EC701AEC323671FDA0 /* IHighlighter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1678D27DC1D07AD9AC5B8E2489263A8A /* IHighlighter.swift */; }; | |
| 54 | + 4A3C0B2ACD6C6CCEBA7C1FAFD3308183 /* DataApproximator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 772C880C2127A27D5A74A32498B69703 /* DataApproximator.swift */; }; | |
| 55 | + 4B5938B71AD750B48DE9DEB1BCC9AC42 /* DefaultAxisValueFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 211826E07CE236C0EEE19A6A018C47DC /* DefaultAxisValueFormatter.swift */; }; | |
| 56 | + 4CF2A0E7171FE89E4B29BC55F87EC9B8 /* PieChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA85D8983451FAFD14CBF70D3B5122BE /* PieChartView.swift */; }; | |
| 57 | + 4DC9F0977D768E416E6EEF908C33905E /* LineRadarRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18B064857F0CCFFD7949C95A36DF2D35 /* LineRadarRenderer.swift */; }; | |
| 58 | + 4FCDBB71B71218B1B8EE635705165D02 /* CandleChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18E257507DA03EEDE4D83DA5F7E91188 /* CandleChartDataSet.swift */; }; | |
| 59 | + 50BD4523387CD01AE38F360EF58E9F8B /* Fill.swift in Sources */ = {isa = PBXBuildFile; fileRef = 037B5CC99D6EB83EAD59D63BBBB4907A /* Fill.swift */; }; | |
| 60 | + 50E49AE1A7ACC6EF8BC802CC79207D27 /* CandleStickChartRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = D501D918454388E269E7559BBE1F52D0 /* CandleStickChartRenderer.swift */; }; | |
| 61 | + 52C792EA22138EC85BAEFAB3B620C108 /* ILineRadarChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 068068F826089EE778AF7E22AA705EBA /* ILineRadarChartDataSet.swift */; }; | |
| 62 | + 535C677E373564D237FDC4F30ED9A595 /* PieChartData.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAD605F0FC96B5107247569FB61D3B00 /* PieChartData.swift */; }; | |
| 63 | + 60DB744CD51A579EF11E3A392E4CF9A2 /* CrossShapeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA6BFBD1BAA5E0CC144C41681F21346F /* CrossShapeRenderer.swift */; }; | |
| 64 | + 61A6FA55DEBB35A5E1B85F590CE5635D /* TriangleShapeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = E769211E112E2E14E08FE7181A475B66 /* TriangleShapeRenderer.swift */; }; | |
| 65 | + 625CF48195B088519F8CB4DCDDCF2AEA /* CandleChartData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 984AA93D30A87DE36EA40314E0EDD58B /* CandleChartData.swift */; }; | |
| 66 | + 6508389020FF1A5E4A7C8EAA8805DF57 /* IPieChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88D634F67111DFD9CB17017F403CA12E /* IPieChartDataSet.swift */; }; | |
| 67 | + 65DB259F9962760A7EF8B1A3711B1C22 /* XAxis.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE2D1DFB3127DBBA299377DADD352E5E /* XAxis.swift */; }; | |
| 68 | + 66C356E31E0E6A047F2E9C3E4E3C06A4 /* RadarChartRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 609D591873E9EE2CD7AC964670FD35A7 /* RadarChartRenderer.swift */; }; | |
| 69 | + 681CA2A9C4CD6901C3EBD9789E9A833B /* CircleShapeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9771830528610BA12712DA35EB1908F4 /* CircleShapeRenderer.swift */; }; | |
| 70 | + 6DA9F3609BC3BDA3D7B4A39416E5B5A5 /* DefaultValueFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01017D5FF6B73CE3663C22347F961713 /* DefaultValueFormatter.swift */; }; | |
| 71 | + 70248508816421AF31051CF7C71F0390 /* Animator.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFE6AE606302DCBD14F09F929A96E4E7 /* Animator.swift */; }; | |
| 72 | + 7113B3CE631C90090EA54CF71B111895 /* ChevronDownShapeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C6E1D30FE65DCF1446854AB8D66E633 /* ChevronDownShapeRenderer.swift */; }; | |
| 73 | + 744C4446AA0E6790628BD9FF968F9500 /* IShapeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F2BD1FB0A4FC666789A1934825A76F2 /* IShapeRenderer.swift */; }; | |
| 74 | + 75488967677E053D77B885D041398A75 /* RadarChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24961C1E7CD3F7D8CA8D9BD0BE74A999 /* RadarChartDataSet.swift */; }; | |
| 75 | + 756A38A103A56661B784ECE8DD4D9917 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6647ACC906E3FCEEFF3813BB32B1FCF6 /* Foundation.framework */; }; | |
| 76 | + 759CC612E45B482B55C25BE748C12DD1 /* XAxisRendererHorizontalBarChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D668A7B02D2F15230E7E3F63693A3B4 /* XAxisRendererHorizontalBarChart.swift */; }; | |
| 77 | + 7D2208C2B879BD873863CD22DFC6E172 /* BarChartDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AC68728E4B7BFC906DC3E801CC36EA8 /* BarChartDataProvider.swift */; }; | |
| 78 | + 7FA1FDC003B51BD9EEDAE2E3D55382E3 /* CircleProgressBar-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E2ECB8ACDA8676B2A2589EE822F67A2 /* CircleProgressBar-dummy.m */; }; | |
| 79 | + 7FF97883726D2908807C32935E3C923A /* ICandleChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71AD2933E7C37BB550FC8D4DFCEB4C9A /* ICandleChartDataSet.swift */; }; | |
| 80 | + 849558EFC1018B7D72D811DDA842E729 /* BubbleChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4491A48F5F89A0D35FC248873EB63DC /* BubbleChartDataSet.swift */; }; | |
| 81 | + 8596B0D57A225C08B02A51A1F075346B /* LineChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA09EEC400F9DF1211E1AFFF9A42107C /* LineChartDataSet.swift */; }; | |
| 82 | + 85A72C8A2C4EEBDA5D6CE6D3168DE08F /* AnimatedMoveViewJob.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCB395117BC4B89A3AA24F87EBDFE70C /* AnimatedMoveViewJob.swift */; }; | |
| 83 | + 862D29F55CF49D9802AF7D6D54B0A7C5 /* PieRadarChartViewBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C6EBF130BE787A55DAB8A0D526E8863 /* PieRadarChartViewBase.swift */; }; | |
| 84 | + 896B876D1705BB9F7426C6E63AD6C83C /* BarLineChartViewBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = A454EF9CBDD60EB91CBD2CEAECFA0F7B /* BarLineChartViewBase.swift */; }; | |
| 85 | + 897C38C8E3C31950E2E93A4D6937CCC4 /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = CE6CC32DC752056F188911CF9124C17C /* MBProgressHUD.m */; }; | |
| 86 | + 8A856203C71F9AECD25D2B5B66FE0E6D /* Platform.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE8108234609A1BAC4C019035DDD11BD /* Platform.swift */; }; | |
| 87 | + 8A8D1FD7C407985D4CF5FC926A79C167 /* DefaultFillFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FF024CF8647BE786BE6F5C55B90A35F /* DefaultFillFormatter.swift */; }; | |
| 88 | + 8B05083CA44803381B6B7D22F0F76155 /* HorizontalBarChartRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63557AC02A1999EF32A3C87E9314EF8A /* HorizontalBarChartRenderer.swift */; }; | |
| 89 | + 8EB02CA4DBBB1C27C55389D38AD6D5BE /* ChartDataRendererBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = B031B6800B29F0FE9D64CAACDDA23A66 /* ChartDataRendererBase.swift */; }; | |
| 90 | + 8FA9EE6D096BADB9F4C746836EBFE422 /* IBubbleChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6E89C3C1530CCAF9555738FDBEF5F88 /* IBubbleChartDataSet.swift */; }; | |
| 91 | + 9019F5736B4E5F004C0B4A631CD757C1 /* PieHighlighter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05837CDE0DDFCE8E9FDBA9F08309B8D6 /* PieHighlighter.swift */; }; | |
| 92 | + 926D18D0A6D781E5BD52333B3FE20073 /* ChartBaseDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8DC307FABE143E3A355E012D950B4B8 /* ChartBaseDataSet.swift */; }; | |
| 93 | + 92B262492E42C63A689A12296DDAFBDC /* ChartDataEntryBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 460D29608E2AED2948A6B6A4AFDF23AE /* ChartDataEntryBase.swift */; }; | |
| 94 | + 93CBFD940BD0B22071BCD795A8A6D2BC /* Charts-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EFD8B8E74CE67C3008D2047ADD06A8B6 /* Charts-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 95 | + 9593B5D179FF2FC4A2FA600E8EE0EAAD /* BarChartDataEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = A059798E15A8382A331B8E78506F9C6D /* BarChartDataEntry.swift */; }; | |
| 96 | + 96BC44579F7EB194DA8FD6F048E2E13F /* PieChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D071C3CC87D3FC3D3935559DDC12527 /* PieChartDataSet.swift */; }; | |
| 97 | + 97D257CBD4850547F29311634F41F16E /* RadarChartDataEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = B07524E3D056564932D0EB587F4D4E06 /* RadarChartDataEntry.swift */; }; | |
| 21 | 98 | 98DF470CA8F6DD132AFAC1398FCD579C /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0D8EF2301073B01E30612B5B1BD94446 /* CoreGraphics.framework */; }; |
| 22 | - A5BF8DBDD8660DBCFE712657F3D82BDA /* MBProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = AAFE6F6155EAEE8A3EA3210B0456B2F2 /* MBProgressHUD.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 23 | - B25457593E6ED0BA173BCD5D7D90C6E4 /* CircleProgressBar.m in Sources */ = {isa = PBXBuildFile; fileRef = BAD6532F2EC3E15AB82D51D8C4CD9BEA /* CircleProgressBar.m */; }; | |
| 99 | + 9AB9F5D8476D67016826F14C9634C250 /* BarLineScatterCandleBubbleChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35F17C087D5005B417F573CCD6C2C4D3 /* BarLineScatterCandleBubbleChartDataSet.swift */; }; | |
| 100 | + 9BE579BC1329AB24C5A0BA3C958DD8AE /* YAxisRendererRadarChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF70D47560A5566290A9EB65DB1FB7A5 /* YAxisRendererRadarChart.swift */; }; | |
| 101 | + 9C17A317408B659BB7812ABA93EF1BEC /* ILineChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9472D91AF9C96856C69961D14EAF225F /* ILineChartDataSet.swift */; }; | |
| 102 | + 9C7ED9BE47CAEF8AE677BD871C15444F /* CandleChartDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2AF061F3785599E3D981EC803F8E5BB /* CandleChartDataProvider.swift */; }; | |
| 103 | + 9D27ECBB6AA75151496AFE06D128DDA3 /* CandleStickChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03F2F59C625A13276BAE64547A24311F /* CandleStickChartView.swift */; }; | |
| 104 | + A13B63777A43FD17075A5A9849195FBC /* IAxisValueFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = B23EB0ACBE7B23BA000DDCA762FC1505 /* IAxisValueFormatter.swift */; }; | |
| 105 | + A171ACCD52BE4FFFDBB4510B61DFDB71 /* BubbleChartRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE4C3BE4A69562517B3CBB48D1A0B4B9 /* BubbleChartRenderer.swift */; }; | |
| 106 | + A42DE12EDF8AE3D3F79986F91DC07524 /* Pods-LifeLog-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 85237E86ECAFF9C2A40892965ED10B39 /* Pods-LifeLog-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 107 | + A44E91C6C5B9629276F811A20B87A8E4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6647ACC906E3FCEEFF3813BB32B1FCF6 /* Foundation.framework */; }; | |
| 108 | + A5BF8DBDD8660DBCFE712657F3D82BDA /* MBProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED114EEB1EF08FE7676577CD662A536 /* MBProgressHUD.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 109 | + A5EAB9B530B4916A475BE136760CBDDB /* HorizontalBarChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D52478E65FBE401FA59EFD53D56EF958 /* HorizontalBarChartView.swift */; }; | |
| 110 | + A8011934F1A86A9DB1DFAA32F1FE1D7B /* CombinedChartDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23EBDDD6BE32C00C28D9D22D4A6DF0E7 /* CombinedChartDataProvider.swift */; }; | |
| 111 | + AA25E687CED8BB330E3D8774E5B6D3B5 /* LineKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DBD0E4CE822007D43FD2E2142078329C /* LineKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 112 | + AB0B62B987A9E7917662AAEA29068B97 /* ZoomViewJob.swift in Sources */ = {isa = PBXBuildFile; fileRef = 838B7679E7C44BFB95E6912CA1C4D4E9 /* ZoomViewJob.swift */; }; | |
| 113 | + AB861DDB86AFA1932391B4E1D74BDD47 /* BarLineScatterCandleBubbleChartDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACD64D33CBE6A13282E13844BEF21CC6 /* BarLineScatterCandleBubbleChartDataProvider.swift */; }; | |
| 114 | + ABDAD9AC95A71ABB85A0159A06F2B070 /* BarChartData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0487414B5EAA55CB5F0ACE42DC24B0AF /* BarChartData.swift */; }; | |
| 115 | + ABF27C93ACB38E5B946C91BAB1F4A4A2 /* RadarChartData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2281F9BC4E494CBB5E06B23BF1443BEF /* RadarChartData.swift */; }; | |
| 116 | + AD8C85BF427C2E633E28F8863C5435C4 /* MarkerImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B1EB5A51817DD6B026BE9D2303A351C /* MarkerImage.swift */; }; | |
| 117 | + AE5CE8378B3C1C5BDF33BE0E44C91FEB /* ScatterChartDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EB1BBB340F3AD92D74098D33A2B769C /* ScatterChartDataProvider.swift */; }; | |
| 118 | + AF3146F9CB65E3027D15B89B3A14C13A /* IFillFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0EDCE68220B169A9111964189DCC22B2 /* IFillFormatter.swift */; }; | |
| 119 | + B104AE9D522AC75080ADA7A49DF5C1CA /* XShapeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5919DCC1541DC8BED1E0048518A8F39 /* XShapeRenderer.swift */; }; | |
| 120 | + B25457593E6ED0BA173BCD5D7D90C6E4 /* CircleProgressBar.m in Sources */ = {isa = PBXBuildFile; fileRef = E639E47E882F9DFF7542B2E9C2323463 /* CircleProgressBar.m */; }; | |
| 121 | + B4CA1C1703826B8F5E3B425FA4736244 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6647ACC906E3FCEEFF3813BB32B1FCF6 /* Foundation.framework */; }; | |
| 122 | + B6DB9F4AA72BCBBBF9F2B868C889A116 /* AxisBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC0773EE17DAE6435E376FA6AB6C2D24 /* AxisBase.swift */; }; | |
| 123 | + B78A6384804BA5B98FCB191181F1F24D /* YAxis.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99908D74E7AFC86B09D22C7F9D507F42 /* YAxis.swift */; }; | |
| 124 | + BA7012B489EF41BBF6B72EF7F75EA0F2 /* LineChartData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F98D41A453753EC9E527D1DDE72DD20D /* LineChartData.swift */; }; | |
| 125 | + BB4E6B52B7B4490D156749A779FA2957 /* SquareShapeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75D2FD5059E2AE03523F87BC54185DCF /* SquareShapeRenderer.swift */; }; | |
| 126 | + BB8431E4B4DC74376ABC8DF5F9863E49 /* CombinedChartRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03724ECF4AFD64E69BDD47A5C77991DD /* CombinedChartRenderer.swift */; }; | |
| 127 | + BCD095A51B90EF3D3E42CAEB910821C6 /* AnimatedViewPortJob.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9084A8AC05F334CE969D569216317AE0 /* AnimatedViewPortJob.swift */; }; | |
| 128 | + BD7DE3DAB3F143AA73297D6025D080AB /* IBarLineScatterCandleBubbleChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 028EE0EE20C21024CC4F98F78927B510 /* IBarLineScatterCandleBubbleChartDataSet.swift */; }; | |
| 129 | + BEB394ED883E7A5A8C2918C910CB7521 /* Legend.swift in Sources */ = {isa = PBXBuildFile; fileRef = C91810E33C294D95F285D061229213E2 /* Legend.swift */; }; | |
| 130 | + C127C7423C507E88446D44D7E8C5359F /* ChartDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = B97537BB6AD380FFC28C0B42D5F76280 /* ChartDataProvider.swift */; }; | |
| 131 | + C231DC3CD5B2A8CD0036E986271F2F5B /* CandleChartDataEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A8B3451F861D228B74B3C3B1A614B69 /* CandleChartDataEntry.swift */; }; | |
| 132 | + C30159BFCA02E93ADC045DF753CD2105 /* BarLineScatterCandleBubbleRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2781702D2E9770D6415541AF2EE6DCB7 /* BarLineScatterCandleBubbleRenderer.swift */; }; | |
| 133 | + C46D7FC074044E7BBFE9BFC32005BACF /* ChartHighlighter.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6F1969180E83B3865A2521FB109D1D4 /* ChartHighlighter.swift */; }; | |
| 24 | 134 | C7994DD63644F6D6E74CFC4D3C02CFB0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6647ACC906E3FCEEFF3813BB32B1FCF6 /* Foundation.framework */; }; |
| 135 | + C7E3F0B8CF661D0BEA763F1F4B012192 /* TransformerHorizontalBarChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14EADE49B301DF292FA0135764A0C7D6 /* TransformerHorizontalBarChart.swift */; }; | |
| 136 | + CB86019144A24E76AABAE1A313EA6D17 /* ChartAnimationEasing.swift in Sources */ = {isa = PBXBuildFile; fileRef = E04A0841992EFFC1F90733599178A9ED /* ChartAnimationEasing.swift */; }; | |
| 137 | + CC23CE88E3ABA48820EEF357CB742F3F /* LineChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 726D07FB37349EE479079B8F19E86F7E /* LineChartView.swift */; }; | |
| 138 | + CD0C5625BFF0CE003EC1FD57F5097AFF /* Pods-LifeLog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B2AF4B58C683DE3E9F46928ED66EE9ED /* Pods-LifeLog-dummy.m */; }; | |
| 139 | + CDEC4F96128F02EC674D95A706126879 /* BubbleChartDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85BDC24E567BEFDEB5FEBEB3927DA923 /* BubbleChartDataProvider.swift */; }; | |
| 140 | + CEDE30D9A913F0C3957A5A4F1C9B87FC /* IScatterChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C53C59321C46A8BDF25CDA43E65139B /* IScatterChartDataSet.swift */; }; | |
| 141 | + CF048E20A1921C02350A25A8CE8B0BFB /* ViewPortHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DD5CBA027E4A0356CCDB4896140C538 /* ViewPortHandler.swift */; }; | |
| 142 | + D0849BC86840E3A309CA9F87853D3A70 /* BubbleChartData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27A7B40D01BF86B2EBA60FE446F228EB /* BubbleChartData.swift */; }; | |
| 143 | + D1EEDC454318B90DF160E9F3838FE4CE /* AnimatedZoomViewJob.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE5F1744FA1B59B696D973368017A922 /* AnimatedZoomViewJob.swift */; }; | |
| 144 | + D3C7175CCC0F288A68C2EEB5791D1A9C /* Line.h in Headers */ = {isa = PBXBuildFile; fileRef = E28E127C2A64FB61CF51342E83998F53 /* Line.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 145 | + D63D2794ED1AD1FF474D5AD584DCC6EC /* ChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D6F3AB3CC8C6C6BDC568E5D46AAD2A5 /* ChartDataSet.swift */; }; | |
| 146 | + D6749B54AB7521F1C10569772DFB7FC2 /* LKActivity-Flat@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EA2DB3BF15947AFA286A65DB39D87E4E /* LKActivity-Flat@2x.png */; }; | |
| 25 | 147 | DA3FBCF3B21EB18151C3BC2645107E0D /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 51498E299B7CB17BCC8B54F93C150FAA /* QuartzCore.framework */; }; |
| 148 | + DB33AED9998B1903B316A64670148A2A /* LegendEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2ECFA96844FE01E5FD00EEE5C20B17A /* LegendEntry.swift */; }; | |
| 149 | + DBBD3F32DD1F5C2EA7CAEE4C58275BE7 /* LineKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B8D213B04E2C455AA26D9481CD9E2BE /* LineKit-dummy.m */; }; | |
| 150 | + E044F846F0071F36BB8A98EE70C51A7C /* ViewPortJob.swift in Sources */ = {isa = PBXBuildFile; fileRef = 932F9064FAF043930F29947EC1275EA2 /* ViewPortJob.swift */; }; | |
| 151 | + E48DDEE9635DA42901E2C27705AE610E /* IBarChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9F69CE3711E81B7C911C71B6EF84960 /* IBarChartDataSet.swift */; }; | |
| 152 | + E85CB8AC64D9EA571C5D98A8391AD703 /* XAxisRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D511CF669BABFD596964157E6FAF313 /* XAxisRenderer.swift */; }; | |
| 153 | + E98E03457C835857DD5225E868683257 /* Renderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A66676172B408ADE052AC8DB16C1805 /* Renderer.swift */; }; | |
| 154 | + EAA818F8D74B798F159E7D77D2E2817E /* XAxisRendererRadarChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = B17C205FBE72007883A10512524ADF6B /* XAxisRendererRadarChart.swift */; }; | |
| 155 | + EAE2DF0ADCEA869F73310294CC256CD0 /* BarChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F463A32205B2C25B6F4531F2DEA8C2A5 /* BarChartView.swift */; }; | |
| 156 | + EAF8D36AA8603ACA0399883220AAC1BB /* ILineScatterCandleRadarChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 594355A261FA3AEE4007B8B6FB04D297 /* ILineScatterCandleRadarChartDataSet.swift */; }; | |
| 157 | + EC7B2502D307E08CAACF80F86EB94B46 /* Transformer.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7218E8D3EAE5BEC73728E73EAAEFDF6 /* Transformer.swift */; }; | |
| 158 | + EDDE00478DBB95CFAE0313CE5639B01D /* Highlight.swift in Sources */ = {isa = PBXBuildFile; fileRef = D86C3BA16D558440D375620471259F07 /* Highlight.swift */; }; | |
| 159 | + EEFC93F000EA56262106801E61A1919E /* BarLineScatterCandleBubbleChartData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 421F29E69D781379A64950627F1AA742 /* BarLineScatterCandleBubbleChartData.swift */; }; | |
| 160 | + EF9AD1412E6FABB78D64E421A5454B0D /* CombinedHighlighter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 730B7492EC158F624F1705BBCCCE95DA /* CombinedHighlighter.swift */; }; | |
| 161 | + F06D79CEC2584B0B69E2146182CBC8BB /* IMarker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C8078DA068327EB483911185FF7F104 /* IMarker.swift */; }; | |
| 162 | + F098F6603287E1CB29D5584E85738379 /* IRadarChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9930CA4DC22DBAB090DCEE66565D0625 /* IRadarChartDataSet.swift */; }; | |
| 163 | + F512C65E075972476EFAAF2E88F1B4A9 /* LineChartDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36C8C9B6F8AB13566FADD5291473CC83 /* LineChartDataProvider.swift */; }; | |
| 164 | + F580AE5D5960BE7E37A01263DFC1E05D /* ChartLimitLine.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE50630544C8F686BF1F740BCE34BE31 /* ChartLimitLine.swift */; }; | |
| 165 | + F5B3C687CE75F3A1D61739D494D86350 /* BubbleChartDataEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8A08F4D7623BED119851860EED2FEB8 /* BubbleChartDataEntry.swift */; }; | |
| 166 | + F8E10D689E438384F5F3645B4C18BD34 /* LKActivity@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F47B198C41B502F940525FA47C6B9C7C /* LKActivity@2x.png */; }; | |
| 167 | + F9024E63DBB0A0CABECFE0E3A2DC5CEB /* BubbleChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B213AE3959DABCCFAB4BCF8F7BD4498 /* BubbleChartView.swift */; }; | |
| 168 | + FAADAE582993FADCDDBA4422C2EFE225 /* BarChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FA17E2EEBBFC1A8236B390179013795 /* BarChartDataSet.swift */; }; | |
| 169 | + FAF899F3096BCF67B2E3F0367BE9952A /* Charts-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F99AEDC4375B45D83B1889FA574F09A5 /* Charts-dummy.m */; }; | |
| 170 | + FB1D49DD0D751C8A8A063045C77C9E23 /* Range.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48DE929C18B36567FEA4031D67CFE830 /* Range.swift */; }; | |
| 171 | + FB893532F96889BB4849EDCE2F1729B5 /* BarHighlighter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 972555BAE6DB1E7D11D888E186C06729 /* BarHighlighter.swift */; }; | |
| 26 | 172 | FC2A8FC3716377A71E6A9933A7F58329 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 51498E299B7CB17BCC8B54F93C150FAA /* QuartzCore.framework */; }; |
| 173 | + FD15B6357FC6048DC2440EA245CB6FBD /* AxisRendererBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE3FD1DEBF9136EBDF6A877BD56FEEC1 /* AxisRendererBase.swift */; }; | |
| 174 | + FF418748EB65257B2A4A2ECBC1B96C72 /* BarChartRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8079102FE63D973E37E50B59E6619096 /* BarChartRenderer.swift */; }; | |
| 27 | 175 | /* End PBXBuildFile section */ |
| 28 | 176 | |
| 29 | 177 | /* Begin PBXContainerItemProxy section */ |
| 30 | - 5C2B7F68AE6711A09413AE3DE907B597 /* PBXContainerItemProxy */ = { | |
| 178 | + 15B4CAA4741119A8172AD6C87985CD21 /* PBXContainerItemProxy */ = { | |
| 31 | 179 | isa = PBXContainerItemProxy; |
| 32 | 180 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; |
| 33 | 181 | proxyType = 1; |
| 34 | 182 | remoteGlobalIDString = B545B48FA0CEE58E0B8D9309EE4CFF7C; |
| 35 | 183 | remoteInfo = CircleProgressBar; |
| 36 | 184 | }; |
| 37 | - A4FE162E7594594B6CB5495E1863182F /* PBXContainerItemProxy */ = { | |
| 185 | + 271A5ADED6D8D8151826412355B5F9D4 /* PBXContainerItemProxy */ = { | |
| 38 | 186 | isa = PBXContainerItemProxy; |
| 39 | 187 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; |
| 40 | 188 | proxyType = 1; |
| 41 | 189 | remoteGlobalIDString = 41FA54D12162DAD51D02FC58A2CD5034; |
| 42 | 190 | remoteInfo = MBProgressHUD; |
| 43 | 191 | }; |
| 192 | + 766C648B3EB82619A9A1092A08C33C83 /* PBXContainerItemProxy */ = { | |
| 193 | + isa = PBXContainerItemProxy; | |
| 194 | + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; | |
| 195 | + proxyType = 1; | |
| 196 | + remoteGlobalIDString = 78F97D6E090369A11417BB9694CBA0B2; | |
| 197 | + remoteInfo = LineKit; | |
| 198 | + }; | |
| 199 | + BC62767E669B3EDBC032B7A6F0FB60DA /* PBXContainerItemProxy */ = { | |
| 200 | + isa = PBXContainerItemProxy; | |
| 201 | + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; | |
| 202 | + proxyType = 1; | |
| 203 | + remoteGlobalIDString = F307B842FF76B2DE6C55DB67C0885325; | |
| 204 | + remoteInfo = Charts; | |
| 205 | + }; | |
| 44 | 206 | /* End PBXContainerItemProxy section */ |
| 45 | 207 | |
| 46 | 208 | /* Begin PBXFileReference section */ |
| 209 | + 00790BF4F1584C9B3FEDB9EA1E81AFFC /* LineKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = LineKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | |
| 47 | 210 | 0088B5B87FF85BA864002FEA3165195C /* Pods-LifeLog.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LifeLog.release.xcconfig"; sourceTree = "<group>"; }; |
| 211 | + 01017D5FF6B73CE3663C22347F961713 /* DefaultValueFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultValueFormatter.swift; path = Source/Charts/Formatters/DefaultValueFormatter.swift; sourceTree = "<group>"; }; | |
| 212 | + 028EE0EE20C21024CC4F98F78927B510 /* IBarLineScatterCandleBubbleChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IBarLineScatterCandleBubbleChartDataSet.swift; path = Source/Charts/Data/Interfaces/IBarLineScatterCandleBubbleChartDataSet.swift; sourceTree = "<group>"; }; | |
| 213 | + 03724ECF4AFD64E69BDD47A5C77991DD /* CombinedChartRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombinedChartRenderer.swift; path = Source/Charts/Renderers/CombinedChartRenderer.swift; sourceTree = "<group>"; }; | |
| 214 | + 037B5CC99D6EB83EAD59D63BBBB4907A /* Fill.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Fill.swift; path = Source/Charts/Utils/Fill.swift; sourceTree = "<group>"; }; | |
| 215 | + 03F2F59C625A13276BAE64547A24311F /* CandleStickChartView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CandleStickChartView.swift; path = Source/Charts/Charts/CandleStickChartView.swift; sourceTree = "<group>"; }; | |
| 216 | + 0487414B5EAA55CB5F0ACE42DC24B0AF /* BarChartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarChartData.swift; path = Source/Charts/Data/Implementations/Standard/BarChartData.swift; sourceTree = "<group>"; }; | |
| 217 | + 05837CDE0DDFCE8E9FDBA9F08309B8D6 /* PieHighlighter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PieHighlighter.swift; path = Source/Charts/Highlight/PieHighlighter.swift; sourceTree = "<group>"; }; | |
| 218 | + 068068F826089EE778AF7E22AA705EBA /* ILineRadarChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ILineRadarChartDataSet.swift; path = Source/Charts/Data/Interfaces/ILineRadarChartDataSet.swift; sourceTree = "<group>"; }; | |
| 219 | + 06AC8EA464743D576DE66960AC145E2B /* MBProgressHUD.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MBProgressHUD.xcconfig; sourceTree = "<group>"; }; | |
| 220 | + 07373A0A03BE49CEBD0B777C7E18B265 /* MBProgressHUD-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD-umbrella.h"; sourceTree = "<group>"; }; | |
| 221 | + 085B30A6925D470098040705BA63AA55 /* CircleProgressBar.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CircleProgressBar.xcconfig; sourceTree = "<group>"; }; | |
| 222 | + 08CECCD43F23EFAA8ED444D6A5884B18 /* YAxisRendererHorizontalBarChart.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = YAxisRendererHorizontalBarChart.swift; path = Source/Charts/Renderers/YAxisRendererHorizontalBarChart.swift; sourceTree = "<group>"; }; | |
| 223 | + 0C60139459C1F76B62E67DBACE859F9D /* ChartColorTemplates.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartColorTemplates.swift; path = Source/Charts/Utils/ChartColorTemplates.swift; sourceTree = "<group>"; }; | |
| 224 | + 0C6EBF130BE787A55DAB8A0D526E8863 /* PieRadarChartViewBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PieRadarChartViewBase.swift; path = Source/Charts/Charts/PieRadarChartViewBase.swift; sourceTree = "<group>"; }; | |
| 48 | 225 | 0D8EF2301073B01E30612B5B1BD94446 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; }; |
| 49 | - 117A771755EBDDE1E3D6D43086B7D59B /* CircleProgressBar.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = CircleProgressBar.modulemap; sourceTree = "<group>"; }; | |
| 50 | - 17392ABF13FACCC6293EB61F41DCC489 /* MBProgressHUD.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MBProgressHUD.framework; path = MBProgressHUD.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | |
| 51 | - 1B3E020BABE5F69A2D00DB7C2A666CA5 /* Pods_LifeLog.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_LifeLog.framework; path = "Pods-LifeLog.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; | |
| 52 | - 2A80818DD4BB1CA6E27C6A443CCC490B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; | |
| 53 | - 2E244D399D6C50515514D847282D465A /* MBProgressHUD.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MBProgressHUD.xcconfig; sourceTree = "<group>"; }; | |
| 226 | + 0EDA4414840EDA4249483BAF87FE5038 /* LKActivity.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = LKActivity.png; path = LineKit/images/LKActivity.png; sourceTree = "<group>"; }; | |
| 227 | + 0EDCE68220B169A9111964189DCC22B2 /* IFillFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IFillFormatter.swift; path = Source/Charts/Formatters/IFillFormatter.swift; sourceTree = "<group>"; }; | |
| 228 | + 0F64CAA4005D69EB3A9AD29B61EC756F /* LineRadarChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LineRadarChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/LineRadarChartDataSet.swift; sourceTree = "<group>"; }; | |
| 229 | + 103E7280D398CCD64D1E8B63B6A01437 /* ScatterChartRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScatterChartRenderer.swift; path = Source/Charts/Renderers/ScatterChartRenderer.swift; sourceTree = "<group>"; }; | |
| 230 | + 11AA44540F71CDE0652D25AA568A7679 /* Pods_LifeLog.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_LifeLog.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | |
| 231 | + 14EADE49B301DF292FA0135764A0C7D6 /* TransformerHorizontalBarChart.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TransformerHorizontalBarChart.swift; path = Source/Charts/Utils/TransformerHorizontalBarChart.swift; sourceTree = "<group>"; }; | |
| 232 | + 1678D27DC1D07AD9AC5B8E2489263A8A /* IHighlighter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IHighlighter.swift; path = Source/Charts/Highlight/IHighlighter.swift; sourceTree = "<group>"; }; | |
| 233 | + 18B064857F0CCFFD7949C95A36DF2D35 /* LineRadarRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LineRadarRenderer.swift; path = Source/Charts/Renderers/LineRadarRenderer.swift; sourceTree = "<group>"; }; | |
| 234 | + 18E257507DA03EEDE4D83DA5F7E91188 /* CandleChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CandleChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/CandleChartDataSet.swift; sourceTree = "<group>"; }; | |
| 235 | + 1A8B3451F861D228B74B3C3B1A614B69 /* CandleChartDataEntry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CandleChartDataEntry.swift; path = Source/Charts/Data/Implementations/Standard/CandleChartDataEntry.swift; sourceTree = "<group>"; }; | |
| 236 | + 1AADFC1449A615369B80496672196F00 /* HorizontalBarHighlighter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HorizontalBarHighlighter.swift; path = Source/Charts/Highlight/HorizontalBarHighlighter.swift; sourceTree = "<group>"; }; | |
| 237 | + 1B8D213B04E2C455AA26D9481CD9E2BE /* LineKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LineKit-dummy.m"; sourceTree = "<group>"; }; | |
| 238 | + 211826E07CE236C0EEE19A6A018C47DC /* DefaultAxisValueFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultAxisValueFormatter.swift; path = Source/Charts/Formatters/DefaultAxisValueFormatter.swift; sourceTree = "<group>"; }; | |
| 239 | + 2281F9BC4E494CBB5E06B23BF1443BEF /* RadarChartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RadarChartData.swift; path = Source/Charts/Data/Implementations/Standard/RadarChartData.swift; sourceTree = "<group>"; }; | |
| 240 | + 22D055D917398309E3DB5C2E37A359CB /* CircleProgressBar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CircleProgressBar.h; path = CircleProgressBarDemo/CircleProgressBar/CircleProgressBar.h; sourceTree = "<group>"; }; | |
| 241 | + 235010F47E8B8DCEA5DBF9A67769B33E /* MBProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD-prefix.pch"; sourceTree = "<group>"; }; | |
| 242 | + 23EBDDD6BE32C00C28D9D22D4A6DF0E7 /* CombinedChartDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombinedChartDataProvider.swift; path = Source/Charts/Interfaces/CombinedChartDataProvider.swift; sourceTree = "<group>"; }; | |
| 243 | + 24961C1E7CD3F7D8CA8D9BD0BE74A999 /* RadarChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RadarChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/RadarChartDataSet.swift; sourceTree = "<group>"; }; | |
| 244 | + 26C2836E04FA44BF429F714AF2DDCAB1 /* LineKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LineKit-prefix.pch"; sourceTree = "<group>"; }; | |
| 245 | + 2781702D2E9770D6415541AF2EE6DCB7 /* BarLineScatterCandleBubbleRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarLineScatterCandleBubbleRenderer.swift; path = Source/Charts/Renderers/BarLineScatterCandleBubbleRenderer.swift; sourceTree = "<group>"; }; | |
| 246 | + 27A7B40D01BF86B2EBA60FE446F228EB /* BubbleChartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BubbleChartData.swift; path = Source/Charts/Data/Implementations/Standard/BubbleChartData.swift; sourceTree = "<group>"; }; | |
| 247 | + 28701F26E2B9D6E7A4789910630587F0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; | |
| 248 | + 29D75DC83503F358C12A28F2C312371A /* Description.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Description.swift; path = Source/Charts/Components/Description.swift; sourceTree = "<group>"; }; | |
| 249 | + 2D2E154F5158B24BD70B290F51ABBBF1 /* RadarChartView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RadarChartView.swift; path = Source/Charts/Charts/RadarChartView.swift; sourceTree = "<group>"; }; | |
| 250 | + 2DD5CBA027E4A0356CCDB4896140C538 /* ViewPortHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewPortHandler.swift; path = Source/Charts/Utils/ViewPortHandler.swift; sourceTree = "<group>"; }; | |
| 251 | + 2E162D50D5E0D6BD6F21B143ADC6F7F9 /* LKLineActivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKLineActivity.m; path = LineKit/LKLineActivity.m; sourceTree = "<group>"; }; | |
| 252 | + 3579A1D3FDFE3E233E703BDAE59B9B8E /* MarkerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MarkerView.swift; path = Source/Charts/Components/MarkerView.swift; sourceTree = "<group>"; }; | |
| 253 | + 35F17C087D5005B417F573CCD6C2C4D3 /* BarLineScatterCandleBubbleChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarLineScatterCandleBubbleChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartDataSet.swift; sourceTree = "<group>"; }; | |
| 254 | + 36C8C9B6F8AB13566FADD5291473CC83 /* LineChartDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LineChartDataProvider.swift; path = Source/Charts/Interfaces/LineChartDataProvider.swift; sourceTree = "<group>"; }; | |
| 255 | + 3A66676172B408ADE052AC8DB16C1805 /* Renderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Renderer.swift; path = Source/Charts/Renderers/Renderer.swift; sourceTree = "<group>"; }; | |
| 256 | + 3BEFF4AEF432AD6FB924AEDAB34DC1C3 /* LineChartRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LineChartRenderer.swift; path = Source/Charts/Renderers/LineChartRenderer.swift; sourceTree = "<group>"; }; | |
| 257 | + 3E4676030CC21471EAE137CB8CA349F3 /* LineKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = LineKit.modulemap; sourceTree = "<group>"; }; | |
| 258 | + 3FF024CF8647BE786BE6F5C55B90A35F /* DefaultFillFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultFillFormatter.swift; path = Source/Charts/Formatters/DefaultFillFormatter.swift; sourceTree = "<group>"; }; | |
| 259 | + 421F29E69D781379A64950627F1AA742 /* BarLineScatterCandleBubbleChartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarLineScatterCandleBubbleChartData.swift; path = Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartData.swift; sourceTree = "<group>"; }; | |
| 260 | + 460D29608E2AED2948A6B6A4AFDF23AE /* ChartDataEntryBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartDataEntryBase.swift; path = Source/Charts/Data/Implementations/Standard/ChartDataEntryBase.swift; sourceTree = "<group>"; }; | |
| 54 | 261 | 4841A595CC7AE00CB8F37B50F92715F3 /* Pods-LifeLog.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LifeLog.debug.xcconfig"; sourceTree = "<group>"; }; |
| 55 | - 4AFA7A8FC16E3D4607F9C877E05CCE23 /* MBProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = "<group>"; }; | |
| 262 | + 4892B467149A123F63E889F86C45615C /* MoveViewJob.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MoveViewJob.swift; path = Source/Charts/Jobs/MoveViewJob.swift; sourceTree = "<group>"; }; | |
| 263 | + 48DE929C18B36567FEA4031D67CFE830 /* Range.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Range.swift; path = Source/Charts/Highlight/Range.swift; sourceTree = "<group>"; }; | |
| 264 | + 48E4E5656EF83E24DBCF6971628F66E1 /* MBProgressHUD.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = MBProgressHUD.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | |
| 265 | + 4CA00FECC8F16803BB0449D97B17BCCB /* CombinedChartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombinedChartData.swift; path = Source/Charts/Data/Implementations/Standard/CombinedChartData.swift; sourceTree = "<group>"; }; | |
| 266 | + 4D6F3AB3CC8C6C6BDC568E5D46AAD2A5 /* ChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/ChartDataSet.swift; sourceTree = "<group>"; }; | |
| 267 | + 4E2ECB8ACDA8676B2A2589EE822F67A2 /* CircleProgressBar-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CircleProgressBar-dummy.m"; sourceTree = "<group>"; }; | |
| 56 | 268 | 51498E299B7CB17BCC8B54F93C150FAA /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; }; |
| 269 | + 55085F81CE5164DE8E5403D106F09C62 /* CircleProgressBar.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = CircleProgressBar.modulemap; sourceTree = "<group>"; }; | |
| 270 | + 56554648DCA16EB067D39A2FCC30D478 /* ScatterChartView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScatterChartView.swift; path = Source/Charts/Charts/ScatterChartView.swift; sourceTree = "<group>"; }; | |
| 271 | + 594355A261FA3AEE4007B8B6FB04D297 /* ILineScatterCandleRadarChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ILineScatterCandleRadarChartDataSet.swift; path = Source/Charts/Data/Interfaces/ILineScatterCandleRadarChartDataSet.swift; sourceTree = "<group>"; }; | |
| 272 | + 5A173EBA530301318030FEA9ECB6AE82 /* CircleProgressBar-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CircleProgressBar-prefix.pch"; sourceTree = "<group>"; }; | |
| 273 | + 5AC68728E4B7BFC906DC3E801CC36EA8 /* BarChartDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarChartDataProvider.swift; path = Source/Charts/Interfaces/BarChartDataProvider.swift; sourceTree = "<group>"; }; | |
| 274 | + 5B213AE3959DABCCFAB4BCF8F7BD4498 /* BubbleChartView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BubbleChartView.swift; path = Source/Charts/Charts/BubbleChartView.swift; sourceTree = "<group>"; }; | |
| 275 | + 5C3FA84A837E9A40C34656D17B959D4D /* ComponentBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ComponentBase.swift; path = Source/Charts/Components/ComponentBase.swift; sourceTree = "<group>"; }; | |
| 276 | + 5C404EACF02EF248D9774E114A895342 /* LegendRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LegendRenderer.swift; path = Source/Charts/Renderers/LegendRenderer.swift; sourceTree = "<group>"; }; | |
| 277 | + 5D071C3CC87D3FC3D3935559DDC12527 /* PieChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PieChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/PieChartDataSet.swift; sourceTree = "<group>"; }; | |
| 278 | + 5DC3109C246BB2161FE52F39743F8673 /* IChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IChartDataSet.swift; path = Source/Charts/Data/Interfaces/IChartDataSet.swift; sourceTree = "<group>"; }; | |
| 279 | + 609D591873E9EE2CD7AC964670FD35A7 /* RadarChartRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RadarChartRenderer.swift; path = Source/Charts/Renderers/RadarChartRenderer.swift; sourceTree = "<group>"; }; | |
| 57 | 280 | 61A544FE2DBE5751C0A436550258C21C /* Pods-LifeLog-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-LifeLog-frameworks.sh"; sourceTree = "<group>"; }; |
| 58 | - 624957DC401374C9DC8C4854CD136348 /* MBProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD-prefix.pch"; sourceTree = "<group>"; }; | |
| 59 | - 653F7D68BD37347579C65700C208BC0C /* CircleProgressBar.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CircleProgressBar.framework; path = CircleProgressBar.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | |
| 281 | + 631152A3AC05ADDF86DCB783EEA2A58E /* PieChartDataEntry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PieChartDataEntry.swift; path = Source/Charts/Data/Implementations/Standard/PieChartDataEntry.swift; sourceTree = "<group>"; }; | |
| 282 | + 63557AC02A1999EF32A3C87E9314EF8A /* HorizontalBarChartRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HorizontalBarChartRenderer.swift; path = Source/Charts/Renderers/HorizontalBarChartRenderer.swift; sourceTree = "<group>"; }; | |
| 283 | + 63B742192A1ECCB84366E712560DD257 /* LKLineActivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKLineActivity.h; path = LineKit/LKLineActivity.h; sourceTree = "<group>"; }; | |
| 60 | 284 | 659282355E20C21035DE8E5CE6048B9B /* Pods-LifeLog-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-LifeLog-acknowledgements.markdown"; sourceTree = "<group>"; }; |
| 61 | 285 | 6647ACC906E3FCEEFF3813BB32B1FCF6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; |
| 62 | - 68B49BE33D100B749C511DE8B402F376 /* CircleProgressBar-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CircleProgressBar-dummy.m"; sourceTree = "<group>"; }; | |
| 63 | - 68F1CC874FC7F656AD0DC9F2B768808F /* CircleProgressBar-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CircleProgressBar-umbrella.h"; sourceTree = "<group>"; }; | |
| 64 | - 7B73BFCF0788ED8CD9F9D39A571E9C0C /* Pods-LifeLog.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-LifeLog.modulemap"; sourceTree = "<group>"; }; | |
| 65 | - 7C00BC2034DD6F61EF20C563BA04E4C1 /* MBProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD-dummy.m"; sourceTree = "<group>"; }; | |
| 286 | + 66EFF41A4E9C7158AF689607D0CA9557 /* LineKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LineKit.xcconfig; sourceTree = "<group>"; }; | |
| 287 | + 6B1EB5A51817DD6B026BE9D2303A351C /* MarkerImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MarkerImage.swift; path = Source/Charts/Components/MarkerImage.swift; sourceTree = "<group>"; }; | |
| 288 | + 6B29DD85D54DEC0CF2C829C961EAB07B /* ScatterChartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScatterChartData.swift; path = Source/Charts/Data/Implementations/Standard/ScatterChartData.swift; sourceTree = "<group>"; }; | |
| 289 | + 6E496F68558C7B89BDA61855AE5F4B5D /* ChartUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartUtils.swift; path = Source/Charts/Utils/ChartUtils.swift; sourceTree = "<group>"; }; | |
| 290 | + 71AD2933E7C37BB550FC8D4DFCEB4C9A /* ICandleChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ICandleChartDataSet.swift; path = Source/Charts/Data/Interfaces/ICandleChartDataSet.swift; sourceTree = "<group>"; }; | |
| 291 | + 726D07FB37349EE479079B8F19E86F7E /* LineChartView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LineChartView.swift; path = Source/Charts/Charts/LineChartView.swift; sourceTree = "<group>"; }; | |
| 292 | + 72C93DAFA406DB5336BB38F23D121D70 /* Line.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Line.m; path = LineKit/Line.m; sourceTree = "<group>"; }; | |
| 293 | + 730B7492EC158F624F1705BBCCCE95DA /* CombinedHighlighter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombinedHighlighter.swift; path = Source/Charts/Highlight/CombinedHighlighter.swift; sourceTree = "<group>"; }; | |
| 294 | + 75D2FD5059E2AE03523F87BC54185DCF /* SquareShapeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SquareShapeRenderer.swift; path = Source/Charts/Renderers/Scatter/SquareShapeRenderer.swift; sourceTree = "<group>"; }; | |
| 295 | + 7693413328F48BC34C775D4E463F2B68 /* PieRadarHighlighter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PieRadarHighlighter.swift; path = Source/Charts/Highlight/PieRadarHighlighter.swift; sourceTree = "<group>"; }; | |
| 296 | + 772C880C2127A27D5A74A32498B69703 /* DataApproximator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataApproximator.swift; path = Source/Charts/Filters/DataApproximator.swift; sourceTree = "<group>"; }; | |
| 297 | + 79C1472A6AE95CBC99A87F28959E124C /* MBProgressHUD.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = MBProgressHUD.modulemap; sourceTree = "<group>"; }; | |
| 298 | + 7B73BFCF0788ED8CD9F9D39A571E9C0C /* Pods-LifeLog.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-LifeLog.modulemap"; sourceTree = "<group>"; }; | |
| 299 | + 7C6E1D30FE65DCF1446854AB8D66E633 /* ChevronDownShapeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChevronDownShapeRenderer.swift; path = Source/Charts/Renderers/Scatter/ChevronDownShapeRenderer.swift; sourceTree = "<group>"; }; | |
| 300 | + 7C8078DA068327EB483911185FF7F104 /* IMarker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IMarker.swift; path = Source/Charts/Components/IMarker.swift; sourceTree = "<group>"; }; | |
| 301 | + 7ED114EEB1EF08FE7676577CD662A536 /* MBProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = "<group>"; }; | |
| 302 | + 8079102FE63D973E37E50B59E6619096 /* BarChartRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarChartRenderer.swift; path = Source/Charts/Renderers/BarChartRenderer.swift; sourceTree = "<group>"; }; | |
| 303 | + 838B7679E7C44BFB95E6912CA1C4D4E9 /* ZoomViewJob.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZoomViewJob.swift; path = Source/Charts/Jobs/ZoomViewJob.swift; sourceTree = "<group>"; }; | |
| 66 | 304 | 85237E86ECAFF9C2A40892965ED10B39 /* Pods-LifeLog-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-LifeLog-umbrella.h"; sourceTree = "<group>"; }; |
| 305 | + 85925B266CB412D35C25A4203061264E /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; | |
| 306 | + 85BDC24E567BEFDEB5FEBEB3927DA923 /* BubbleChartDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BubbleChartDataProvider.swift; path = Source/Charts/Interfaces/BubbleChartDataProvider.swift; sourceTree = "<group>"; }; | |
| 307 | + 88D634F67111DFD9CB17017F403CA12E /* IPieChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IPieChartDataSet.swift; path = Source/Charts/Data/Interfaces/IPieChartDataSet.swift; sourceTree = "<group>"; }; | |
| 67 | 308 | 8B01A7DF9CA2A84D08ABFE38972CA63E /* Pods-LifeLog-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-LifeLog-acknowledgements.plist"; sourceTree = "<group>"; }; |
| 68 | - 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; | |
| 309 | + 8BCAF3980E60AE817E0B49A364F80398 /* ChartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartData.swift; path = Source/Charts/Data/Implementations/Standard/ChartData.swift; sourceTree = "<group>"; }; | |
| 310 | + 8D511CF669BABFD596964157E6FAF313 /* XAxisRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = XAxisRenderer.swift; path = Source/Charts/Renderers/XAxisRenderer.swift; sourceTree = "<group>"; }; | |
| 311 | + 8D5ED235F2C7D016BC867641EB893AE0 /* CircleProgressBar-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CircleProgressBar-umbrella.h"; sourceTree = "<group>"; }; | |
| 312 | + 8EB1BBB340F3AD92D74098D33A2B769C /* ScatterChartDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScatterChartDataProvider.swift; path = Source/Charts/Interfaces/ScatterChartDataProvider.swift; sourceTree = "<group>"; }; | |
| 313 | + 8F2BD1FB0A4FC666789A1934825A76F2 /* IShapeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IShapeRenderer.swift; path = Source/Charts/Renderers/Scatter/IShapeRenderer.swift; sourceTree = "<group>"; }; | |
| 314 | + 9084A8AC05F334CE969D569216317AE0 /* AnimatedViewPortJob.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedViewPortJob.swift; path = Source/Charts/Jobs/AnimatedViewPortJob.swift; sourceTree = "<group>"; }; | |
| 315 | + 932F9064FAF043930F29947EC1275EA2 /* ViewPortJob.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewPortJob.swift; path = Source/Charts/Jobs/ViewPortJob.swift; sourceTree = "<group>"; }; | |
| 316 | + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; | |
| 317 | + 9472D91AF9C96856C69961D14EAF225F /* ILineChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ILineChartDataSet.swift; path = Source/Charts/Data/Interfaces/ILineChartDataSet.swift; sourceTree = "<group>"; }; | |
| 318 | + 972555BAE6DB1E7D11D888E186C06729 /* BarHighlighter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarHighlighter.swift; path = Source/Charts/Highlight/BarHighlighter.swift; sourceTree = "<group>"; }; | |
| 319 | + 9771830528610BA12712DA35EB1908F4 /* CircleShapeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CircleShapeRenderer.swift; path = Source/Charts/Renderers/Scatter/CircleShapeRenderer.swift; sourceTree = "<group>"; }; | |
| 320 | + 984AA93D30A87DE36EA40314E0EDD58B /* CandleChartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CandleChartData.swift; path = Source/Charts/Data/Implementations/Standard/CandleChartData.swift; sourceTree = "<group>"; }; | |
| 321 | + 98DDC56C28BFA95FFB159BD4534D2511 /* CircleProgressBar.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CircleProgressBar.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | |
| 322 | + 9930CA4DC22DBAB090DCEE66565D0625 /* IRadarChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IRadarChartDataSet.swift; path = Source/Charts/Data/Interfaces/IRadarChartDataSet.swift; sourceTree = "<group>"; }; | |
| 323 | + 99908D74E7AFC86B09D22C7F9D507F42 /* YAxis.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = YAxis.swift; path = Source/Charts/Components/YAxis.swift; sourceTree = "<group>"; }; | |
| 69 | 324 | 9B7A09227A34B8013088EFBDFE1276AB /* Pods-LifeLog-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-LifeLog-resources.sh"; sourceTree = "<group>"; }; |
| 70 | - A91ED1FAC252BBFA13CC0CB521FA14B0 /* CircleProgressBar-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CircleProgressBar-prefix.pch"; sourceTree = "<group>"; }; | |
| 71 | - AAFE6F6155EAEE8A3EA3210B0456B2F2 /* MBProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = "<group>"; }; | |
| 325 | + 9C53C59321C46A8BDF25CDA43E65139B /* IScatterChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IScatterChartDataSet.swift; path = Source/Charts/Data/Interfaces/IScatterChartDataSet.swift; sourceTree = "<group>"; }; | |
| 326 | + 9CAEA61F895ED0665032008EDF93DEEA /* Charts.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Charts.modulemap; sourceTree = "<group>"; }; | |
| 327 | + 9D668A7B02D2F15230E7E3F63693A3B4 /* XAxisRendererHorizontalBarChart.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = XAxisRendererHorizontalBarChart.swift; path = Source/Charts/Renderers/XAxisRendererHorizontalBarChart.swift; sourceTree = "<group>"; }; | |
| 328 | + 9FA17E2EEBBFC1A8236B390179013795 /* BarChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/BarChartDataSet.swift; sourceTree = "<group>"; }; | |
| 329 | + A059798E15A8382A331B8E78506F9C6D /* BarChartDataEntry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarChartDataEntry.swift; path = Source/Charts/Data/Implementations/Standard/BarChartDataEntry.swift; sourceTree = "<group>"; }; | |
| 330 | + A3F77ED20A9F4FFF2DF431C4BDEB7641 /* RadarHighlighter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RadarHighlighter.swift; path = Source/Charts/Highlight/RadarHighlighter.swift; sourceTree = "<group>"; }; | |
| 331 | + A454EF9CBDD60EB91CBD2CEAECFA0F7B /* BarLineChartViewBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarLineChartViewBase.swift; path = Source/Charts/Charts/BarLineChartViewBase.swift; sourceTree = "<group>"; }; | |
| 332 | + A5769E959789D8BF8ED81CC851A5895E /* IndexAxisValueFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IndexAxisValueFormatter.swift; path = Source/Charts/Formatters/IndexAxisValueFormatter.swift; sourceTree = "<group>"; }; | |
| 333 | + A6A39AC14D4299F41BD1A87EB921E50A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; | |
| 334 | + A6F1969180E83B3865A2521FB109D1D4 /* ChartHighlighter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartHighlighter.swift; path = Source/Charts/Highlight/ChartHighlighter.swift; sourceTree = "<group>"; }; | |
| 335 | + ACD64D33CBE6A13282E13844BEF21CC6 /* BarLineScatterCandleBubbleChartDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarLineScatterCandleBubbleChartDataProvider.swift; path = Source/Charts/Interfaces/BarLineScatterCandleBubbleChartDataProvider.swift; sourceTree = "<group>"; }; | |
| 336 | + AFE6AE606302DCBD14F09F929A96E4E7 /* Animator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Animator.swift; path = Source/Charts/Animation/Animator.swift; sourceTree = "<group>"; }; | |
| 337 | + B031B6800B29F0FE9D64CAACDDA23A66 /* ChartDataRendererBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartDataRendererBase.swift; path = Source/Charts/Renderers/ChartDataRendererBase.swift; sourceTree = "<group>"; }; | |
| 338 | + B07524E3D056564932D0EB587F4D4E06 /* RadarChartDataEntry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RadarChartDataEntry.swift; path = Source/Charts/Data/Implementations/Standard/RadarChartDataEntry.swift; sourceTree = "<group>"; }; | |
| 339 | + B17C205FBE72007883A10512524ADF6B /* XAxisRendererRadarChart.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = XAxisRendererRadarChart.swift; path = Source/Charts/Renderers/XAxisRendererRadarChart.swift; sourceTree = "<group>"; }; | |
| 340 | + B23EB0ACBE7B23BA000DDCA762FC1505 /* IAxisValueFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IAxisValueFormatter.swift; path = Source/Charts/Formatters/IAxisValueFormatter.swift; sourceTree = "<group>"; }; | |
| 341 | + B2814BD1C95F8F2A716F3C46DF81479A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; | |
| 342 | + B2AF061F3785599E3D981EC803F8E5BB /* CandleChartDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CandleChartDataProvider.swift; path = Source/Charts/Interfaces/CandleChartDataProvider.swift; sourceTree = "<group>"; }; | |
| 72 | 343 | B2AF4B58C683DE3E9F46928ED66EE9ED /* Pods-LifeLog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-LifeLog-dummy.m"; sourceTree = "<group>"; }; |
| 73 | - B99F34C32B35C1C2FF3383BF68277269 /* CircleProgressBar.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CircleProgressBar.xcconfig; sourceTree = "<group>"; }; | |
| 74 | - BAD6532F2EC3E15AB82D51D8C4CD9BEA /* CircleProgressBar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CircleProgressBar.m; path = CircleProgressBarDemo/CircleProgressBar/CircleProgressBar.m; sourceTree = "<group>"; }; | |
| 344 | + B6218553B5606B44255B1587E5F594CA /* Charts.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Charts.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | |
| 345 | + B97537BB6AD380FFC28C0B42D5F76280 /* ChartDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartDataProvider.swift; path = Source/Charts/Interfaces/ChartDataProvider.swift; sourceTree = "<group>"; }; | |
| 346 | + BA0F28017321F2E20832848F782DD526 /* Charts.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Charts.xcconfig; sourceTree = "<group>"; }; | |
| 75 | 347 | C073295EE18124CA1E5F3CF4CCB867AA /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; |
| 76 | - C2E4EDF53E33E7C1D4DE78DC000A92F0 /* MBProgressHUD.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = MBProgressHUD.modulemap; sourceTree = "<group>"; }; | |
| 77 | - D6958406969C746A2264CC8D6BEB6737 /* MBProgressHUD-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD-umbrella.h"; sourceTree = "<group>"; }; | |
| 348 | + C2ECFA96844FE01E5FD00EEE5C20B17A /* LegendEntry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LegendEntry.swift; path = Source/Charts/Components/LegendEntry.swift; sourceTree = "<group>"; }; | |
| 349 | + C36B236229A50387413F2BBD2132BB95 /* ScatterChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScatterChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/ScatterChartDataSet.swift; sourceTree = "<group>"; }; | |
| 350 | + C3DBD3FD9B924E23A728E52C4C6D67C6 /* LKActivity-Flat.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "LKActivity-Flat.png"; path = "LineKit/images/LKActivity-Flat.png"; sourceTree = "<group>"; }; | |
| 351 | + C4AE8FA11DE04247465206BC009DE1C4 /* ChartViewBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartViewBase.swift; path = Source/Charts/Charts/ChartViewBase.swift; sourceTree = "<group>"; }; | |
| 352 | + C5919DCC1541DC8BED1E0048518A8F39 /* XShapeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = XShapeRenderer.swift; path = Source/Charts/Renderers/Scatter/XShapeRenderer.swift; sourceTree = "<group>"; }; | |
| 353 | + C599BBDDECB13CCB97CBB5DA74F07DFE /* Charts-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Charts-prefix.pch"; sourceTree = "<group>"; }; | |
| 354 | + C6E89C3C1530CCAF9555738FDBEF5F88 /* IBubbleChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IBubbleChartDataSet.swift; path = Source/Charts/Data/Interfaces/IBubbleChartDataSet.swift; sourceTree = "<group>"; }; | |
| 355 | + C7218E8D3EAE5BEC73728E73EAAEFDF6 /* Transformer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Transformer.swift; path = Source/Charts/Utils/Transformer.swift; sourceTree = "<group>"; }; | |
| 356 | + C91810E33C294D95F285D061229213E2 /* Legend.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Legend.swift; path = Source/Charts/Components/Legend.swift; sourceTree = "<group>"; }; | |
| 357 | + CA09EEC400F9DF1211E1AFFF9A42107C /* LineChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LineChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/LineChartDataSet.swift; sourceTree = "<group>"; }; | |
| 358 | + CAD605F0FC96B5107247569FB61D3B00 /* PieChartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PieChartData.swift; path = Source/Charts/Data/Implementations/Standard/PieChartData.swift; sourceTree = "<group>"; }; | |
| 359 | + CCB395117BC4B89A3AA24F87EBDFE70C /* AnimatedMoveViewJob.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedMoveViewJob.swift; path = Source/Charts/Jobs/AnimatedMoveViewJob.swift; sourceTree = "<group>"; }; | |
| 360 | + CE2D1DFB3127DBBA299377DADD352E5E /* XAxis.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = XAxis.swift; path = Source/Charts/Components/XAxis.swift; sourceTree = "<group>"; }; | |
| 361 | + CE4C3BE4A69562517B3CBB48D1A0B4B9 /* BubbleChartRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BubbleChartRenderer.swift; path = Source/Charts/Renderers/BubbleChartRenderer.swift; sourceTree = "<group>"; }; | |
| 362 | + CE5F1744FA1B59B696D973368017A922 /* AnimatedZoomViewJob.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedZoomViewJob.swift; path = Source/Charts/Jobs/AnimatedZoomViewJob.swift; sourceTree = "<group>"; }; | |
| 363 | + CE6CC32DC752056F188911CF9124C17C /* MBProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = "<group>"; }; | |
| 364 | + CF70D47560A5566290A9EB65DB1FB7A5 /* YAxisRendererRadarChart.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = YAxisRendererRadarChart.swift; path = Source/Charts/Renderers/YAxisRendererRadarChart.swift; sourceTree = "<group>"; }; | |
| 365 | + D501D918454388E269E7559BBE1F52D0 /* CandleStickChartRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CandleStickChartRenderer.swift; path = Source/Charts/Renderers/CandleStickChartRenderer.swift; sourceTree = "<group>"; }; | |
| 366 | + D52478E65FBE401FA59EFD53D56EF958 /* HorizontalBarChartView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HorizontalBarChartView.swift; path = Source/Charts/Charts/HorizontalBarChartView.swift; sourceTree = "<group>"; }; | |
| 367 | + D59637356C6D55AC41CF26FAE2442E98 /* PieChartRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PieChartRenderer.swift; path = Source/Charts/Renderers/PieChartRenderer.swift; sourceTree = "<group>"; }; | |
| 368 | + D86C3BA16D558440D375620471259F07 /* Highlight.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Highlight.swift; path = Source/Charts/Highlight/Highlight.swift; sourceTree = "<group>"; }; | |
| 369 | + D8A08F4D7623BED119851860EED2FEB8 /* BubbleChartDataEntry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BubbleChartDataEntry.swift; path = Source/Charts/Data/Implementations/Standard/BubbleChartDataEntry.swift; sourceTree = "<group>"; }; | |
| 370 | + D9F69CE3711E81B7C911C71B6EF84960 /* IBarChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IBarChartDataSet.swift; path = Source/Charts/Data/Interfaces/IBarChartDataSet.swift; sourceTree = "<group>"; }; | |
| 371 | + DA6BFBD1BAA5E0CC144C41681F21346F /* CrossShapeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CrossShapeRenderer.swift; path = Source/Charts/Renderers/Scatter/CrossShapeRenderer.swift; sourceTree = "<group>"; }; | |
| 372 | + DA85D8983451FAFD14CBF70D3B5122BE /* PieChartView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PieChartView.swift; path = Source/Charts/Charts/PieChartView.swift; sourceTree = "<group>"; }; | |
| 373 | + DBD0E4CE822007D43FD2E2142078329C /* LineKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LineKit-umbrella.h"; sourceTree = "<group>"; }; | |
| 374 | + DCF14CE30FE9F54B950D6D9D3A9F4F82 /* IValueFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IValueFormatter.swift; path = Source/Charts/Formatters/IValueFormatter.swift; sourceTree = "<group>"; }; | |
| 375 | + DE3FD1DEBF9136EBDF6A877BD56FEEC1 /* AxisRendererBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AxisRendererBase.swift; path = Source/Charts/Renderers/AxisRendererBase.swift; sourceTree = "<group>"; }; | |
| 376 | + DF4C9DA15123751574625FD80936778A /* MBProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD-dummy.m"; sourceTree = "<group>"; }; | |
| 377 | + DF7BF3542661B1A621CD5BE47A2D991B /* CombinedChartView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombinedChartView.swift; path = Source/Charts/Charts/CombinedChartView.swift; sourceTree = "<group>"; }; | |
| 378 | + E04A0841992EFFC1F90733599178A9ED /* ChartAnimationEasing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartAnimationEasing.swift; path = Source/Charts/Animation/ChartAnimationEasing.swift; sourceTree = "<group>"; }; | |
| 379 | + E1B5D51B39793079DC3EB31F1DC8766B /* LineScatterCandleRadarChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LineScatterCandleRadarChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/LineScatterCandleRadarChartDataSet.swift; sourceTree = "<group>"; }; | |
| 380 | + E28E127C2A64FB61CF51342E83998F53 /* Line.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Line.h; path = LineKit/Line.h; sourceTree = "<group>"; }; | |
| 381 | + E4491A48F5F89A0D35FC248873EB63DC /* BubbleChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BubbleChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/BubbleChartDataSet.swift; sourceTree = "<group>"; }; | |
| 382 | + E639E47E882F9DFF7542B2E9C2323463 /* CircleProgressBar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CircleProgressBar.m; path = CircleProgressBarDemo/CircleProgressBar/CircleProgressBar.m; sourceTree = "<group>"; }; | |
| 383 | + E769211E112E2E14E08FE7181A475B66 /* TriangleShapeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TriangleShapeRenderer.swift; path = Source/Charts/Renderers/Scatter/TriangleShapeRenderer.swift; sourceTree = "<group>"; }; | |
| 384 | + E850D610BC5B70AC3FAA3907CAE4E41E /* YAxisRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = YAxisRenderer.swift; path = Source/Charts/Renderers/YAxisRenderer.swift; sourceTree = "<group>"; }; | |
| 385 | + EA2DB3BF15947AFA286A65DB39D87E4E /* LKActivity-Flat@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "LKActivity-Flat@2x.png"; path = "LineKit/images/LKActivity-Flat@2x.png"; sourceTree = "<group>"; }; | |
| 386 | + EC0773EE17DAE6435E376FA6AB6C2D24 /* AxisBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AxisBase.swift; path = Source/Charts/Components/AxisBase.swift; sourceTree = "<group>"; }; | |
| 78 | 387 | EC1FD743D031D373EDF29CC526F758E2 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; |
| 79 | - EFA750912F601AEA781316E22E962BDC /* CircleProgressBar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CircleProgressBar.h; path = CircleProgressBarDemo/CircleProgressBar/CircleProgressBar.h; sourceTree = "<group>"; }; | |
| 80 | - F8B3B14A6327E7608B20196C8A319EFE /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; | |
| 388 | + EE50630544C8F686BF1F740BCE34BE31 /* ChartLimitLine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartLimitLine.swift; path = Source/Charts/Components/ChartLimitLine.swift; sourceTree = "<group>"; }; | |
| 389 | + EE8108234609A1BAC4C019035DDD11BD /* Platform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.swift; path = Source/Charts/Utils/Platform.swift; sourceTree = "<group>"; }; | |
| 390 | + EFD8B8E74CE67C3008D2047ADD06A8B6 /* Charts-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Charts-umbrella.h"; sourceTree = "<group>"; }; | |
| 391 | + F463A32205B2C25B6F4531F2DEA8C2A5 /* BarChartView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarChartView.swift; path = Source/Charts/Charts/BarChartView.swift; sourceTree = "<group>"; }; | |
| 392 | + F47B198C41B502F940525FA47C6B9C7C /* LKActivity@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "LKActivity@2x.png"; path = "LineKit/images/LKActivity@2x.png"; sourceTree = "<group>"; }; | |
| 393 | + F81132DA4C74EC5799DCB2F9F21402E6 /* ChevronUpShapeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChevronUpShapeRenderer.swift; path = Source/Charts/Renderers/Scatter/ChevronUpShapeRenderer.swift; sourceTree = "<group>"; }; | |
| 394 | + F8DC307FABE143E3A355E012D950B4B8 /* ChartBaseDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartBaseDataSet.swift; path = Source/Charts/Data/Implementations/ChartBaseDataSet.swift; sourceTree = "<group>"; }; | |
| 395 | + F98D41A453753EC9E527D1DDE72DD20D /* LineChartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LineChartData.swift; path = Source/Charts/Data/Implementations/Standard/LineChartData.swift; sourceTree = "<group>"; }; | |
| 396 | + F99AEDC4375B45D83B1889FA574F09A5 /* Charts-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Charts-dummy.m"; sourceTree = "<group>"; }; | |
| 397 | + FCBDFD4D780B2712967C2F3FC2EB7B12 /* ChartDataEntry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartDataEntry.swift; path = Source/Charts/Data/Implementations/Standard/ChartDataEntry.swift; sourceTree = "<group>"; }; | |
| 398 | + FD87C0C5CF816F7581DA1F94AC5F3E8B /* LineScatterCandleRadarRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LineScatterCandleRadarRenderer.swift; path = Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift; sourceTree = "<group>"; }; | |
| 81 | 399 | /* End PBXFileReference section */ |
| 82 | 400 | |
| 83 | 401 | /* Begin PBXFrameworksBuildPhase section */ |
| 84 | - 3466D02DAABCB0F72C1822B6D79B901F /* Frameworks */ = { | |
| 402 | + 457F058C1E22A9083974CEF812CB2DD6 /* Frameworks */ = { | |
| 85 | 403 | isa = PBXFrameworksBuildPhase; |
| 86 | 404 | buildActionMask = 2147483647; |
| 87 | 405 | files = ( |
| 88 | - 2FB418A613B03A588C8D3DF12F348D8E /* Foundation.framework in Frameworks */, | |
| 406 | + A44E91C6C5B9629276F811A20B87A8E4 /* Foundation.framework in Frameworks */, | |
| 89 | 407 | ); |
| 90 | 408 | runOnlyForDeploymentPostprocessing = 0; |
| 91 | 409 | }; |
| 410 | + 62DF2851AAE6E95331CB2D33081AFF35 /* Frameworks */ = { | |
| 411 | + isa = PBXFrameworksBuildPhase; | |
| 412 | + buildActionMask = 2147483647; | |
| 413 | + files = ( | |
| 414 | + 756A38A103A56661B784ECE8DD4D9917 /* Foundation.framework in Frameworks */, | |
| 415 | + ); | |
| 416 | + runOnlyForDeploymentPostprocessing = 0; | |
| 417 | + }; | |
| 92 | 418 | 63B1C92D6BF370D768AAD98A0DA90451 /* Frameworks */ = { |
| 93 | 419 | isa = PBXFrameworksBuildPhase; |
| 94 | 420 | buildActionMask = 2147483647; |
| 95 | 421 | |
| ... | ... | @@ -109,9 +435,31 @@ |
| 109 | 435 | ); |
| 110 | 436 | runOnlyForDeploymentPostprocessing = 0; |
| 111 | 437 | }; |
| 438 | + DEBB93DE9F14B4EEB16BE7EA484E51A7 /* Frameworks */ = { | |
| 439 | + isa = PBXFrameworksBuildPhase; | |
| 440 | + buildActionMask = 2147483647; | |
| 441 | + files = ( | |
| 442 | + B4CA1C1703826B8F5E3B425FA4736244 /* Foundation.framework in Frameworks */, | |
| 443 | + ); | |
| 444 | + runOnlyForDeploymentPostprocessing = 0; | |
| 445 | + }; | |
| 112 | 446 | /* End PBXFrameworksBuildPhase section */ |
| 113 | 447 | |
| 114 | 448 | /* Begin PBXGroup section */ |
| 449 | + 088C4B3652D7B583B1627A5301CE19D3 /* Support Files */ = { | |
| 450 | + isa = PBXGroup; | |
| 451 | + children = ( | |
| 452 | + 9CAEA61F895ED0665032008EDF93DEEA /* Charts.modulemap */, | |
| 453 | + BA0F28017321F2E20832848F782DD526 /* Charts.xcconfig */, | |
| 454 | + F99AEDC4375B45D83B1889FA574F09A5 /* Charts-dummy.m */, | |
| 455 | + C599BBDDECB13CCB97CBB5DA74F07DFE /* Charts-prefix.pch */, | |
| 456 | + EFD8B8E74CE67C3008D2047ADD06A8B6 /* Charts-umbrella.h */, | |
| 457 | + 85925B266CB412D35C25A4203061264E /* Info.plist */, | |
| 458 | + ); | |
| 459 | + name = "Support Files"; | |
| 460 | + path = "../Target Support Files/Charts"; | |
| 461 | + sourceTree = "<group>"; | |
| 462 | + }; | |
| 115 | 463 | 0A9D128C73E805501ABC424983EF6390 /* Targets Support Files */ = { |
| 116 | 464 | isa = PBXGroup; |
| 117 | 465 | children = ( |
| 118 | 466 | |
| 119 | 467 | |
| 120 | 468 | |
| 121 | 469 | |
| 122 | 470 | |
| 123 | 471 | |
| 124 | 472 | |
| 125 | 473 | |
| 126 | 474 | |
| 127 | 475 | |
| 128 | 476 | |
| 129 | 477 | |
| 130 | 478 | |
| 131 | 479 | |
| 132 | 480 | |
| 133 | 481 | |
| 134 | 482 | |
| 135 | 483 | |
| 136 | 484 | |
| 137 | 485 | |
| ... | ... | @@ -139,84 +487,274 @@ |
| 139 | 487 | name = iOS; |
| 140 | 488 | sourceTree = "<group>"; |
| 141 | 489 | }; |
| 142 | - 66CF8ED62ACE9571E38A73DE29C194B3 /* MBProgressHUD */ = { | |
| 490 | + 3432A182536D53DAD0B0874A4F4EC813 /* Support Files */ = { | |
| 143 | 491 | isa = PBXGroup; |
| 144 | 492 | children = ( |
| 145 | - AAFE6F6155EAEE8A3EA3210B0456B2F2 /* MBProgressHUD.h */, | |
| 146 | - 4AFA7A8FC16E3D4607F9C877E05CCE23 /* MBProgressHUD.m */, | |
| 147 | - 9D30B70E1FE8F470E7375D7DDAE4937F /* Support Files */, | |
| 493 | + 55085F81CE5164DE8E5403D106F09C62 /* CircleProgressBar.modulemap */, | |
| 494 | + 085B30A6925D470098040705BA63AA55 /* CircleProgressBar.xcconfig */, | |
| 495 | + 4E2ECB8ACDA8676B2A2589EE822F67A2 /* CircleProgressBar-dummy.m */, | |
| 496 | + 5A173EBA530301318030FEA9ECB6AE82 /* CircleProgressBar-prefix.pch */, | |
| 497 | + 8D5ED235F2C7D016BC867641EB893AE0 /* CircleProgressBar-umbrella.h */, | |
| 498 | + B2814BD1C95F8F2A716F3C46DF81479A /* Info.plist */, | |
| 148 | 499 | ); |
| 149 | - name = MBProgressHUD; | |
| 150 | - path = MBProgressHUD; | |
| 500 | + name = "Support Files"; | |
| 501 | + path = "../Target Support Files/CircleProgressBar"; | |
| 151 | 502 | sourceTree = "<group>"; |
| 152 | 503 | }; |
| 153 | - 75D0759E72EF5A96234DFB32B1614706 /* CircleProgressBar */ = { | |
| 504 | + 36F93602460FF06EEC1F3840EB7330B8 /* Support Files */ = { | |
| 154 | 505 | isa = PBXGroup; |
| 155 | 506 | children = ( |
| 156 | - EFA750912F601AEA781316E22E962BDC /* CircleProgressBar.h */, | |
| 157 | - BAD6532F2EC3E15AB82D51D8C4CD9BEA /* CircleProgressBar.m */, | |
| 158 | - EF19F22A4DD93880EE97EF0B09AB6306 /* Support Files */, | |
| 507 | + 28701F26E2B9D6E7A4789910630587F0 /* Info.plist */, | |
| 508 | + 79C1472A6AE95CBC99A87F28959E124C /* MBProgressHUD.modulemap */, | |
| 509 | + 06AC8EA464743D576DE66960AC145E2B /* MBProgressHUD.xcconfig */, | |
| 510 | + DF4C9DA15123751574625FD80936778A /* MBProgressHUD-dummy.m */, | |
| 511 | + 235010F47E8B8DCEA5DBF9A67769B33E /* MBProgressHUD-prefix.pch */, | |
| 512 | + 07373A0A03BE49CEBD0B777C7E18B265 /* MBProgressHUD-umbrella.h */, | |
| 159 | 513 | ); |
| 160 | - name = CircleProgressBar; | |
| 161 | - path = CircleProgressBar; | |
| 514 | + name = "Support Files"; | |
| 515 | + path = "../Target Support Files/MBProgressHUD"; | |
| 162 | 516 | sourceTree = "<group>"; |
| 163 | 517 | }; |
| 164 | - 7D75AB1D21DCDE4F2885D074A293BF9C /* Pods */ = { | |
| 518 | + 4F5FD5D6A17CD0749A9EF7D466B3F489 /* Resources */ = { | |
| 165 | 519 | isa = PBXGroup; |
| 166 | 520 | children = ( |
| 167 | - 75D0759E72EF5A96234DFB32B1614706 /* CircleProgressBar */, | |
| 168 | - 66CF8ED62ACE9571E38A73DE29C194B3 /* MBProgressHUD */, | |
| 521 | + 0EDA4414840EDA4249483BAF87FE5038 /* LKActivity.png */, | |
| 522 | + C3DBD3FD9B924E23A728E52C4C6D67C6 /* LKActivity-Flat.png */, | |
| 523 | + EA2DB3BF15947AFA286A65DB39D87E4E /* LKActivity-Flat@2x.png */, | |
| 524 | + F47B198C41B502F940525FA47C6B9C7C /* LKActivity@2x.png */, | |
| 169 | 525 | ); |
| 526 | + name = Resources; | |
| 527 | + sourceTree = "<group>"; | |
| 528 | + }; | |
| 529 | + 6B036DC44C69B2F8532CC0636F182E53 /* Pods */ = { | |
| 530 | + isa = PBXGroup; | |
| 531 | + children = ( | |
| 532 | + 6ECDB9F4527C42F0EF16528FA08126B9 /* Charts */, | |
| 533 | + 7B65041FAFCE0E1ADF7955C31764CE81 /* CircleProgressBar */, | |
| 534 | + 6F77C8A1E57A05292AB5BBF287BEAFB0 /* LineKit */, | |
| 535 | + CB0E73B8C8865E3B4F67AF9D03C8E9B3 /* MBProgressHUD */, | |
| 536 | + ); | |
| 170 | 537 | name = Pods; |
| 171 | 538 | sourceTree = "<group>"; |
| 172 | 539 | }; |
| 540 | + 6ECDB9F4527C42F0EF16528FA08126B9 /* Charts */ = { | |
| 541 | + isa = PBXGroup; | |
| 542 | + children = ( | |
| 543 | + B33927734674C065CDA6E93407B0A18C /* Core */, | |
| 544 | + 088C4B3652D7B583B1627A5301CE19D3 /* Support Files */, | |
| 545 | + ); | |
| 546 | + path = Charts; | |
| 547 | + sourceTree = "<group>"; | |
| 548 | + }; | |
| 549 | + 6F77C8A1E57A05292AB5BBF287BEAFB0 /* LineKit */ = { | |
| 550 | + isa = PBXGroup; | |
| 551 | + children = ( | |
| 552 | + E28E127C2A64FB61CF51342E83998F53 /* Line.h */, | |
| 553 | + 72C93DAFA406DB5336BB38F23D121D70 /* Line.m */, | |
| 554 | + 63B742192A1ECCB84366E712560DD257 /* LKLineActivity.h */, | |
| 555 | + 2E162D50D5E0D6BD6F21B143ADC6F7F9 /* LKLineActivity.m */, | |
| 556 | + 4F5FD5D6A17CD0749A9EF7D466B3F489 /* Resources */, | |
| 557 | + AD5470AF21CD1DF756B34A4BA3065842 /* Support Files */, | |
| 558 | + ); | |
| 559 | + path = LineKit; | |
| 560 | + sourceTree = "<group>"; | |
| 561 | + }; | |
| 562 | + 7B65041FAFCE0E1ADF7955C31764CE81 /* CircleProgressBar */ = { | |
| 563 | + isa = PBXGroup; | |
| 564 | + children = ( | |
| 565 | + 22D055D917398309E3DB5C2E37A359CB /* CircleProgressBar.h */, | |
| 566 | + E639E47E882F9DFF7542B2E9C2323463 /* CircleProgressBar.m */, | |
| 567 | + 3432A182536D53DAD0B0874A4F4EC813 /* Support Files */, | |
| 568 | + ); | |
| 569 | + path = CircleProgressBar; | |
| 570 | + sourceTree = "<group>"; | |
| 571 | + }; | |
| 173 | 572 | 7DB346D0F39D3F0E887471402A8071AB = { |
| 174 | 573 | isa = PBXGroup; |
| 175 | 574 | children = ( |
| 176 | 575 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, |
| 177 | 576 | 14B8B9B15ECBE87983FF987239AB2D7B /* Frameworks */, |
| 178 | - 7D75AB1D21DCDE4F2885D074A293BF9C /* Pods */, | |
| 179 | - DE9EDFFA07DAABE1C0ED37300F198CA8 /* Products */, | |
| 577 | + 6B036DC44C69B2F8532CC0636F182E53 /* Pods */, | |
| 578 | + 80F1E7001ABA113AC7D3BAEFCACB64C5 /* Products */, | |
| 180 | 579 | 0A9D128C73E805501ABC424983EF6390 /* Targets Support Files */, |
| 181 | 580 | ); |
| 182 | 581 | sourceTree = "<group>"; |
| 183 | 582 | }; |
| 184 | - 9D30B70E1FE8F470E7375D7DDAE4937F /* Support Files */ = { | |
| 583 | + 80F1E7001ABA113AC7D3BAEFCACB64C5 /* Products */ = { | |
| 185 | 584 | isa = PBXGroup; |
| 186 | 585 | children = ( |
| 187 | - 2A80818DD4BB1CA6E27C6A443CCC490B /* Info.plist */, | |
| 188 | - C2E4EDF53E33E7C1D4DE78DC000A92F0 /* MBProgressHUD.modulemap */, | |
| 189 | - 2E244D399D6C50515514D847282D465A /* MBProgressHUD.xcconfig */, | |
| 190 | - 7C00BC2034DD6F61EF20C563BA04E4C1 /* MBProgressHUD-dummy.m */, | |
| 191 | - 624957DC401374C9DC8C4854CD136348 /* MBProgressHUD-prefix.pch */, | |
| 192 | - D6958406969C746A2264CC8D6BEB6737 /* MBProgressHUD-umbrella.h */, | |
| 586 | + B6218553B5606B44255B1587E5F594CA /* Charts.framework */, | |
| 587 | + 98DDC56C28BFA95FFB159BD4534D2511 /* CircleProgressBar.framework */, | |
| 588 | + 00790BF4F1584C9B3FEDB9EA1E81AFFC /* LineKit.framework */, | |
| 589 | + 48E4E5656EF83E24DBCF6971628F66E1 /* MBProgressHUD.framework */, | |
| 590 | + 11AA44540F71CDE0652D25AA568A7679 /* Pods_LifeLog.framework */, | |
| 193 | 591 | ); |
| 592 | + name = Products; | |
| 593 | + sourceTree = "<group>"; | |
| 594 | + }; | |
| 595 | + AD5470AF21CD1DF756B34A4BA3065842 /* Support Files */ = { | |
| 596 | + isa = PBXGroup; | |
| 597 | + children = ( | |
| 598 | + A6A39AC14D4299F41BD1A87EB921E50A /* Info.plist */, | |
| 599 | + 3E4676030CC21471EAE137CB8CA349F3 /* LineKit.modulemap */, | |
| 600 | + 66EFF41A4E9C7158AF689607D0CA9557 /* LineKit.xcconfig */, | |
| 601 | + 1B8D213B04E2C455AA26D9481CD9E2BE /* LineKit-dummy.m */, | |
| 602 | + 26C2836E04FA44BF429F714AF2DDCAB1 /* LineKit-prefix.pch */, | |
| 603 | + DBD0E4CE822007D43FD2E2142078329C /* LineKit-umbrella.h */, | |
| 604 | + ); | |
| 194 | 605 | name = "Support Files"; |
| 195 | - path = "../Target Support Files/MBProgressHUD"; | |
| 606 | + path = "../Target Support Files/LineKit"; | |
| 196 | 607 | sourceTree = "<group>"; |
| 197 | 608 | }; |
| 198 | - DE9EDFFA07DAABE1C0ED37300F198CA8 /* Products */ = { | |
| 609 | + B33927734674C065CDA6E93407B0A18C /* Core */ = { | |
| 199 | 610 | isa = PBXGroup; |
| 200 | 611 | children = ( |
| 201 | - 653F7D68BD37347579C65700C208BC0C /* CircleProgressBar.framework */, | |
| 202 | - 17392ABF13FACCC6293EB61F41DCC489 /* MBProgressHUD.framework */, | |
| 203 | - 1B3E020BABE5F69A2D00DB7C2A666CA5 /* Pods_LifeLog.framework */, | |
| 612 | + CCB395117BC4B89A3AA24F87EBDFE70C /* AnimatedMoveViewJob.swift */, | |
| 613 | + 9084A8AC05F334CE969D569216317AE0 /* AnimatedViewPortJob.swift */, | |
| 614 | + CE5F1744FA1B59B696D973368017A922 /* AnimatedZoomViewJob.swift */, | |
| 615 | + AFE6AE606302DCBD14F09F929A96E4E7 /* Animator.swift */, | |
| 616 | + EC0773EE17DAE6435E376FA6AB6C2D24 /* AxisBase.swift */, | |
| 617 | + DE3FD1DEBF9136EBDF6A877BD56FEEC1 /* AxisRendererBase.swift */, | |
| 618 | + 0487414B5EAA55CB5F0ACE42DC24B0AF /* BarChartData.swift */, | |
| 619 | + A059798E15A8382A331B8E78506F9C6D /* BarChartDataEntry.swift */, | |
| 620 | + 5AC68728E4B7BFC906DC3E801CC36EA8 /* BarChartDataProvider.swift */, | |
| 621 | + 9FA17E2EEBBFC1A8236B390179013795 /* BarChartDataSet.swift */, | |
| 622 | + 8079102FE63D973E37E50B59E6619096 /* BarChartRenderer.swift */, | |
| 623 | + F463A32205B2C25B6F4531F2DEA8C2A5 /* BarChartView.swift */, | |
| 624 | + 972555BAE6DB1E7D11D888E186C06729 /* BarHighlighter.swift */, | |
| 625 | + A454EF9CBDD60EB91CBD2CEAECFA0F7B /* BarLineChartViewBase.swift */, | |
| 626 | + 421F29E69D781379A64950627F1AA742 /* BarLineScatterCandleBubbleChartData.swift */, | |
| 627 | + ACD64D33CBE6A13282E13844BEF21CC6 /* BarLineScatterCandleBubbleChartDataProvider.swift */, | |
| 628 | + 35F17C087D5005B417F573CCD6C2C4D3 /* BarLineScatterCandleBubbleChartDataSet.swift */, | |
| 629 | + 2781702D2E9770D6415541AF2EE6DCB7 /* BarLineScatterCandleBubbleRenderer.swift */, | |
| 630 | + 27A7B40D01BF86B2EBA60FE446F228EB /* BubbleChartData.swift */, | |
| 631 | + D8A08F4D7623BED119851860EED2FEB8 /* BubbleChartDataEntry.swift */, | |
| 632 | + 85BDC24E567BEFDEB5FEBEB3927DA923 /* BubbleChartDataProvider.swift */, | |
| 633 | + E4491A48F5F89A0D35FC248873EB63DC /* BubbleChartDataSet.swift */, | |
| 634 | + CE4C3BE4A69562517B3CBB48D1A0B4B9 /* BubbleChartRenderer.swift */, | |
| 635 | + 5B213AE3959DABCCFAB4BCF8F7BD4498 /* BubbleChartView.swift */, | |
| 636 | + 984AA93D30A87DE36EA40314E0EDD58B /* CandleChartData.swift */, | |
| 637 | + 1A8B3451F861D228B74B3C3B1A614B69 /* CandleChartDataEntry.swift */, | |
| 638 | + B2AF061F3785599E3D981EC803F8E5BB /* CandleChartDataProvider.swift */, | |
| 639 | + 18E257507DA03EEDE4D83DA5F7E91188 /* CandleChartDataSet.swift */, | |
| 640 | + D501D918454388E269E7559BBE1F52D0 /* CandleStickChartRenderer.swift */, | |
| 641 | + 03F2F59C625A13276BAE64547A24311F /* CandleStickChartView.swift */, | |
| 642 | + E04A0841992EFFC1F90733599178A9ED /* ChartAnimationEasing.swift */, | |
| 643 | + F8DC307FABE143E3A355E012D950B4B8 /* ChartBaseDataSet.swift */, | |
| 644 | + 0C60139459C1F76B62E67DBACE859F9D /* ChartColorTemplates.swift */, | |
| 645 | + 8BCAF3980E60AE817E0B49A364F80398 /* ChartData.swift */, | |
| 646 | + FCBDFD4D780B2712967C2F3FC2EB7B12 /* ChartDataEntry.swift */, | |
| 647 | + 460D29608E2AED2948A6B6A4AFDF23AE /* ChartDataEntryBase.swift */, | |
| 648 | + B97537BB6AD380FFC28C0B42D5F76280 /* ChartDataProvider.swift */, | |
| 649 | + B031B6800B29F0FE9D64CAACDDA23A66 /* ChartDataRendererBase.swift */, | |
| 650 | + 4D6F3AB3CC8C6C6BDC568E5D46AAD2A5 /* ChartDataSet.swift */, | |
| 651 | + A6F1969180E83B3865A2521FB109D1D4 /* ChartHighlighter.swift */, | |
| 652 | + EE50630544C8F686BF1F740BCE34BE31 /* ChartLimitLine.swift */, | |
| 653 | + 6E496F68558C7B89BDA61855AE5F4B5D /* ChartUtils.swift */, | |
| 654 | + C4AE8FA11DE04247465206BC009DE1C4 /* ChartViewBase.swift */, | |
| 655 | + 7C6E1D30FE65DCF1446854AB8D66E633 /* ChevronDownShapeRenderer.swift */, | |
| 656 | + F81132DA4C74EC5799DCB2F9F21402E6 /* ChevronUpShapeRenderer.swift */, | |
| 657 | + 9771830528610BA12712DA35EB1908F4 /* CircleShapeRenderer.swift */, | |
| 658 | + 4CA00FECC8F16803BB0449D97B17BCCB /* CombinedChartData.swift */, | |
| 659 | + 23EBDDD6BE32C00C28D9D22D4A6DF0E7 /* CombinedChartDataProvider.swift */, | |
| 660 | + 03724ECF4AFD64E69BDD47A5C77991DD /* CombinedChartRenderer.swift */, | |
| 661 | + DF7BF3542661B1A621CD5BE47A2D991B /* CombinedChartView.swift */, | |
| 662 | + 730B7492EC158F624F1705BBCCCE95DA /* CombinedHighlighter.swift */, | |
| 663 | + 5C3FA84A837E9A40C34656D17B959D4D /* ComponentBase.swift */, | |
| 664 | + DA6BFBD1BAA5E0CC144C41681F21346F /* CrossShapeRenderer.swift */, | |
| 665 | + 772C880C2127A27D5A74A32498B69703 /* DataApproximator.swift */, | |
| 666 | + 211826E07CE236C0EEE19A6A018C47DC /* DefaultAxisValueFormatter.swift */, | |
| 667 | + 3FF024CF8647BE786BE6F5C55B90A35F /* DefaultFillFormatter.swift */, | |
| 668 | + 01017D5FF6B73CE3663C22347F961713 /* DefaultValueFormatter.swift */, | |
| 669 | + 29D75DC83503F358C12A28F2C312371A /* Description.swift */, | |
| 670 | + 037B5CC99D6EB83EAD59D63BBBB4907A /* Fill.swift */, | |
| 671 | + D86C3BA16D558440D375620471259F07 /* Highlight.swift */, | |
| 672 | + 63557AC02A1999EF32A3C87E9314EF8A /* HorizontalBarChartRenderer.swift */, | |
| 673 | + D52478E65FBE401FA59EFD53D56EF958 /* HorizontalBarChartView.swift */, | |
| 674 | + 1AADFC1449A615369B80496672196F00 /* HorizontalBarHighlighter.swift */, | |
| 675 | + B23EB0ACBE7B23BA000DDCA762FC1505 /* IAxisValueFormatter.swift */, | |
| 676 | + D9F69CE3711E81B7C911C71B6EF84960 /* IBarChartDataSet.swift */, | |
| 677 | + 028EE0EE20C21024CC4F98F78927B510 /* IBarLineScatterCandleBubbleChartDataSet.swift */, | |
| 678 | + C6E89C3C1530CCAF9555738FDBEF5F88 /* IBubbleChartDataSet.swift */, | |
| 679 | + 71AD2933E7C37BB550FC8D4DFCEB4C9A /* ICandleChartDataSet.swift */, | |
| 680 | + 5DC3109C246BB2161FE52F39743F8673 /* IChartDataSet.swift */, | |
| 681 | + 0EDCE68220B169A9111964189DCC22B2 /* IFillFormatter.swift */, | |
| 682 | + 1678D27DC1D07AD9AC5B8E2489263A8A /* IHighlighter.swift */, | |
| 683 | + 9472D91AF9C96856C69961D14EAF225F /* ILineChartDataSet.swift */, | |
| 684 | + 068068F826089EE778AF7E22AA705EBA /* ILineRadarChartDataSet.swift */, | |
| 685 | + 594355A261FA3AEE4007B8B6FB04D297 /* ILineScatterCandleRadarChartDataSet.swift */, | |
| 686 | + 7C8078DA068327EB483911185FF7F104 /* IMarker.swift */, | |
| 687 | + A5769E959789D8BF8ED81CC851A5895E /* IndexAxisValueFormatter.swift */, | |
| 688 | + 88D634F67111DFD9CB17017F403CA12E /* IPieChartDataSet.swift */, | |
| 689 | + 9930CA4DC22DBAB090DCEE66565D0625 /* IRadarChartDataSet.swift */, | |
| 690 | + 9C53C59321C46A8BDF25CDA43E65139B /* IScatterChartDataSet.swift */, | |
| 691 | + 8F2BD1FB0A4FC666789A1934825A76F2 /* IShapeRenderer.swift */, | |
| 692 | + DCF14CE30FE9F54B950D6D9D3A9F4F82 /* IValueFormatter.swift */, | |
| 693 | + C91810E33C294D95F285D061229213E2 /* Legend.swift */, | |
| 694 | + C2ECFA96844FE01E5FD00EEE5C20B17A /* LegendEntry.swift */, | |
| 695 | + 5C404EACF02EF248D9774E114A895342 /* LegendRenderer.swift */, | |
| 696 | + F98D41A453753EC9E527D1DDE72DD20D /* LineChartData.swift */, | |
| 697 | + 36C8C9B6F8AB13566FADD5291473CC83 /* LineChartDataProvider.swift */, | |
| 698 | + CA09EEC400F9DF1211E1AFFF9A42107C /* LineChartDataSet.swift */, | |
| 699 | + 3BEFF4AEF432AD6FB924AEDAB34DC1C3 /* LineChartRenderer.swift */, | |
| 700 | + 726D07FB37349EE479079B8F19E86F7E /* LineChartView.swift */, | |
| 701 | + 0F64CAA4005D69EB3A9AD29B61EC756F /* LineRadarChartDataSet.swift */, | |
| 702 | + 18B064857F0CCFFD7949C95A36DF2D35 /* LineRadarRenderer.swift */, | |
| 703 | + E1B5D51B39793079DC3EB31F1DC8766B /* LineScatterCandleRadarChartDataSet.swift */, | |
| 704 | + FD87C0C5CF816F7581DA1F94AC5F3E8B /* LineScatterCandleRadarRenderer.swift */, | |
| 705 | + 6B1EB5A51817DD6B026BE9D2303A351C /* MarkerImage.swift */, | |
| 706 | + 3579A1D3FDFE3E233E703BDAE59B9B8E /* MarkerView.swift */, | |
| 707 | + 4892B467149A123F63E889F86C45615C /* MoveViewJob.swift */, | |
| 708 | + CAD605F0FC96B5107247569FB61D3B00 /* PieChartData.swift */, | |
| 709 | + 631152A3AC05ADDF86DCB783EEA2A58E /* PieChartDataEntry.swift */, | |
| 710 | + 5D071C3CC87D3FC3D3935559DDC12527 /* PieChartDataSet.swift */, | |
| 711 | + D59637356C6D55AC41CF26FAE2442E98 /* PieChartRenderer.swift */, | |
| 712 | + DA85D8983451FAFD14CBF70D3B5122BE /* PieChartView.swift */, | |
| 713 | + 05837CDE0DDFCE8E9FDBA9F08309B8D6 /* PieHighlighter.swift */, | |
| 714 | + 0C6EBF130BE787A55DAB8A0D526E8863 /* PieRadarChartViewBase.swift */, | |
| 715 | + 7693413328F48BC34C775D4E463F2B68 /* PieRadarHighlighter.swift */, | |
| 716 | + EE8108234609A1BAC4C019035DDD11BD /* Platform.swift */, | |
| 717 | + 2281F9BC4E494CBB5E06B23BF1443BEF /* RadarChartData.swift */, | |
| 718 | + B07524E3D056564932D0EB587F4D4E06 /* RadarChartDataEntry.swift */, | |
| 719 | + 24961C1E7CD3F7D8CA8D9BD0BE74A999 /* RadarChartDataSet.swift */, | |
| 720 | + 609D591873E9EE2CD7AC964670FD35A7 /* RadarChartRenderer.swift */, | |
| 721 | + 2D2E154F5158B24BD70B290F51ABBBF1 /* RadarChartView.swift */, | |
| 722 | + A3F77ED20A9F4FFF2DF431C4BDEB7641 /* RadarHighlighter.swift */, | |
| 723 | + 48DE929C18B36567FEA4031D67CFE830 /* Range.swift */, | |
| 724 | + 3A66676172B408ADE052AC8DB16C1805 /* Renderer.swift */, | |
| 725 | + 6B29DD85D54DEC0CF2C829C961EAB07B /* ScatterChartData.swift */, | |
| 726 | + 8EB1BBB340F3AD92D74098D33A2B769C /* ScatterChartDataProvider.swift */, | |
| 727 | + C36B236229A50387413F2BBD2132BB95 /* ScatterChartDataSet.swift */, | |
| 728 | + 103E7280D398CCD64D1E8B63B6A01437 /* ScatterChartRenderer.swift */, | |
| 729 | + 56554648DCA16EB067D39A2FCC30D478 /* ScatterChartView.swift */, | |
| 730 | + 75D2FD5059E2AE03523F87BC54185DCF /* SquareShapeRenderer.swift */, | |
| 731 | + C7218E8D3EAE5BEC73728E73EAAEFDF6 /* Transformer.swift */, | |
| 732 | + 14EADE49B301DF292FA0135764A0C7D6 /* TransformerHorizontalBarChart.swift */, | |
| 733 | + E769211E112E2E14E08FE7181A475B66 /* TriangleShapeRenderer.swift */, | |
| 734 | + 2DD5CBA027E4A0356CCDB4896140C538 /* ViewPortHandler.swift */, | |
| 735 | + 932F9064FAF043930F29947EC1275EA2 /* ViewPortJob.swift */, | |
| 736 | + CE2D1DFB3127DBBA299377DADD352E5E /* XAxis.swift */, | |
| 737 | + 8D511CF669BABFD596964157E6FAF313 /* XAxisRenderer.swift */, | |
| 738 | + 9D668A7B02D2F15230E7E3F63693A3B4 /* XAxisRendererHorizontalBarChart.swift */, | |
| 739 | + B17C205FBE72007883A10512524ADF6B /* XAxisRendererRadarChart.swift */, | |
| 740 | + C5919DCC1541DC8BED1E0048518A8F39 /* XShapeRenderer.swift */, | |
| 741 | + 99908D74E7AFC86B09D22C7F9D507F42 /* YAxis.swift */, | |
| 742 | + E850D610BC5B70AC3FAA3907CAE4E41E /* YAxisRenderer.swift */, | |
| 743 | + 08CECCD43F23EFAA8ED444D6A5884B18 /* YAxisRendererHorizontalBarChart.swift */, | |
| 744 | + CF70D47560A5566290A9EB65DB1FB7A5 /* YAxisRendererRadarChart.swift */, | |
| 745 | + 838B7679E7C44BFB95E6912CA1C4D4E9 /* ZoomViewJob.swift */, | |
| 204 | 746 | ); |
| 205 | - name = Products; | |
| 747 | + name = Core; | |
| 206 | 748 | sourceTree = "<group>"; |
| 207 | 749 | }; |
| 208 | - EF19F22A4DD93880EE97EF0B09AB6306 /* Support Files */ = { | |
| 750 | + CB0E73B8C8865E3B4F67AF9D03C8E9B3 /* MBProgressHUD */ = { | |
| 209 | 751 | isa = PBXGroup; |
| 210 | 752 | children = ( |
| 211 | - 117A771755EBDDE1E3D6D43086B7D59B /* CircleProgressBar.modulemap */, | |
| 212 | - B99F34C32B35C1C2FF3383BF68277269 /* CircleProgressBar.xcconfig */, | |
| 213 | - 68B49BE33D100B749C511DE8B402F376 /* CircleProgressBar-dummy.m */, | |
| 214 | - A91ED1FAC252BBFA13CC0CB521FA14B0 /* CircleProgressBar-prefix.pch */, | |
| 215 | - 68F1CC874FC7F656AD0DC9F2B768808F /* CircleProgressBar-umbrella.h */, | |
| 216 | - F8B3B14A6327E7608B20196C8A319EFE /* Info.plist */, | |
| 753 | + 7ED114EEB1EF08FE7676577CD662A536 /* MBProgressHUD.h */, | |
| 754 | + CE6CC32DC752056F188911CF9124C17C /* MBProgressHUD.m */, | |
| 755 | + 36F93602460FF06EEC1F3840EB7330B8 /* Support Files */, | |
| 217 | 756 | ); |
| 218 | - name = "Support Files"; | |
| 219 | - path = "../Target Support Files/CircleProgressBar"; | |
| 757 | + path = MBProgressHUD; | |
| 220 | 758 | sourceTree = "<group>"; |
| 221 | 759 | }; |
| 222 | 760 | F07ED1172062ECC06C2023637CDD8322 /* Pods-LifeLog */ = { |
| 223 | 761 | |
| 224 | 762 | |
| ... | ... | @@ -249,14 +787,24 @@ |
| 249 | 787 | ); |
| 250 | 788 | runOnlyForDeploymentPostprocessing = 0; |
| 251 | 789 | }; |
| 252 | - 985E9DC6BC691A771B8CBC412AABCBE3 /* Headers */ = { | |
| 790 | + 2FD3D7354021219EC06982ABE8CC56CC /* Headers */ = { | |
| 253 | 791 | isa = PBXHeadersBuildPhase; |
| 254 | 792 | buildActionMask = 2147483647; |
| 255 | 793 | files = ( |
| 256 | - 80C57AC821F5A19CDEB99A4A4AADDD50 /* Pods-LifeLog-umbrella.h in Headers */, | |
| 794 | + A42DE12EDF8AE3D3F79986F91DC07524 /* Pods-LifeLog-umbrella.h in Headers */, | |
| 257 | 795 | ); |
| 258 | 796 | runOnlyForDeploymentPostprocessing = 0; |
| 259 | 797 | }; |
| 798 | + 53B9E2E93B3B28553183246F0777CE4A /* Headers */ = { | |
| 799 | + isa = PBXHeadersBuildPhase; | |
| 800 | + buildActionMask = 2147483647; | |
| 801 | + files = ( | |
| 802 | + D3C7175CCC0F288A68C2EEB5791D1A9C /* Line.h in Headers */, | |
| 803 | + AA25E687CED8BB330E3D8774E5B6D3B5 /* LineKit-umbrella.h in Headers */, | |
| 804 | + 28438DF21EB25EFF8B1EED10BF877A12 /* LKLineActivity.h in Headers */, | |
| 805 | + ); | |
| 806 | + runOnlyForDeploymentPostprocessing = 0; | |
| 807 | + }; | |
| 260 | 808 | F93375054C6557A65ADC289638BB6620 /* Headers */ = { |
| 261 | 809 | isa = PBXHeadersBuildPhase; |
| 262 | 810 | buildActionMask = 2147483647; |
| 263 | 811 | |
| ... | ... | @@ -266,9 +814,38 @@ |
| 266 | 814 | ); |
| 267 | 815 | runOnlyForDeploymentPostprocessing = 0; |
| 268 | 816 | }; |
| 817 | + FF6C50D9CA4607DA8F0FA1AB3E2C4395 /* Headers */ = { | |
| 818 | + isa = PBXHeadersBuildPhase; | |
| 819 | + buildActionMask = 2147483647; | |
| 820 | + files = ( | |
| 821 | + 93CBFD940BD0B22071BCD795A8A6D2BC /* Charts-umbrella.h in Headers */, | |
| 822 | + ); | |
| 823 | + runOnlyForDeploymentPostprocessing = 0; | |
| 824 | + }; | |
| 269 | 825 | /* End PBXHeadersBuildPhase section */ |
| 270 | 826 | |
| 271 | 827 | /* Begin PBXNativeTarget section */ |
| 828 | + 14BE4606CB36677DBA5A1C6537324899 /* Pods-LifeLog */ = { | |
| 829 | + isa = PBXNativeTarget; | |
| 830 | + buildConfigurationList = A39B77F78E2EEF12BCB1D222F92A81A1 /* Build configuration list for PBXNativeTarget "Pods-LifeLog" */; | |
| 831 | + buildPhases = ( | |
| 832 | + 06BA02645B358973D52DA24299EFF676 /* Sources */, | |
| 833 | + 457F058C1E22A9083974CEF812CB2DD6 /* Frameworks */, | |
| 834 | + 2FD3D7354021219EC06982ABE8CC56CC /* Headers */, | |
| 835 | + ); | |
| 836 | + buildRules = ( | |
| 837 | + ); | |
| 838 | + dependencies = ( | |
| 839 | + 159ED75789D56A47EE71D39F30217C13 /* PBXTargetDependency */, | |
| 840 | + CABD815ABFAB9B48F2F0EDF2C60EA710 /* PBXTargetDependency */, | |
| 841 | + 85244A0F20918A49294A06BF8AF8BD4C /* PBXTargetDependency */, | |
| 842 | + 5692FFB010B9756F9F5ACB8F90ABF57B /* PBXTargetDependency */, | |
| 843 | + ); | |
| 844 | + name = "Pods-LifeLog"; | |
| 845 | + productName = "Pods-LifeLog"; | |
| 846 | + productReference = 11AA44540F71CDE0652D25AA568A7679 /* Pods_LifeLog.framework */; | |
| 847 | + productType = "com.apple.product-type.framework"; | |
| 848 | + }; | |
| 272 | 849 | 41FA54D12162DAD51D02FC58A2CD5034 /* MBProgressHUD */ = { |
| 273 | 850 | isa = PBXNativeTarget; |
| 274 | 851 | buildConfigurationList = CC1874913BA1F82C4953C3C7F551AB22 /* Build configuration list for PBXNativeTarget "MBProgressHUD" */; |
| 275 | 852 | |
| 276 | 853 | |
| 277 | 854 | |
| 278 | 855 | |
| 279 | 856 | |
| ... | ... | @@ -283,26 +860,25 @@ |
| 283 | 860 | ); |
| 284 | 861 | name = MBProgressHUD; |
| 285 | 862 | productName = MBProgressHUD; |
| 286 | - productReference = 17392ABF13FACCC6293EB61F41DCC489 /* MBProgressHUD.framework */; | |
| 863 | + productReference = 48E4E5656EF83E24DBCF6971628F66E1 /* MBProgressHUD.framework */; | |
| 287 | 864 | productType = "com.apple.product-type.framework"; |
| 288 | 865 | }; |
| 289 | - 68F298692E9E827DF25BC903C3EA1575 /* Pods-LifeLog */ = { | |
| 866 | + 78F97D6E090369A11417BB9694CBA0B2 /* LineKit */ = { | |
| 290 | 867 | isa = PBXNativeTarget; |
| 291 | - buildConfigurationList = 02B53D7D95CC5D01CEE5579F06DD63FC /* Build configuration list for PBXNativeTarget "Pods-LifeLog" */; | |
| 868 | + buildConfigurationList = ECC98AE96823085FE69B81BB77E1E82E /* Build configuration list for PBXNativeTarget "LineKit" */; | |
| 292 | 869 | buildPhases = ( |
| 293 | - BE6230F705D403628F790517FC49D947 /* Sources */, | |
| 294 | - 3466D02DAABCB0F72C1822B6D79B901F /* Frameworks */, | |
| 295 | - 985E9DC6BC691A771B8CBC412AABCBE3 /* Headers */, | |
| 870 | + 845F469E0F4D8466C85BCDB4593F5EA6 /* Sources */, | |
| 871 | + 62DF2851AAE6E95331CB2D33081AFF35 /* Frameworks */, | |
| 872 | + 53B9E2E93B3B28553183246F0777CE4A /* Headers */, | |
| 873 | + C3D4E9624210D636986EAA9C30933887 /* Resources */, | |
| 296 | 874 | ); |
| 297 | 875 | buildRules = ( |
| 298 | 876 | ); |
| 299 | 877 | dependencies = ( |
| 300 | - 3B990767174CBF825A16442B3578FB94 /* PBXTargetDependency */, | |
| 301 | - 7A18C9FB0F1177C726BCC29DD5637E4B /* PBXTargetDependency */, | |
| 302 | 878 | ); |
| 303 | - name = "Pods-LifeLog"; | |
| 304 | - productName = "Pods-LifeLog"; | |
| 305 | - productReference = 1B3E020BABE5F69A2D00DB7C2A666CA5 /* Pods_LifeLog.framework */; | |
| 879 | + name = LineKit; | |
| 880 | + productName = LineKit; | |
| 881 | + productReference = 00790BF4F1584C9B3FEDB9EA1E81AFFC /* LineKit.framework */; | |
| 306 | 882 | productType = "com.apple.product-type.framework"; |
| 307 | 883 | }; |
| 308 | 884 | B545B48FA0CEE58E0B8D9309EE4CFF7C /* CircleProgressBar */ = { |
| 309 |