Skip to content

Commit 8f71b20

Browse files
committed
Update GraphHopper to 0.8.2
1 parent 2de5431 commit 8f71b20

File tree

6 files changed

+67
-28
lines changed

6 files changed

+67
-28
lines changed

class.list

Lines changed: 36 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -19,26 +19,28 @@ graphhopper/core/src/main/java/com/graphhopper/GHResponse.java
1919
graphhopper/core/src/main/java/com/graphhopper/GraphHopper.java
2020
graphhopper/core/src/main/java/com/graphhopper/GraphHopperAPI.java
2121
graphhopper/core/src/main/java/com/graphhopper/PathWrapper.java
22+
graphhopper/core/src/main/java/com/graphhopper/reader/ConditionalTagInspector.java
2223
graphhopper/core/src/main/java/com/graphhopper/reader/DataReader.java
24+
graphhopper/core/src/main/java/com/graphhopper/reader/dem/AbstractEdgeElevationInterpolator.java
25+
graphhopper/core/src/main/java/com/graphhopper/reader/dem/BridgeElevationInterpolator.java
2326
graphhopper/core/src/main/java/com/graphhopper/reader/dem/CGIARProvider.java
27+
graphhopper/core/src/main/java/com/graphhopper/reader/dem/ElevationInterpolator.java
2428
graphhopper/core/src/main/java/com/graphhopper/reader/dem/ElevationProvider.java
2529
graphhopper/core/src/main/java/com/graphhopper/reader/dem/HeightTile.java
30+
graphhopper/core/src/main/java/com/graphhopper/reader/dem/NodeElevationInterpolator.java
2631
graphhopper/core/src/main/java/com/graphhopper/reader/dem/SRTMProvider.java
32+
graphhopper/core/src/main/java/com/graphhopper/reader/dem/TunnelElevationInterpolator.java
33+
graphhopper/core/src/main/java/com/graphhopper/reader/osm/conditional/ConditionalOSMTagInspector.java
2734
graphhopper/core/src/main/java/com/graphhopper/reader/osm/conditional/ConditionalParser.java
28-
graphhopper/core/src/main/java/com/graphhopper/reader/osm/conditional/ConditionalTagsInspector.java
2935
graphhopper/core/src/main/java/com/graphhopper/reader/osm/conditional/DateRange.java
3036
graphhopper/core/src/main/java/com/graphhopper/reader/osm/conditional/DateRangeParser.java
3137
graphhopper/core/src/main/java/com/graphhopper/reader/osm/conditional/ParsedCalendar.java
3238
graphhopper/core/src/main/java/com/graphhopper/reader/osm/conditional/ValueRange.java
33-
graphhopper/core/src/main/java/com/graphhopper/reader/OSMElement.java
34-
graphhopper/core/src/main/java/com/graphhopper/reader/OSMNode.java
35-
graphhopper/core/src/main/java/com/graphhopper/reader/OSMReader.java
36-
graphhopper/core/src/main/java/com/graphhopper/reader/OSMRelation.java
37-
graphhopper/core/src/main/java/com/graphhopper/reader/OSMTagParser.java
38-
graphhopper/core/src/main/java/com/graphhopper/reader/OSMTurnRelation.java
39-
graphhopper/core/src/main/java/com/graphhopper/reader/OSMWay.java
4039
graphhopper/core/src/main/java/com/graphhopper/reader/PillarInfo.java
41-
graphhopper/core/src/main/java/com/graphhopper/reader/PrinctonReader.java
40+
graphhopper/core/src/main/java/com/graphhopper/reader/ReaderElement.java
41+
graphhopper/core/src/main/java/com/graphhopper/reader/ReaderNode.java
42+
graphhopper/core/src/main/java/com/graphhopper/reader/ReaderRelation.java
43+
graphhopper/core/src/main/java/com/graphhopper/reader/ReaderWay.java
4244
graphhopper/core/src/main/java/com/graphhopper/routing/AbstractBidirAlgo.java
4345
graphhopper/core/src/main/java/com/graphhopper/routing/AbstractRoutingAlgorithm.java
4446
graphhopper/core/src/main/java/com/graphhopper/routing/AlgorithmOptions.java
@@ -61,32 +63,29 @@ graphhopper/core/src/main/java/com/graphhopper/routing/RoutingAlgorithm.java
6163
graphhopper/core/src/main/java/com/graphhopper/routing/RoutingAlgorithmFactory.java
6264
graphhopper/core/src/main/java/com/graphhopper/routing/RoutingAlgorithmFactoryDecorator.java
6365
graphhopper/core/src/main/java/com/graphhopper/routing/RoutingAlgorithmFactorySimple.java
66+
graphhopper/core/src/main/java/com/graphhopper/routing/subnetwork/PrepareRoutingSubnetworks.java
67+
graphhopper/core/src/main/java/com/graphhopper/routing/subnetwork/TarjansSCCAlgorithm.java
6468
graphhopper/core/src/main/java/com/graphhopper/routing/template/AbstractRoutingTemplate.java
6569
graphhopper/core/src/main/java/com/graphhopper/routing/template/AlternativeRoutingTemplate.java
6670
graphhopper/core/src/main/java/com/graphhopper/routing/template/RoundTripRoutingTemplate.java
6771
graphhopper/core/src/main/java/com/graphhopper/routing/template/RoutingTemplate.java
6872
graphhopper/core/src/main/java/com/graphhopper/routing/template/ViaRoutingTemplate.java
69-
graphhopper/core/src/main/java/com/graphhopper/routing/util/AbstractAdjustedWeighting.java
7073
graphhopper/core/src/main/java/com/graphhopper/routing/util/AbstractAlgoPreparation.java
7174
graphhopper/core/src/main/java/com/graphhopper/routing/util/AbstractFlagEncoder.java
72-
graphhopper/core/src/main/java/com/graphhopper/routing/util/AbstractWeighting.java
7375
graphhopper/core/src/main/java/com/graphhopper/routing/util/AllCHEdgesIterator.java
7476
graphhopper/core/src/main/java/com/graphhopper/routing/util/AllEdgesIterator.java
75-
graphhopper/core/src/main/java/com/graphhopper/routing/util/AvoidEdgesWeighting.java
76-
graphhopper/core/src/main/java/com/graphhopper/routing/util/BeelineWeightApproximator.java
7777
graphhopper/core/src/main/java/com/graphhopper/routing/util/Bike2WeightFlagEncoder.java
7878
graphhopper/core/src/main/java/com/graphhopper/routing/util/BikeCommonFlagEncoder.java
7979
graphhopper/core/src/main/java/com/graphhopper/routing/util/BikeFlagEncoder.java
80+
graphhopper/core/src/main/java/com/graphhopper/routing/util/Car4WDFlagEncoder.java
8081
graphhopper/core/src/main/java/com/graphhopper/routing/util/CarFlagEncoder.java
81-
graphhopper/core/src/main/java/com/graphhopper/routing/util/ConsistentWeightApproximator.java
82-
graphhopper/core/src/main/java/com/graphhopper/routing/util/CurvatureWeighting.java
82+
graphhopper/core/src/main/java/com/graphhopper/routing/util/DataFlagEncoder.java
8383
graphhopper/core/src/main/java/com/graphhopper/routing/util/DefaultEdgeFilter.java
8484
graphhopper/core/src/main/java/com/graphhopper/routing/util/DefaultFlagEncoderFactory.java
8585
graphhopper/core/src/main/java/com/graphhopper/routing/util/EdgeFilter.java
8686
graphhopper/core/src/main/java/com/graphhopper/routing/util/EncodedDoubleValue.java
8787
graphhopper/core/src/main/java/com/graphhopper/routing/util/EncodedValue.java
8888
graphhopper/core/src/main/java/com/graphhopper/routing/util/EncodingManager.java
89-
graphhopper/core/src/main/java/com/graphhopper/routing/util/FastestWeighting.java
9089
graphhopper/core/src/main/java/com/graphhopper/routing/util/FlagEncoder.java
9190
graphhopper/core/src/main/java/com/graphhopper/routing/util/FlagEncoderFactory.java
9291
graphhopper/core/src/main/java/com/graphhopper/routing/util/FootFlagEncoder.java
@@ -95,23 +94,30 @@ graphhopper/core/src/main/java/com/graphhopper/routing/util/HintsMap.java
9594
graphhopper/core/src/main/java/com/graphhopper/routing/util/LevelEdgeFilter.java
9695
graphhopper/core/src/main/java/com/graphhopper/routing/util/MotorcycleFlagEncoder.java
9796
graphhopper/core/src/main/java/com/graphhopper/routing/util/MountainBikeFlagEncoder.java
98-
graphhopper/core/src/main/java/com/graphhopper/routing/util/PrepareRoutingSubnetworks.java
9997
graphhopper/core/src/main/java/com/graphhopper/routing/util/PriorityCode.java
100-
graphhopper/core/src/main/java/com/graphhopper/routing/util/PriorityWeighting.java
10198
graphhopper/core/src/main/java/com/graphhopper/routing/util/RacingBikeFlagEncoder.java
102-
graphhopper/core/src/main/java/com/graphhopper/routing/util/ShortestWeighting.java
103-
graphhopper/core/src/main/java/com/graphhopper/routing/util/TarjansSCCAlgorithm.java
10499
graphhopper/core/src/main/java/com/graphhopper/routing/util/TestAlgoCollector.java
105100
graphhopper/core/src/main/java/com/graphhopper/routing/util/tour/MultiPointTour.java
106101
graphhopper/core/src/main/java/com/graphhopper/routing/util/tour/SinglePointTour.java
107102
graphhopper/core/src/main/java/com/graphhopper/routing/util/tour/TourStrategy.java
108103
graphhopper/core/src/main/java/com/graphhopper/routing/util/TraversalMode.java
109104
graphhopper/core/src/main/java/com/graphhopper/routing/util/TurnCostEncoder.java
110-
graphhopper/core/src/main/java/com/graphhopper/routing/util/TurnWeighting.java
111-
graphhopper/core/src/main/java/com/graphhopper/routing/util/WeightApproximator.java
112-
graphhopper/core/src/main/java/com/graphhopper/routing/util/Weighting.java
113105
graphhopper/core/src/main/java/com/graphhopper/routing/VirtualEdgeIterator.java
114106
graphhopper/core/src/main/java/com/graphhopper/routing/VirtualEdgeIteratorState.java
107+
graphhopper/core/src/main/java/com/graphhopper/routing/weighting/AbstractAdjustedWeighting.java
108+
graphhopper/core/src/main/java/com/graphhopper/routing/weighting/AbstractWeighting.java
109+
graphhopper/core/src/main/java/com/graphhopper/routing/weighting/AvoidEdgesWeighting.java
110+
graphhopper/core/src/main/java/com/graphhopper/routing/weighting/BeelineWeightApproximator.java
111+
graphhopper/core/src/main/java/com/graphhopper/routing/weighting/ConsistentWeightApproximator.java
112+
graphhopper/core/src/main/java/com/graphhopper/routing/weighting/CurvatureWeighting.java
113+
graphhopper/core/src/main/java/com/graphhopper/routing/weighting/FastestWeighting.java
114+
graphhopper/core/src/main/java/com/graphhopper/routing/weighting/GenericWeighting.java
115+
graphhopper/core/src/main/java/com/graphhopper/routing/weighting/PriorityWeighting.java
116+
graphhopper/core/src/main/java/com/graphhopper/routing/weighting/ShortestWeighting.java
117+
graphhopper/core/src/main/java/com/graphhopper/routing/weighting/ShortFastestWeighting.java
118+
graphhopper/core/src/main/java/com/graphhopper/routing/weighting/TurnWeighting.java
119+
graphhopper/core/src/main/java/com/graphhopper/routing/weighting/WeightApproximator.java
120+
graphhopper/core/src/main/java/com/graphhopper/routing/weighting/Weighting.java
115121
graphhopper/core/src/main/java/com/graphhopper/search/Geocoding.java
116122
graphhopper/core/src/main/java/com/graphhopper/search/NameIndex.java
117123
graphhopper/core/src/main/java/com/graphhopper/search/ReverseGeocoding.java
@@ -166,6 +172,7 @@ graphhopper/core/src/main/java/com/graphhopper/util/CHEdgeExplorer.java
166172
graphhopper/core/src/main/java/com/graphhopper/util/CHEdgeIterator.java
167173
graphhopper/core/src/main/java/com/graphhopper/util/CHEdgeIteratorState.java
168174
graphhopper/core/src/main/java/com/graphhopper/util/CmdArgs.java
175+
graphhopper/core/src/main/java/com/graphhopper/util/ConfigMap.java
169176
graphhopper/core/src/main/java/com/graphhopper/util/Constants.java
170177
graphhopper/core/src/main/java/com/graphhopper/util/DepthFirstSearch.java
171178
graphhopper/core/src/main/java/com/graphhopper/util/DistanceCalc.java
@@ -178,6 +185,12 @@ graphhopper/core/src/main/java/com/graphhopper/util/Downloader.java
178185
graphhopper/core/src/main/java/com/graphhopper/util/EdgeExplorer.java
179186
graphhopper/core/src/main/java/com/graphhopper/util/EdgeIterator.java
180187
graphhopper/core/src/main/java/com/graphhopper/util/EdgeIteratorState.java
188+
graphhopper/core/src/main/java/com/graphhopper/util/exceptions/ConnectionNotFoundException.java
189+
graphhopper/core/src/main/java/com/graphhopper/util/exceptions/DetailedIllegalArgumentException.java
190+
graphhopper/core/src/main/java/com/graphhopper/util/exceptions/DetailedRuntimeException.java
191+
graphhopper/core/src/main/java/com/graphhopper/util/exceptions/GHException.java
192+
graphhopper/core/src/main/java/com/graphhopper/util/exceptions/PointNotFoundException.java
193+
graphhopper/core/src/main/java/com/graphhopper/util/exceptions/PointOutOfBoundsException.java
181194
graphhopper/core/src/main/java/com/graphhopper/util/FinishInstruction.java
182195
graphhopper/core/src/main/java/com/graphhopper/util/GHUtility.java
183196
graphhopper/core/src/main/java/com/graphhopper/util/GPXEntry.java

