Commit b9652d9742522007efc562d2c803b838a7337a11

Authored by yinqiaojuan
1 parent 7714c1d7

修改位置转换

CNLiveLocationManager/Classes/CNLiveLocationManager.m 100755 → 100644
@@ -45,7 +45,7 @@ static CNLiveLocationManager *_manager = nil; @@ -45,7 +45,7 @@ static CNLiveLocationManager *_manager = nil;
45 _locationManager = [[CLLocationManager alloc] init]; 45 _locationManager = [[CLLocationManager alloc] init];
46 _locationManager.delegate = self; 46 _locationManager.delegate = self;
47 _locationManager.desiredAccuracy = kCLLocationAccuracyBest;//精度 47 _locationManager.desiredAccuracy = kCLLocationAccuracyBest;//精度
48 - _locationManager.distanceFilter = 20.0; 48 + _locationManager.distanceFilter = 10.0;
49 49
50 // 兼容iOS8.0版本 50 // 兼容iOS8.0版本
51 /* Info.plist里面加上2项中的一项 51 /* Info.plist里面加上2项中的一项
Example/CNLiveLocationManager.xcodeproj/project.pbxproj
@@ -247,6 +247,9 @@ @@ -247,6 +247,9 @@
247 LastUpgradeCheck = 0720; 247 LastUpgradeCheck = 0720;
248 ORGANIZATIONNAME = "梁星国"; 248 ORGANIZATIONNAME = "梁星国";
249 TargetAttributes = { 249 TargetAttributes = {
  250 + 6003F589195388D20070C39A = {
  251 + DevelopmentTeam = 94X49GG3ZW;
  252 + };
250 6003F5AD195388D20070C39A = { 253 6003F5AD195388D20070C39A = {
251 TestTargetID = 6003F589195388D20070C39A; 254 TestTargetID = 6003F589195388D20070C39A;
252 }; 255 };
@@ -494,6 +497,7 @@ @@ -494,6 +497,7 @@
494 baseConfigurationReference = 7D0659E7FAE30FB1B7DCA6F1 /* Pods-CNLiveLocationManager_Example.debug.xcconfig */; 497 baseConfigurationReference = 7D0659E7FAE30FB1B7DCA6F1 /* Pods-CNLiveLocationManager_Example.debug.xcconfig */;
495 buildSettings = { 498 buildSettings = {
496 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 499 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  500 + DEVELOPMENT_TEAM = 94X49GG3ZW;
497 GCC_PRECOMPILE_PREFIX_HEADER = YES; 501 GCC_PRECOMPILE_PREFIX_HEADER = YES;
498 GCC_PREFIX_HEADER = "CNLiveLocationManager/CNLiveLocationManager-Prefix.pch"; 502 GCC_PREFIX_HEADER = "CNLiveLocationManager/CNLiveLocationManager-Prefix.pch";
499 INFOPLIST_FILE = "CNLiveLocationManager/CNLiveLocationManager-Info.plist"; 503 INFOPLIST_FILE = "CNLiveLocationManager/CNLiveLocationManager-Info.plist";
@@ -510,6 +514,7 @@ @@ -510,6 +514,7 @@
510 baseConfigurationReference = 96A09C8F54C2F0404596DE1A /* Pods-CNLiveLocationManager_Example.release.xcconfig */; 514 baseConfigurationReference = 96A09C8F54C2F0404596DE1A /* Pods-CNLiveLocationManager_Example.release.xcconfig */;
511 buildSettings = { 515 buildSettings = {
512 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 516 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  517 + DEVELOPMENT_TEAM = 94X49GG3ZW;
513 GCC_PRECOMPILE_PREFIX_HEADER = YES; 518 GCC_PRECOMPILE_PREFIX_HEADER = YES;
514 GCC_PREFIX_HEADER = "CNLiveLocationManager/CNLiveLocationManager-Prefix.pch"; 519 GCC_PREFIX_HEADER = "CNLiveLocationManager/CNLiveLocationManager-Prefix.pch";
515 INFOPLIST_FILE = "CNLiveLocationManager/CNLiveLocationManager-Info.plist"; 520 INFOPLIST_FILE = "CNLiveLocationManager/CNLiveLocationManager-Info.plist";
Example/Podfile.lock
@@ -9,7 +9,7 @@ EXTERNAL SOURCES: @@ -9,7 +9,7 @@ EXTERNAL SOURCES:
9 :path: "../" 9 :path: "../"
10 10
11 SPEC CHECKSUMS: 11 SPEC CHECKSUMS:
12 - CNLiveLocationManager: 01d4890311559c656b9d70ab2a3721dff30dc279 12 + CNLiveLocationManager: 8672fde1869c6dc511b6c6d5ca675042f267a9f3
13 13
14 PODFILE CHECKSUM: e106bfd061a488a2727c340eba565db9974cfe55 14 PODFILE CHECKSUM: e106bfd061a488a2727c340eba565db9974cfe55
15 15
Example/Pods/Local Podspecs/CNLiveLocationManager.podspec.json
1 { 1 {
2 "name": "CNLiveLocationManager", 2 "name": "CNLiveLocationManager",
3 "version": "0.1.5", 3 "version": "0.1.5",
4 - "summary": "A short description of CNLiveLocationManager.",  
5 - "description": "TODO: Add long description of the pod here.",  
6 - "homepage": "https://github.com/梁星国/CNLiveLocationManager", 4 + "summary": "系统定位",
  5 + "description": "本地定位",
  6 + "homepage": "http://bj.gitlab.cnlive.com/ios-team/CNLiveLocationManager",
7 "license": { 7 "license": {
8 "type": "MIT", 8 "type": "MIT",
9 "file": "LICENSE" 9 "file": "LICENSE"
@@ -12,11 +12,12 @@ @@ -12,11 +12,12 @@
12 "梁星国": "jyyjkt@qq.com" 12 "梁星国": "jyyjkt@qq.com"
13 }, 13 },
14 "source": { 14 "source": {
15 - "git": "https://github.com/梁星国/CNLiveLocationManager.git", 15 + "git": "http://bj.gitlab.cnlive.com/ios-team/CNLiveLocationManager.git",
16 "tag": "0.1.5" 16 "tag": "0.1.5"
17 }, 17 },
18 "platforms": { 18 "platforms": {
19 - "ios": "8.0" 19 + "ios": "9.0"
20 }, 20 },
  21 + "requires_arc": true,
21 "source_files": "CNLiveLocationManager/Classes/**/*" 22 "source_files": "CNLiveLocationManager/Classes/**/*"
22 } 23 }
Example/Pods/Manifest.lock
@@ -9,7 +9,7 @@ EXTERNAL SOURCES: @@ -9,7 +9,7 @@ EXTERNAL SOURCES:
9 :path: "../" 9 :path: "../"
10 10
11 SPEC CHECKSUMS: 11 SPEC CHECKSUMS:
12 - CNLiveLocationManager: 01d4890311559c656b9d70ab2a3721dff30dc279 12 + CNLiveLocationManager: 8672fde1869c6dc511b6c6d5ca675042f267a9f3
13 13
14 PODFILE CHECKSUM: e106bfd061a488a2727c340eba565db9974cfe55 14 PODFILE CHECKSUM: e106bfd061a488a2727c340eba565db9974cfe55
15 15
Example/Pods/Pods.xcodeproj/project.pbxproj
@@ -9,7 +9,7 @@ @@ -9,7 +9,7 @@
9 /* Begin PBXBuildFile section */ 9 /* Begin PBXBuildFile section */
10 33F79652038E4587D8D2633A097B30D3 /* Pods-CNLiveLocationManager_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 10453B910FC1793F2C8225F074D9AA92 /* Pods-CNLiveLocationManager_Example-dummy.m */; }; 10 33F79652038E4587D8D2633A097B30D3 /* Pods-CNLiveLocationManager_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 10453B910FC1793F2C8225F074D9AA92 /* Pods-CNLiveLocationManager_Example-dummy.m */; };
11 3A2A6F21982B19A4CEE03EB65F4A3420 /* Pods-CNLiveLocationManager_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D6B47EAA6A24976EDB088AF49D18EB0 /* Pods-CNLiveLocationManager_Tests-dummy.m */; }; 11 3A2A6F21982B19A4CEE03EB65F4A3420 /* Pods-CNLiveLocationManager_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D6B47EAA6A24976EDB088AF49D18EB0 /* Pods-CNLiveLocationManager_Tests-dummy.m */; };
12 - 6C142DFF05062D4B724E2FF51D5EC08E /* CNLiveLocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 75027BDCA5C4AB3080A073880C48DF01 /* CNLiveLocationManager.m */; }; 12 + 4E376FB823FE5C23001530E1 /* CNLiveLocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E376FB723FE5C23001530E1 /* CNLiveLocationManager.m */; };
13 7A7D0D4F1B551A9C02AC5877A93A7375 /* CNLiveLocationManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46AF11951A659A9DD5F14D7F49B5523C /* CNLiveLocationManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 13 7A7D0D4F1B551A9C02AC5877A93A7375 /* CNLiveLocationManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46AF11951A659A9DD5F14D7F49B5523C /* CNLiveLocationManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
14 7BFE4318C5A03AD29730AC1D9C4B5022 /* CNLiveLocationManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EC598C9D04B7A19CD5BB3234BCF0F98 /* CNLiveLocationManager-dummy.m */; }; 14 7BFE4318C5A03AD29730AC1D9C4B5022 /* CNLiveLocationManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EC598C9D04B7A19CD5BB3234BCF0F98 /* CNLiveLocationManager-dummy.m */; };
15 85A63E0D435FCF896B2AA95D25D02B3C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 15 85A63E0D435FCF896B2AA95D25D02B3C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; };
@@ -44,30 +44,30 @@ @@ -44,30 +44,30 @@
44 0AD47D7683F9B3BBD30DADF1DC96CEA3 /* CNLiveLocationManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CNLiveLocationManager-Info.plist"; sourceTree = "<group>"; }; 44 0AD47D7683F9B3BBD30DADF1DC96CEA3 /* CNLiveLocationManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CNLiveLocationManager-Info.plist"; sourceTree = "<group>"; };
45 10453B910FC1793F2C8225F074D9AA92 /* Pods-CNLiveLocationManager_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CNLiveLocationManager_Example-dummy.m"; sourceTree = "<group>"; }; 45 10453B910FC1793F2C8225F074D9AA92 /* Pods-CNLiveLocationManager_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CNLiveLocationManager_Example-dummy.m"; sourceTree = "<group>"; };
46 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 46 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
47 - 349476C79BF2D4056765C58F94B6DB5D /* CNLiveLocationManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CNLiveLocationManager.framework; path = CNLiveLocationManager.framework; sourceTree = BUILT_PRODUCTS_DIR; };  
48 - 35ACA9B684990232D4C3867D4B234E79 /* Pods_CNLiveLocationManager_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_CNLiveLocationManager_Example.framework; path = "Pods-CNLiveLocationManager_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; };  
49 - 37135D02482C1538B181B009670CBD09 /* CNLiveLocationManager.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = CNLiveLocationManager.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 47 + 349476C79BF2D4056765C58F94B6DB5D /* CNLiveLocationManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CNLiveLocationManager.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  48 + 35ACA9B684990232D4C3867D4B234E79 /* Pods_CNLiveLocationManager_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CNLiveLocationManager_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  49 + 37135D02482C1538B181B009670CBD09 /* CNLiveLocationManager.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = CNLiveLocationManager.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
50 415643E1684C1080A37C3777301CD71F /* CNLiveLocationManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CNLiveLocationManager-prefix.pch"; sourceTree = "<group>"; }; 50 415643E1684C1080A37C3777301CD71F /* CNLiveLocationManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CNLiveLocationManager-prefix.pch"; sourceTree = "<group>"; };
51 46AF11951A659A9DD5F14D7F49B5523C /* CNLiveLocationManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CNLiveLocationManager-umbrella.h"; sourceTree = "<group>"; }; 51 46AF11951A659A9DD5F14D7F49B5523C /* CNLiveLocationManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CNLiveLocationManager-umbrella.h"; sourceTree = "<group>"; };
  52 + 4E376FB723FE5C23001530E1 /* CNLiveLocationManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CNLiveLocationManager.m; path = CNLiveLocationManager/Classes/CNLiveLocationManager.m; sourceTree = "<group>"; };
52 510FFE3BFA000E362AF4CCA3352F0C1B /* Pods-CNLiveLocationManager_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CNLiveLocationManager_Example-acknowledgements.markdown"; sourceTree = "<group>"; }; 53 510FFE3BFA000E362AF4CCA3352F0C1B /* Pods-CNLiveLocationManager_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CNLiveLocationManager_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
53 53A74EA12140DCA103B1A2B9EEEE06D9 /* CNLiveLocationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CNLiveLocationManager.h; path = CNLiveLocationManager/Classes/CNLiveLocationManager.h; sourceTree = "<group>"; }; 54 53A74EA12140DCA103B1A2B9EEEE06D9 /* CNLiveLocationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CNLiveLocationManager.h; path = CNLiveLocationManager/Classes/CNLiveLocationManager.h; sourceTree = "<group>"; };
54 55620E8E4178F06D716E8020BB885629 /* Pods-CNLiveLocationManager_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CNLiveLocationManager_Tests-umbrella.h"; sourceTree = "<group>"; }; 55 55620E8E4178F06D716E8020BB885629 /* Pods-CNLiveLocationManager_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CNLiveLocationManager_Tests-umbrella.h"; sourceTree = "<group>"; };
55 55CD043040C56DA15F843D083BCD782C /* Pods-CNLiveLocationManager_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveLocationManager_Tests.release.xcconfig"; sourceTree = "<group>"; }; 56 55CD043040C56DA15F843D083BCD782C /* Pods-CNLiveLocationManager_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveLocationManager_Tests.release.xcconfig"; sourceTree = "<group>"; };
56 5824154671CC789CCA6A10816960A547 /* Pods-CNLiveLocationManager_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-CNLiveLocationManager_Example.modulemap"; sourceTree = "<group>"; }; 57 5824154671CC789CCA6A10816960A547 /* Pods-CNLiveLocationManager_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-CNLiveLocationManager_Example.modulemap"; sourceTree = "<group>"; };
57 5D2695B4297B79F3006BE89491DC5420 /* CNLiveLocationManager.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CNLiveLocationManager.xcconfig; sourceTree = "<group>"; }; 58 5D2695B4297B79F3006BE89491DC5420 /* CNLiveLocationManager.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CNLiveLocationManager.xcconfig; sourceTree = "<group>"; };
58 - 6A2CACEE8723EE2A067C72AC64E67917 /* Pods_CNLiveLocationManager_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_CNLiveLocationManager_Tests.framework; path = "Pods-CNLiveLocationManager_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 59 + 6A2CACEE8723EE2A067C72AC64E67917 /* Pods_CNLiveLocationManager_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CNLiveLocationManager_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
59 6D6B47EAA6A24976EDB088AF49D18EB0 /* Pods-CNLiveLocationManager_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CNLiveLocationManager_Tests-dummy.m"; sourceTree = "<group>"; }; 60 6D6B47EAA6A24976EDB088AF49D18EB0 /* Pods-CNLiveLocationManager_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CNLiveLocationManager_Tests-dummy.m"; sourceTree = "<group>"; };
60 6EC598C9D04B7A19CD5BB3234BCF0F98 /* CNLiveLocationManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CNLiveLocationManager-dummy.m"; sourceTree = "<group>"; }; 61 6EC598C9D04B7A19CD5BB3234BCF0F98 /* CNLiveLocationManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CNLiveLocationManager-dummy.m"; sourceTree = "<group>"; };
61 - 75027BDCA5C4AB3080A073880C48DF01 /* CNLiveLocationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CNLiveLocationManager.m; path = CNLiveLocationManager/Classes/CNLiveLocationManager.m; sourceTree = "<group>"; };  
62 7838408115791C334943983F2DD285E2 /* Pods-CNLiveLocationManager_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveLocationManager_Example.debug.xcconfig"; sourceTree = "<group>"; }; 62 7838408115791C334943983F2DD285E2 /* Pods-CNLiveLocationManager_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveLocationManager_Example.debug.xcconfig"; sourceTree = "<group>"; };
63 - 787DF2B4DF7CE9A1C03177E6699A95D4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; 63 + 787DF2B4DF7CE9A1C03177E6699A95D4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
64 7AE3203D42091DD2ECA165C235B37088 /* Pods-CNLiveLocationManager_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CNLiveLocationManager_Tests-acknowledgements.plist"; sourceTree = "<group>"; }; 64 7AE3203D42091DD2ECA165C235B37088 /* Pods-CNLiveLocationManager_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CNLiveLocationManager_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
65 7B27D6353D1783BE8FDD4621F2340C3D /* Pods-CNLiveLocationManager_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CNLiveLocationManager_Example-Info.plist"; sourceTree = "<group>"; }; 65 7B27D6353D1783BE8FDD4621F2340C3D /* Pods-CNLiveLocationManager_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CNLiveLocationManager_Example-Info.plist"; sourceTree = "<group>"; };
66 7DA751274A2AFA7B5207042DDE6184DD /* Pods-CNLiveLocationManager_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLiveLocationManager_Example-frameworks.sh"; sourceTree = "<group>"; }; 66 7DA751274A2AFA7B5207042DDE6184DD /* Pods-CNLiveLocationManager_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLiveLocationManager_Example-frameworks.sh"; sourceTree = "<group>"; };
67 95379C1F935932873A938FC686C25490 /* Pods-CNLiveLocationManager_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CNLiveLocationManager_Example-umbrella.h"; sourceTree = "<group>"; }; 67 95379C1F935932873A938FC686C25490 /* Pods-CNLiveLocationManager_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CNLiveLocationManager_Example-umbrella.h"; sourceTree = "<group>"; };
68 - 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 68 + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
69 AABE7C311A187C4AF32B1E3F1F3A2999 /* Pods-CNLiveLocationManager_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveLocationManager_Tests.debug.xcconfig"; sourceTree = "<group>"; }; 69 AABE7C311A187C4AF32B1E3F1F3A2999 /* Pods-CNLiveLocationManager_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveLocationManager_Tests.debug.xcconfig"; sourceTree = "<group>"; };
70 - D35DD12DBE251AF18A73279C82FA37FB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; 70 + D35DD12DBE251AF18A73279C82FA37FB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
71 F9F630DCA356EDD4A65BD69B482E7F95 /* Pods-CNLiveLocationManager_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveLocationManager_Example.release.xcconfig"; sourceTree = "<group>"; }; 71 F9F630DCA356EDD4A65BD69B482E7F95 /* Pods-CNLiveLocationManager_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveLocationManager_Example.release.xcconfig"; sourceTree = "<group>"; };
72 FC595CC9556726BBE7DC805DB7DF0B18 /* CNLiveLocationManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CNLiveLocationManager.modulemap; sourceTree = "<group>"; }; 72 FC595CC9556726BBE7DC805DB7DF0B18 /* CNLiveLocationManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CNLiveLocationManager.modulemap; sourceTree = "<group>"; };
73 FD4876FA44B4B2DDFBC1BA01F241D315 /* Pods-CNLiveLocationManager_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-CNLiveLocationManager_Tests.modulemap"; sourceTree = "<group>"; }; 73 FD4876FA44B4B2DDFBC1BA01F241D315 /* Pods-CNLiveLocationManager_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-CNLiveLocationManager_Tests.modulemap"; sourceTree = "<group>"; };
@@ -113,7 +113,7 @@ @@ -113,7 +113,7 @@
113 isa = PBXGroup; 113 isa = PBXGroup;
114 children = ( 114 children = (
115 53A74EA12140DCA103B1A2B9EEEE06D9 /* CNLiveLocationManager.h */, 115 53A74EA12140DCA103B1A2B9EEEE06D9 /* CNLiveLocationManager.h */,
116 - 75027BDCA5C4AB3080A073880C48DF01 /* CNLiveLocationManager.m */, 116 + 4E376FB723FE5C23001530E1 /* CNLiveLocationManager.m */,
117 9FFDE6BD6C2B1D044B1C21A250E083FD /* Pod */, 117 9FFDE6BD6C2B1D044B1C21A250E083FD /* Pod */,
118 D3DE156DFBD22DF7552F346EDBFCDFB4 /* Support Files */, 118 D3DE156DFBD22DF7552F346EDBFCDFB4 /* Support Files */,
119 ); 119 );
@@ -378,7 +378,7 @@ @@ -378,7 +378,7 @@
378 buildActionMask = 2147483647; 378 buildActionMask = 2147483647;
379 files = ( 379 files = (
380 7BFE4318C5A03AD29730AC1D9C4B5022 /* CNLiveLocationManager-dummy.m in Sources */, 380 7BFE4318C5A03AD29730AC1D9C4B5022 /* CNLiveLocationManager-dummy.m in Sources */,
381 - 6C142DFF05062D4B724E2FF51D5EC08E /* CNLiveLocationManager.m in Sources */, 381 + 4E376FB823FE5C23001530E1 /* CNLiveLocationManager.m in Sources */,
382 ); 382 );
383 runOnlyForDeploymentPostprocessing = 0; 383 runOnlyForDeploymentPostprocessing = 0;
384 }; 384 };
@@ -408,37 +408,6 @@ @@ -408,37 +408,6 @@
408 /* End PBXTargetDependency section */ 408 /* End PBXTargetDependency section */
409 409
410 /* Begin XCBuildConfiguration section */ 410 /* Begin XCBuildConfiguration section */
411 - 00DEA564DB135DCF22ACF5A5526B1342 /* Debug */ = {  
412 - isa = XCBuildConfiguration;  
413 - baseConfigurationReference = 5D2695B4297B79F3006BE89491DC5420 /* CNLiveLocationManager.xcconfig */;  
414 - buildSettings = {  
415 - CODE_SIGN_IDENTITY = "";  
416 - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";  
417 - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";  
418 - "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";  
419 - CURRENT_PROJECT_VERSION = 1;  
420 - DEFINES_MODULE = YES;  
421 - DYLIB_COMPATIBILITY_VERSION = 1;  
422 - DYLIB_CURRENT_VERSION = 1;  
423 - DYLIB_INSTALL_NAME_BASE = "@rpath";  
424 - GCC_PREFIX_HEADER = "Target Support Files/CNLiveLocationManager/CNLiveLocationManager-prefix.pch";  
425 - INFOPLIST_FILE = "Target Support Files/CNLiveLocationManager/CNLiveLocationManager-Info.plist";  
426 - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";  
427 - IPHONEOS_DEPLOYMENT_TARGET = 8.0;  
428 - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";  
429 - MODULEMAP_FILE = "Target Support Files/CNLiveLocationManager/CNLiveLocationManager.modulemap";  
430 - PRODUCT_MODULE_NAME = CNLiveLocationManager;  
431 - PRODUCT_NAME = CNLiveLocationManager;  
432 - SDKROOT = iphoneos;  
433 - SKIP_INSTALL = YES;  
434 - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";  
435 - SWIFT_VERSION = 4.0;  
436 - TARGETED_DEVICE_FAMILY = "1,2";  
437 - VERSIONING_SYSTEM = "apple-generic";  
438 - VERSION_INFO_PREFIX = "";  
439 - };  
440 - name = Debug;  
441 - };  
442 0D51A95DC2757293C030142E993420CD /* Release */ = { 411 0D51A95DC2757293C030142E993420CD /* Release */ = {
443 isa = XCBuildConfiguration; 412 isa = XCBuildConfiguration;
444 baseConfigurationReference = F9F630DCA356EDD4A65BD69B482E7F95 /* Pods-CNLiveLocationManager_Example.release.xcconfig */; 413 baseConfigurationReference = F9F630DCA356EDD4A65BD69B482E7F95 /* Pods-CNLiveLocationManager_Example.release.xcconfig */;
@@ -592,8 +561,7 @@ @@ -592,8 +561,7 @@
592 MTL_FAST_MATH = YES; 561 MTL_FAST_MATH = YES;
593 PRODUCT_NAME = "$(TARGET_NAME)"; 562 PRODUCT_NAME = "$(TARGET_NAME)";
594 STRIP_INSTALLED_PRODUCT = NO; 563 STRIP_INSTALLED_PRODUCT = NO;
595 - SWIFT_COMPILATION_MODE = wholemodule;  
596 - SWIFT_OPTIMIZATION_LEVEL = "-O"; 564 + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
597 SWIFT_VERSION = 5.0; 565 SWIFT_VERSION = 5.0;
598 SYMROOT = "${SRCROOT}/../build"; 566 SYMROOT = "${SRCROOT}/../build";
599 }; 567 };
@@ -663,7 +631,7 @@ @@ -663,7 +631,7 @@
663 }; 631 };
664 name = Debug; 632 name = Debug;
665 }; 633 };
666 - B370857A5F4D733DDB7F08A300F19D1A /* Release */ = { 634 + C2CFA1673A3E6F0E5AE41C70E103B2C3 /* Debug */ = {
667 isa = XCBuildConfiguration; 635 isa = XCBuildConfiguration;
668 baseConfigurationReference = 5D2695B4297B79F3006BE89491DC5420 /* CNLiveLocationManager.xcconfig */; 636 baseConfigurationReference = 5D2695B4297B79F3006BE89491DC5420 /* CNLiveLocationManager.xcconfig */;
669 buildSettings = { 637 buildSettings = {
@@ -679,7 +647,7 @@ @@ -679,7 +647,7 @@
679 GCC_PREFIX_HEADER = "Target Support Files/CNLiveLocationManager/CNLiveLocationManager-prefix.pch"; 647 GCC_PREFIX_HEADER = "Target Support Files/CNLiveLocationManager/CNLiveLocationManager-prefix.pch";
680 INFOPLIST_FILE = "Target Support Files/CNLiveLocationManager/CNLiveLocationManager-Info.plist"; 648 INFOPLIST_FILE = "Target Support Files/CNLiveLocationManager/CNLiveLocationManager-Info.plist";
681 INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 649 INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
682 - IPHONEOS_DEPLOYMENT_TARGET = 8.0; 650 + IPHONEOS_DEPLOYMENT_TARGET = 9.0;
683 LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 651 LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
684 MODULEMAP_FILE = "Target Support Files/CNLiveLocationManager/CNLiveLocationManager.modulemap"; 652 MODULEMAP_FILE = "Target Support Files/CNLiveLocationManager/CNLiveLocationManager.modulemap";
685 PRODUCT_MODULE_NAME = CNLiveLocationManager; 653 PRODUCT_MODULE_NAME = CNLiveLocationManager;
@@ -689,11 +657,10 @@ @@ -689,11 +657,10 @@
689 SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 657 SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
690 SWIFT_VERSION = 4.0; 658 SWIFT_VERSION = 4.0;
691 TARGETED_DEVICE_FAMILY = "1,2"; 659 TARGETED_DEVICE_FAMILY = "1,2";
692 - VALIDATE_PRODUCT = YES;  
693 VERSIONING_SYSTEM = "apple-generic"; 660 VERSIONING_SYSTEM = "apple-generic";
694 VERSION_INFO_PREFIX = ""; 661 VERSION_INFO_PREFIX = "";
695 }; 662 };
696 - name = Release; 663 + name = Debug;
697 }; 664 };
698 D9458C6A49C2F2B9EDA261CD6A60B60C /* Release */ = { 665 D9458C6A49C2F2B9EDA261CD6A60B60C /* Release */ = {
699 isa = XCBuildConfiguration; 666 isa = XCBuildConfiguration;
@@ -729,6 +696,38 @@ @@ -729,6 +696,38 @@
729 }; 696 };
730 name = Release; 697 name = Release;
731 }; 698 };
  699 + DC1FFF7B3B96501DAC5B2B45FDD84F82 /* Release */ = {
  700 + isa = XCBuildConfiguration;
  701 + baseConfigurationReference = 5D2695B4297B79F3006BE89491DC5420 /* CNLiveLocationManager.xcconfig */;
  702 + buildSettings = {
  703 + CODE_SIGN_IDENTITY = "";
  704 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  705 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  706 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  707 + CURRENT_PROJECT_VERSION = 1;
  708 + DEFINES_MODULE = YES;
  709 + DYLIB_COMPATIBILITY_VERSION = 1;
  710 + DYLIB_CURRENT_VERSION = 1;
  711 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  712 + GCC_PREFIX_HEADER = "Target Support Files/CNLiveLocationManager/CNLiveLocationManager-prefix.pch";
  713 + INFOPLIST_FILE = "Target Support Files/CNLiveLocationManager/CNLiveLocationManager-Info.plist";
  714 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  715 + IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  716 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  717 + MODULEMAP_FILE = "Target Support Files/CNLiveLocationManager/CNLiveLocationManager.modulemap";
  718 + PRODUCT_MODULE_NAME = CNLiveLocationManager;
  719 + PRODUCT_NAME = CNLiveLocationManager;
  720 + SDKROOT = iphoneos;
  721 + SKIP_INSTALL = YES;
  722 + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  723 + SWIFT_VERSION = 4.0;
  724 + TARGETED_DEVICE_FAMILY = "1,2";
  725 + VALIDATE_PRODUCT = YES;
  726 + VERSIONING_SYSTEM = "apple-generic";
  727 + VERSION_INFO_PREFIX = "";
  728 + };
  729 + name = Release;
  730 + };
732 /* End XCBuildConfiguration section */ 731 /* End XCBuildConfiguration section */
733 732
734 /* Begin XCConfigurationList section */ 733 /* Begin XCConfigurationList section */
@@ -762,8 +761,8 @@ @@ -762,8 +761,8 @@
762 9B1ED48B4790480666F63F95206D1BF2 /* Build configuration list for PBXNativeTarget "CNLiveLocationManager" */ = { 761 9B1ED48B4790480666F63F95206D1BF2 /* Build configuration list for PBXNativeTarget "CNLiveLocationManager" */ = {
763 isa = XCConfigurationList; 762 isa = XCConfigurationList;
764 buildConfigurations = ( 763 buildConfigurations = (
765 - 00DEA564DB135DCF22ACF5A5526B1342 /* Debug */,  
766 - B370857A5F4D733DDB7F08A300F19D1A /* Release */, 764 + C2CFA1673A3E6F0E5AE41C70E103B2C3 /* Debug */,
  765 + DC1FFF7B3B96501DAC5B2B45FDD84F82 /* Release */,
767 ); 766 );
768 defaultConfigurationIsVisible = 0; 767 defaultConfigurationIsVisible = 0;
769 defaultConfigurationName = Release; 768 defaultConfigurationName = Release;