graphhopper

Submodule graphhopper updated 580 files

graphhopper-ios-sample/graphhopper-ios-sample.xcodeproj/project.pbxproj

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
/* Begin PBXBuildFile section */
1010
5B899A891C5A35900056E6AD /* fr_CH.txt in Resources */ = {isa = PBXBuildFile; fileRef = 5B899A871C5A35900056E6AD /* fr_CH.txt */; };
1111
5B899A8A1C5A35900056E6AD /* fr_FR.txt in Resources */ = {isa = PBXBuildFile; fileRef = 5B899A881C5A35900056E6AD /* fr_FR.txt */; };
12+
FA372D1C1DC721810098CEA3 /* ko.txt in Resources */ = {isa = PBXBuildFile; fileRef = FA372D1B1DC721810098CEA3 /* ko.txt */; };
13+
FA372D1E1DC721A60098CEA3 /* zh_HK.txt in Resources */ = {isa = PBXBuildFile; fileRef = FA372D1D1DC721A60098CEA3 /* zh_HK.txt */; };
1214
FA4967201D0F1D1A00D9FBEC /* hr_HR.txt in Resources */ = {isa = PBXBuildFile; fileRef = FA49671F1D0F1D1900D9FBEC /* hr_HR.txt */; };
1315
FA59C1761AADB8AB0093F77B /* libicucore.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = FA59C1751AADB8AB0093F77B /* libicucore.dylib */; };
1416
FA59C1AD1AADD1950093F77B /* fi.txt in Resources */ = {isa = PBXBuildFile; fileRef = FA59C1AC1AADD1950093F77B /* fi.txt */; };
@@ -88,6 +90,8 @@
8890
/* Begin PBXFileReference section */
8991
5B899A871C5A35900056E6AD /* fr_CH.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = fr_CH.txt; path = build/translations/fr_CH.txt; sourceTree = "<group>"; };
9092
5B899A881C5A35900056E6AD /* fr_FR.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = fr_FR.txt; path = build/translations/fr_FR.txt; sourceTree = "<group>"; };
93+
FA372D1B1DC721810098CEA3 /* ko.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = ko.txt; path = build/translations/ko.txt; sourceTree = "<group>"; };
94+
FA372D1D1DC721A60098CEA3 /* zh_HK.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = zh_HK.txt; path = build/translations/zh_HK.txt; sourceTree = "<group>"; };
9195
FA49671F1D0F1D1900D9FBEC /* hr_HR.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = hr_HR.txt; path = build/translations/hr_HR.txt; sourceTree = "<group>"; };
9296
FA59C1751AADB8AB0093F77B /* libicucore.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libicucore.dylib; path = usr/lib/libicucore.dylib; sourceTree = SDKROOT; };
9397
FA59C1AC1AADD1950093F77B /* fi.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = fi.txt; path = build/translations/fi.txt; sourceTree = "<group>"; };
@@ -319,6 +323,7 @@
319323
FA8E47311BFE9DBE0037B46C /* hu_HU.txt */,
320324
FAFEF89A1A0BE988002C11A3 /* it.txt */,
321325
FAFEF89B1A0BE988002C11A3 /* ja.txt */,
326+
FA372D1B1DC721810098CEA3 /* ko.txt */,
322327
FA8E47341BFE9DCB0037B46C /* lt_LT.txt */,
323328
FA59C1AE1AADD1B50093F77B /* ne.txt */,
324329
FAFEF89C1A0BE988002C11A3 /* nl.txt */,
@@ -334,6 +339,7 @@
334339
FAFEF8A51A0BE988002C11A3 /* uk.txt */,
335340
FA59C1B01AADD1D20093F77B /* vi_VI.txt */,
336341
FA59C1B11AADD1D20093F77B /* zh_CN.txt */,
342+
FA372D1D1DC721A60098CEA3 /* zh_HK.txt */,
337343
);
338344
name = Translations;
339345
path = ..;
@@ -403,7 +409,7 @@
403409
FABCD8C81A0A61430013FB88 /* Project object */ = {
404410
isa = PBXProject;
405411
attributes = {
406-
LastUpgradeCheck = 0610;
412+
LastUpgradeCheck = 0800;
407413
ORGANIZATIONNAME = "Calin Seciu";
408414
TargetAttributes = {
409415
FABCD8CF1A0A61430013FB88 = {
@@ -484,7 +490,9 @@
484490
FAFEF8B41A0BE988002C11A3 /* pt_BR.txt in Resources */,
485491
FA8E47321BFE9DBE0037B46C /* hsb.txt in Resources */,
486492
FA8E47291BFE9D770037B46C /* ast.txt in Resources */,
493+
FA372D1C1DC721810098CEA3 /* ko.txt in Resources */,
487494
FAFEF8A81A0BE988002C11A3 /* ca.txt in Resources */,
495+
FA372D1E1DC721A60098CEA3 /* zh_HK.txt in Resources */,
488496
FABCD8E41A0A61430013FB88 /* LaunchScreen.xib in Resources */,
489497
5B899A891C5A35900056E6AD /* fr_CH.txt in Resources */,
490498
FABCD8E11A0A61430013FB88 /* Images.xcassets in Resources */,
@@ -587,15 +595,19 @@
587595
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
588596
CLANG_WARN_EMPTY_BODY = YES;
589597
CLANG_WARN_ENUM_CONVERSION = YES;
598+
CLANG_WARN_INFINITE_RECURSION = YES;
590599
CLANG_WARN_INT_CONVERSION = YES;
591600
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
601+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
592602
CLANG_WARN_UNREACHABLE_CODE = YES;
593603
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
594604
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
595605
COPY_PHASE_STRIP = NO;
596606
ENABLE_STRICT_OBJC_MSGSEND = YES;
607+
ENABLE_TESTABILITY = YES;
597608
GCC_C_LANGUAGE_STANDARD = gnu99;
598609
GCC_DYNAMIC_NO_PIC = NO;
610+
GCC_NO_COMMON_BLOCKS = YES;
599611
GCC_OPTIMIZATION_LEVEL = 0;
600612
GCC_PREPROCESSOR_DEFINITIONS = (
601613
"DEBUG=1",
@@ -629,15 +641,18 @@
629641
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
630642
CLANG_WARN_EMPTY_BODY = YES;
631643
CLANG_WARN_ENUM_CONVERSION = YES;
644+
CLANG_WARN_INFINITE_RECURSION = YES;
632645
CLANG_WARN_INT_CONVERSION = YES;
633646
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
647+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
634648
CLANG_WARN_UNREACHABLE_CODE = YES;
635649
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
636650
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
637651
COPY_PHASE_STRIP = YES;
638652
ENABLE_NS_ASSERTIONS = NO;
639653
ENABLE_STRICT_OBJC_MSGSEND = YES;
640654
GCC_C_LANGUAGE_STANDARD = gnu99;
655+
GCC_NO_COMMON_BLOCKS = YES;
641656
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
642657
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
643658
GCC_WARN_UNDECLARED_SELECTOR = YES;
@@ -670,6 +685,7 @@
670685
"$(PROJECT_DIR)/../build",
671686
);
672687
OTHER_LDFLAGS = "-ObjC";
688+
PRODUCT_BUNDLE_IDENTIFIER = "com.graphhopper.$(PRODUCT_NAME:rfc1034identifier)";
673689
PRODUCT_NAME = "$(TARGET_NAME)";
674690
PROVISIONING_PROFILE = "";
675691
USER_HEADER_SEARCH_PATHS = "$(PROJECT_DIR)/../j2objc/include $(PROJECT_DIR)/../src";
@@ -694,6 +710,7 @@
694710
"$(PROJECT_DIR)/../build",
695711
);
696712
OTHER_LDFLAGS = "-ObjC";
713+
PRODUCT_BUNDLE_IDENTIFIER = "com.graphhopper.$(PRODUCT_NAME:rfc1034identifier)";
697714
PRODUCT_NAME = "$(TARGET_NAME)";
698715
PROVISIONING_PROFILE = "";
699716
USER_HEADER_SEARCH_PATHS = "$(PROJECT_DIR)/../j2objc/include $(PROJECT_DIR)/../src";
@@ -714,6 +731,7 @@
714731
);
715732
INFOPLIST_FILE = "graphhopper-ios-sampleTests/Info.plist";
716733
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
734+
PRODUCT_BUNDLE_IDENTIFIER = "com.graphhopper.$(PRODUCT_NAME:rfc1034identifier)";
717735
PRODUCT_NAME = "$(TARGET_NAME)";
718736
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/graphhopper-ios-sample.app/graphhopper-ios-sample";
719737
};
@@ -729,6 +747,7 @@
729747
);
730748
INFOPLIST_FILE = "graphhopper-ios-sampleTests/Info.plist";
731749
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
750+
PRODUCT_BUNDLE_IDENTIFIER = "com.graphhopper.$(PRODUCT_NAME:rfc1034identifier)";
732751
PRODUCT_NAME = "$(TARGET_NAME)";
733752
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/graphhopper-ios-sample.app/graphhopper-ios-sample";
734753
};

graphhopper-ios-sample/graphhopper-ios-sample/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<key>CFBundleExecutable</key>
88
<string>$(EXECUTABLE_NAME)</string>
99
<key>CFBundleIdentifier</key>
10-
<string>com.graphhopper.$(PRODUCT_NAME:rfc1034identifier)</string>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
1111
<key>CFBundleInfoDictionaryVersion</key>
1212
<string>6.0</string>
1313
<key>CFBundleName</key>

graphhopper-ios-sample/graphhopper-ios-sampleTests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<key>CFBundleExecutable</key>
88
<string>$(EXECUTABLE_NAME)</string>
99
<key>CFBundleIdentifier</key>
10-
<string>com.graphhopper.$(PRODUCT_NAME:rfc1034identifier)</string>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
1111
<key>CFBundleInfoDictionaryVersion</key>
1212
<string>6.0</string>
1313
<key>CFBundleName</key>

0 commit comments

Comments
 (0)