react-native-maps 2.0.0-beta.4 → 2.0.0-beta.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +32 -5
- package/android/src/main/java/com/rnmaps/maps/MapCalloutManager.java +1 -1
- package/android/src/main/java/com/rnmaps/maps/MapCircleManager.java +1 -1
- package/android/src/main/java/com/rnmaps/maps/MapGradientPolyline.java +4 -4
- package/android/src/main/java/com/rnmaps/maps/MapGradientPolylineManager.java +1 -1
- package/android/src/main/java/com/rnmaps/maps/MapHeatmapManager.java +1 -1
- package/android/src/main/java/com/rnmaps/maps/MapLiteManager.java +1 -1
- package/android/src/main/java/com/rnmaps/maps/MapLocalTile.java +4 -4
- package/android/src/main/java/com/rnmaps/maps/MapLocalTileManager.java +1 -1
- package/android/src/main/java/com/rnmaps/maps/MapManager.java +1 -1
- package/android/src/main/java/com/rnmaps/maps/MapMarker.java +2 -2
- package/android/src/main/java/com/rnmaps/maps/MapMarkerManager.java +10 -27
- package/android/src/main/java/com/rnmaps/maps/MapOverlayManager.java +1 -1
- package/android/src/main/java/com/rnmaps/maps/MapPolygonManager.java +1 -1
- package/android/src/main/java/com/rnmaps/maps/MapPolylineManager.java +1 -1
- package/android/src/main/java/com/rnmaps/maps/MapTileProvider.java +4 -4
- package/android/src/main/java/com/rnmaps/maps/MapUrlTileManager.java +1 -1
- package/android/src/main/java/com/rnmaps/maps/MapView.java +9 -9
- package/android/src/main/java/com/rnmaps/maps/{MapModule.java → MapViewModule.java} +18 -18
- package/android/src/main/java/com/rnmaps/maps/MapWMSTile.java +6 -6
- package/android/src/main/java/com/rnmaps/maps/MapWMSTileManager.java +1 -1
- package/android/src/main/java/com/rnmaps/maps/MapsPackage.java +1 -1
- package/android/src/main/java/com/rnmaps/maps/SizeReportingShadowNode.java +1 -1
- package/ios/{AirGoogleMaps/AIRDummyView.h → GoogleMaps/RNMDummyView.h} +3 -3
- package/ios/{AirGoogleMaps/AIRDummyView.m → GoogleMaps/RNMDummyView.m} +4 -4
- package/ios/{AirGoogleMaps/AIRGMSMarker.h → GoogleMaps/RNMGMSMarker.h} +6 -6
- package/ios/{AirGoogleMaps/AIRGMSMarker.m → GoogleMaps/RNMGMSMarker.m} +4 -4
- package/ios/{AirGoogleMaps/AIRGMSPolygon.h → GoogleMaps/RNMGMSPolygon.h} +4 -4
- package/ios/{AirGoogleMaps/AIRGMSPolygon.m → GoogleMaps/RNMGMSPolygon.m} +4 -4
- package/ios/{AirGoogleMaps/AIRGMSPolyline.h → GoogleMaps/RNMGMSPolyline.h} +4 -4
- package/ios/{AirGoogleMaps/AIRGMSPolyline.m → GoogleMaps/RNMGMSPolyline.m} +4 -4
- package/ios/{AirGoogleMaps/AIRGoogleMap.h → GoogleMaps/RNMGoogleMap.h} +5 -5
- package/ios/{AirGoogleMaps/AIRGoogleMap.m → GoogleMaps/RNMGoogleMap.m} +77 -77
- package/ios/{AirGoogleMaps/AIRGoogleMapCallout.h → GoogleMaps/RNMGoogleMapCallout.h} +3 -3
- package/ios/{AirGoogleMaps/AIRGoogleMapCallout.m → GoogleMaps/RNMGoogleMapCallout.m} +4 -4
- package/ios/{AirGoogleMaps/AIRGoogleMapCalloutManager.h → GoogleMaps/RNMGoogleMapCalloutManager.h} +3 -3
- package/ios/{AirGoogleMaps/AIRGoogleMapCalloutManager.m → GoogleMaps/RNMGoogleMapCalloutManager.m} +7 -7
- package/ios/{AirGoogleMaps/AIRGoogleMapCalloutSubview.h → GoogleMaps/RNMGoogleMapCalloutSubview.h} +3 -3
- package/ios/{AirGoogleMaps/AIRGoogleMapCalloutSubview.m → GoogleMaps/RNMGoogleMapCalloutSubview.m} +4 -4
- package/ios/{AirGoogleMaps/AIRGoogleMapCalloutSubviewManager.h → GoogleMaps/RNMGoogleMapCalloutSubviewManager.h} +3 -3
- package/ios/GoogleMaps/RNMGoogleMapCalloutSubviewManager.m +28 -0
- package/ios/{AirGoogleMaps/AIRGoogleMapCircle.h → GoogleMaps/RNMGoogleMapCircle.h} +3 -3
- package/ios/{AirGoogleMaps/AIRGoogleMapCircle.m → GoogleMaps/RNMGoogleMapCircle.m} +3 -3
- package/ios/{AirGoogleMaps/AIRGoogleMapCircleManager.h → GoogleMaps/RNMGoogleMapCircleManager.h} +2 -2
- package/ios/{AirGoogleMaps/AIRGoogleMapCircleManager.m → GoogleMaps/RNMGoogleMapCircleManager.m} +7 -7
- package/ios/{AirGoogleMaps/AIRGoogleMapHeatmap.h → GoogleMaps/RNMGoogleMapHeatmap.h} +3 -3
- package/ios/{AirGoogleMaps/AIRGoogleMapHeatmap.m → GoogleMaps/RNMGoogleMapHeatmap.m} +4 -4
- package/ios/GoogleMaps/RNMGoogleMapHeatmapManager.h +11 -0
- package/ios/{AirGoogleMaps/AIRGoogleMapHeatmapManager.m → GoogleMaps/RNMGoogleMapHeatmapManager.m} +9 -9
- package/ios/{AirGoogleMaps/AIRGoogleMapManager.h → GoogleMaps/RNMGoogleMapManager.h} +3 -3
- package/ios/{AirGoogleMaps/AIRGoogleMapManager.m → GoogleMaps/RNMGoogleMapManager.m} +63 -229
- package/ios/{AirGoogleMaps/AIRGoogleMapMarker.h → GoogleMaps/RNMGoogleMapMarker.h} +15 -15
- package/ios/{AirGoogleMaps/AIRGoogleMapMarker.m → GoogleMaps/RNMGoogleMapMarker.m} +23 -23
- package/ios/{AirGoogleMaps/AIRGoogleMapMarkerManager.h → GoogleMaps/RNMGoogleMapMarkerManager.h} +3 -3
- package/ios/{AirGoogleMaps/AIRGoogleMapMarkerManager.m → GoogleMaps/RNMGoogleMapMarkerManager.m} +20 -20
- package/ios/{AirGoogleMaps/AIRGoogleMapOverlay.h → GoogleMaps/RNMGoogleMapOverlay.h} +4 -4
- package/ios/{AirGoogleMaps/AIRGoogleMapOverlay.m → GoogleMaps/RNMGoogleMapOverlay.m} +4 -4
- package/ios/{AirGoogleMaps/AIRGoogleMapOverlayManager.h → GoogleMaps/RNMGoogleMapOverlayManager.h} +2 -2
- package/ios/{AirGoogleMaps/AIRGoogleMapOverlayManager.m → GoogleMaps/RNMGoogleMapOverlayManager.m} +6 -6
- package/ios/{AirGoogleMaps/AIRGoogleMapPolygon.h → GoogleMaps/RNMGoogleMapPolygon.h} +7 -7
- package/ios/{AirGoogleMaps/AIRGoogleMapPolygon.m → GoogleMaps/RNMGoogleMapPolygon.m} +7 -7
- package/ios/{AirGoogleMaps/AIRGoogleMapPolylineManager.h → GoogleMaps/RNMGoogleMapPolygonManager.h} +2 -2
- package/ios/{AirGoogleMaps/AIRGoogleMapPolygonManager.m → GoogleMaps/RNMGoogleMapPolygonManager.m} +10 -10
- package/ios/{AirGoogleMaps/AIRGoogleMapPolyline.h → GoogleMaps/RNMGoogleMapPolyline.h} +7 -7
- package/ios/{AirGoogleMaps/AIRGoogleMapPolyline.m → GoogleMaps/RNMGoogleMapPolyline.m} +9 -9
- package/ios/{AirGoogleMaps/AIRGoogleMapPolygonManager.h → GoogleMaps/RNMGoogleMapPolylineManager.h} +2 -2
- package/ios/{AirGoogleMaps/AIRGoogleMapPolylineManager.m → GoogleMaps/RNMGoogleMapPolylineManager.m} +9 -9
- package/ios/{AirGoogleMaps/AIRGoogleMapUrlTile.h → GoogleMaps/RNMGoogleMapUrlTile.h} +2 -2
- package/ios/{AirGoogleMaps/AIRGoogleMapUrlTile.m → GoogleMaps/RNMGoogleMapUrlTile.m} +3 -3
- package/ios/{AirGoogleMaps/AIRGoogleMapUrlTileManager.h → GoogleMaps/RNMGoogleMapUrlTileManager.h} +2 -2
- package/ios/{AirGoogleMaps/AIRGoogleMapURLTileManager.m → GoogleMaps/RNMGoogleMapUrlTileManager.m} +7 -7
- package/ios/GoogleMaps/RNMGoogleMapViewModule.h +5 -0
- package/ios/GoogleMaps/RNMGoogleMapViewModule.m +183 -0
- package/ios/{AirGoogleMaps/AIRGoogleMapWMSTile.h → GoogleMaps/RNMGoogleMapWMSTile.h} +3 -3
- package/ios/{AirGoogleMaps/AIRGoogleMapWMSTile.m → GoogleMaps/RNMGoogleMapWMSTile.m} +4 -4
- package/ios/{AirGoogleMaps/AIRGoogleMapWMSTileManager.h → GoogleMaps/RNMGoogleMapWMSTileManager.h} +3 -3
- package/ios/{AirGoogleMaps/AIRGoogleMapWMSTileManager.m → GoogleMaps/RNMGoogleMapWMSTileManager.m} +8 -8
- package/ios/{AirMaps → Maps}/Callout/SMCalloutView.h +4 -4
- package/ios/{AirMaps/RCTConvert+AirMap.h → Maps/RCTConvert+RNMMap.h} +1 -1
- package/ios/{AirMaps/RCTConvert+AirMap.m → Maps/RCTConvert+RNMMap.m} +8 -8
- package/ios/{AirMaps/AIRMap.h → Maps/RNMMap.h} +8 -8
- package/ios/{AirMaps/AIRMap.m → Maps/RNMMap.m} +56 -56
- package/ios/{AirMaps/AIRMapCallout.h → Maps/RNMMapCallout.h} +1 -1
- package/ios/{AirMaps/AIRMapCallout.m → Maps/RNMMapCallout.m} +2 -2
- package/ios/{AirMaps/AIRMapCircleManager.h → Maps/RNMMapCalloutManager.h} +2 -2
- package/ios/{AirMaps/AIRMapCalloutManager.m → Maps/RNMMapCalloutManager.m} +7 -7
- package/ios/{AirMaps/AIRMapCalloutSubview.h → Maps/RNMMapCalloutSubview.h} +3 -3
- package/ios/{AirMaps/AIRMapCalloutSubview.m → Maps/RNMMapCalloutSubview.m} +4 -4
- package/ios/Maps/RNMMapCalloutSubviewManager.h +14 -0
- package/ios/Maps/RNMMapCalloutSubviewManager.m +24 -0
- package/ios/{AirMaps/AIRMapCircle.h → Maps/RNMMapCircle.h} +5 -5
- package/ios/{AirMaps/AIRMapCircle.m → Maps/RNMMapCircle.m} +3 -3
- package/ios/{AirMaps/AIRMapCalloutManager.h → Maps/RNMMapCircleManager.h} +2 -2
- package/ios/{AirMaps/AIRMapCircleManager.m → Maps/RNMMapCircleManager.m} +7 -7
- package/ios/{AirMaps/AIRMapCoordinate.h → Maps/RNMMapCoordinate.h} +2 -2
- package/ios/{AirMaps/AIRMapCoordinate.m → Maps/RNMMapCoordinate.m} +3 -3
- package/ios/{AirMaps/AIRMapLocalTile.h → Maps/RNMMapLocalTile.h} +7 -7
- package/ios/{AirMaps/AIRMapLocalTile.m → Maps/RNMMapLocalTile.m} +6 -6
- package/ios/{AirMaps/AIRMapLocalTileManager.h → Maps/RNMMapLocalTileManager.h} +3 -3
- package/ios/{AirMaps/AIRMapLocalTileManager.m → Maps/RNMMapLocalTileManager.m} +9 -9
- package/ios/{AirMaps/AIRMapLocalTileOverlay.h → Maps/RNMMapLocalTileOverlay.h} +2 -2
- package/ios/{AirMaps/AIRMapLocalTileOverlay.m → Maps/RNMMapLocalTileOverlay.m} +5 -5
- package/ios/{AirMaps/AIRMapManager.h → Maps/RNMMapManager.h} +6 -6
- package/ios/{AirMaps/AIRMapManager.m → Maps/RNMMapManager.m} +168 -445
- package/ios/{AirMaps/AIRMapMarker.h → Maps/RNMMapMarker.h} +8 -8
- package/ios/{AirMaps/AIRMapMarker.m → Maps/RNMMapMarker.m} +13 -13
- package/ios/{AirMaps/AIRMapMarkerManager.h → Maps/RNMMapMarkerManager.h} +1 -1
- package/ios/{AirMaps/AIRMapMarkerManager.m → Maps/RNMMapMarkerManager.m} +14 -14
- package/ios/{AirMaps/AIRMapOverlay.h → Maps/RNMMapOverlay.h} +7 -7
- package/ios/{AirMaps/AIRMapOverlay.m → Maps/RNMMapOverlay.m} +4 -4
- package/ios/Maps/RNMMapOverlayManager.h +5 -0
- package/ios/{AirMaps/AIRMapOverlayManager.m → Maps/RNMMapOverlayManager.m} +6 -6
- package/ios/{AirMaps/AIRMapOverlayRenderer.h → Maps/RNMMapOverlayRenderer.h} +1 -1
- package/ios/{AirMaps/AIRMapOverlayRenderer.m → Maps/RNMMapOverlayRenderer.m} +5 -5
- package/ios/{AirMaps/AIRMapPolygon.h → Maps/RNMMapPolygon.h} +7 -7
- package/ios/{AirMaps/AIRMapPolygon.m → Maps/RNMMapPolygon.m} +4 -4
- package/ios/{AirMaps/AIRMapPolygonManager.h → Maps/RNMMapPolygonManager.h} +2 -2
- package/ios/{AirMaps/AIRMapPolygonManager.m → Maps/RNMMapPolygonManager.m} +10 -10
- package/ios/{AirMaps/AIRMapPolyline.h → Maps/RNMMapPolyline.h} +6 -6
- package/ios/{AirMaps/AIRMapPolyline.m → Maps/RNMMapPolyline.m} +11 -11
- package/ios/{AirMaps/AIRMapPolylineManager.h → Maps/RNMMapPolylineManager.h} +2 -2
- package/ios/{AirMaps/AIRMapPolylineManager.m → Maps/RNMMapPolylineManager.m} +9 -9
- package/ios/{AirMaps/AIRMapPolylineRenderer.h → Maps/RNMMapPolylineRenderer.h} +2 -2
- package/ios/{AirMaps/AIRMapPolylineRenderer.m → Maps/RNMMapPolylineRenderer.m} +10 -10
- package/ios/{AirMaps/AIRMapSnapshot.h → Maps/RNMMapSnapshot.h} +6 -6
- package/ios/{AirMaps/AIRMapUrlTile.h → Maps/RNMMapUrlTile.h} +18 -18
- package/ios/{AirMaps/AIRMapUrlTile.m → Maps/RNMMapUrlTile.m} +7 -7
- package/ios/{AirMaps/AIRMapUrlTileCachedOverlay.h → Maps/RNMMapUrlTileCachedOverlay.h} +3 -3
- package/ios/{AirMaps/AIRMapUrlTileCachedOverlay.m → Maps/RNMMapUrlTileCachedOverlay.m} +10 -10
- package/ios/{AirMaps/AIRMapUrlTileManager.h → Maps/RNMMapUrlTileManager.h} +3 -3
- package/ios/{AirMaps/AIRMapUrlTileManager.m → Maps/RNMMapUrlTileManager.m} +9 -9
- package/ios/Maps/RNMMapViewModule.h +5 -0
- package/ios/Maps/RNMMapViewModule.m +297 -0
- package/ios/{AirMaps/AIRMapWMSTile.h → Maps/RNMMapWMSTile.h} +11 -11
- package/ios/{AirMaps/AIRMapWMSTile.m → Maps/RNMMapWMSTile.m} +15 -15
- package/ios/{AirMaps/AIRMapWMSTileManager.h → Maps/RNMMapWMSTileManager.h} +3 -3
- package/ios/{AirMaps/AIRMapWMSTileManager.m → Maps/RNMMapWMSTileManager.m} +9 -9
- package/ios/RNMaps.xcodeproj/project.pbxproj +647 -0
- package/lib/Geojson.d.ts +1 -1
- package/lib/MapCallout.js +2 -2
- package/lib/MapCalloutSubview.js +2 -2
- package/lib/MapCircle.js +2 -2
- package/lib/MapHeatmap.js +2 -2
- package/lib/MapLocalTile.js +2 -2
- package/lib/MapMarker.d.ts +2 -3
- package/lib/MapMarker.js +2 -4
- package/lib/MapOverlay.d.ts +1 -2
- package/lib/MapOverlay.js +2 -4
- package/lib/MapPolygon.js +2 -2
- package/lib/MapPolyline.js +2 -2
- package/lib/MapUrlTile.js +2 -2
- package/lib/MapView.d.ts +4 -9
- package/lib/MapView.js +74 -90
- package/lib/MapView.types.d.ts +7 -1
- package/lib/MapWMSTile.js +2 -2
- package/lib/NativeGoogleMapViewModule.d.ts +20 -0
- package/lib/NativeGoogleMapViewModule.js +4 -0
- package/lib/NativeMapViewModule.d.ts +24 -0
- package/lib/NativeMapViewModule.js +4 -0
- package/lib/decorateMapComponent.d.ts +1 -1
- package/lib/decorateMapComponent.js +3 -3
- package/lib/index.d.ts +14 -21
- package/lib/index.js +10 -38
- package/package.json +1 -1
- package/react-native-google-maps.podspec +1 -1
- package/react-native-maps.podspec +1 -1
- package/ios/AirGoogleMaps/AIRGoogleMapCalloutSubviewManager.m +0 -28
- package/ios/AirGoogleMaps/AIRGoogleMapHeatmapManager.h +0 -11
- package/ios/AirMaps/AIRMapCalloutSubviewManager.h +0 -14
- package/ios/AirMaps/AIRMapCalloutSubviewManager.m +0 -24
- package/ios/AirMaps/AIRMapOverlayManager.h +0 -5
- package/ios/AirMaps/AIRWeakMapReference.h +0 -24
- package/ios/AirMaps/AIRWeakMapReference.m +0 -23
- package/ios/AirMaps/AIRWeakTimerReference.h +0 -21
- package/ios/AirMaps/AIRWeakTimerReference.m +0 -42
- package/ios/AirMaps.xcodeproj/project.pbxproj +0 -587
- /package/ios/{AirGoogleMaps → GoogleMaps}/RCTConvert+GMSMapViewType.h +0 -0
- /package/ios/{AirGoogleMaps → GoogleMaps}/RCTConvert+GMSMapViewType.m +0 -0
- /package/ios/{AirMaps → Maps}/Callout/SMCalloutView.m +0 -0
|
@@ -1,587 +0,0 @@
|
|
|
1
|
-
// !$*UTF8*$!
|
|
2
|
-
{
|
|
3
|
-
archiveVersion = 1;
|
|
4
|
-
classes = {
|
|
5
|
-
};
|
|
6
|
-
objectVersion = 46;
|
|
7
|
-
objects = {
|
|
8
|
-
|
|
9
|
-
/* Begin PBXBuildFile section */
|
|
10
|
-
1125B2DA1C4AD3DA007D0023 /* AIRMap.m in Sources */ = {isa = PBXBuildFile; fileRef = 1125B2BE1C4AD3DA007D0023 /* AIRMap.m */; };
|
|
11
|
-
1125B2DB1C4AD3DA007D0023 /* AIRMapCallout.m in Sources */ = {isa = PBXBuildFile; fileRef = 1125B2C01C4AD3DA007D0023 /* AIRMapCallout.m */; };
|
|
12
|
-
1125B2DC1C4AD3DA007D0023 /* AIRMapCalloutManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1125B2C21C4AD3DA007D0023 /* AIRMapCalloutManager.m */; };
|
|
13
|
-
1125B2DD1C4AD3DA007D0023 /* AIRMapCircle.m in Sources */ = {isa = PBXBuildFile; fileRef = 1125B2C41C4AD3DA007D0023 /* AIRMapCircle.m */; };
|
|
14
|
-
1125B2DE1C4AD3DA007D0023 /* AIRMapCircleManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1125B2C61C4AD3DA007D0023 /* AIRMapCircleManager.m */; };
|
|
15
|
-
1125B2DF1C4AD3DA007D0023 /* AIRMapCoordinate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1125B2C81C4AD3DA007D0023 /* AIRMapCoordinate.m */; };
|
|
16
|
-
1125B2E01C4AD3DA007D0023 /* AIRMapManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1125B2CA1C4AD3DA007D0023 /* AIRMapManager.m */; };
|
|
17
|
-
1125B2E11C4AD3DA007D0023 /* AIRMapMarker.m in Sources */ = {isa = PBXBuildFile; fileRef = 1125B2CC1C4AD3DA007D0023 /* AIRMapMarker.m */; };
|
|
18
|
-
1125B2E21C4AD3DA007D0023 /* AIRMapMarkerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1125B2CE1C4AD3DA007D0023 /* AIRMapMarkerManager.m */; };
|
|
19
|
-
1125B2E31C4AD3DA007D0023 /* AIRMapPolygon.m in Sources */ = {isa = PBXBuildFile; fileRef = 1125B2D01C4AD3DA007D0023 /* AIRMapPolygon.m */; };
|
|
20
|
-
1125B2E41C4AD3DA007D0023 /* AIRMapPolygonManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1125B2D21C4AD3DA007D0023 /* AIRMapPolygonManager.m */; };
|
|
21
|
-
1125B2E51C4AD3DA007D0023 /* AIRMapPolyline.m in Sources */ = {isa = PBXBuildFile; fileRef = 1125B2D41C4AD3DA007D0023 /* AIRMapPolyline.m */; };
|
|
22
|
-
1125B2E61C4AD3DA007D0023 /* AIRMapPolylineManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1125B2D61C4AD3DA007D0023 /* AIRMapPolylineManager.m */; };
|
|
23
|
-
1125B2F21C4AD445007D0023 /* SMCalloutView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1125B2F11C4AD445007D0023 /* SMCalloutView.m */; };
|
|
24
|
-
19DABC7F1E7C9D3C00F41150 /* RCTConvert+AirMap.m in Sources */ = {isa = PBXBuildFile; fileRef = 19DABC7E1E7C9D3C00F41150 /* RCTConvert+AirMap.m */; };
|
|
25
|
-
2163AA501FEAEDD100BBEC95 /* AIRMapPolylineRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 2163AA4F1FEAEDD100BBEC95 /* AIRMapPolylineRenderer.m */; };
|
|
26
|
-
4C99C9DE2226CF2800A8693E /* AIRWeakTimerReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C99C9DD2226CF2800A8693E /* AIRWeakTimerReference.m */; };
|
|
27
|
-
4C99C9E12226D8C400A8693E /* AIRWeakMapReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C99C9E02226D8C400A8693E /* AIRWeakMapReference.m */; };
|
|
28
|
-
53D31636202E723B00B55447 /* AIRMapOverlayManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 53D31635202E723B00B55447 /* AIRMapOverlayManager.m */; };
|
|
29
|
-
53D3163A202E72FC00B55447 /* AIRMapOverlay.m in Sources */ = {isa = PBXBuildFile; fileRef = 53D31639202E72FC00B55447 /* AIRMapOverlay.m */; };
|
|
30
|
-
53D3163D202E734F00B55447 /* AIRMapOverlayRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 53D3163C202E734F00B55447 /* AIRMapOverlayRenderer.m */; };
|
|
31
|
-
628F81201FD16DF80058313A /* AIRMapLocalTile.m in Sources */ = {isa = PBXBuildFile; fileRef = 628F811F1FD16DF80058313A /* AIRMapLocalTile.m */; };
|
|
32
|
-
628F81231FD16EFA0058313A /* AIRMapLocalTileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 628F81221FD16EFA0058313A /* AIRMapLocalTileManager.m */; };
|
|
33
|
-
62AEC4D41FD5A0AA003225E0 /* AIRMapLocalTileOverlay.m in Sources */ = {isa = PBXBuildFile; fileRef = 62AEC4D31FD5A0AA003225E0 /* AIRMapLocalTileOverlay.m */; };
|
|
34
|
-
8B19A3C82257BBDF00BB8735 /* AIRMapCalloutSubview.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B19A3C42257BBDE00BB8735 /* AIRMapCalloutSubview.m */; };
|
|
35
|
-
8B19A3C92257BBDF00BB8735 /* AIRMapCalloutSubviewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B19A3C72257BBDF00BB8735 /* AIRMapCalloutSubviewManager.m */; };
|
|
36
|
-
8BC85FB02107CFEC0006CEA5 /* AIRGoogleMapOverlay.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BC85FAF2107CFEC0006CEA5 /* AIRGoogleMapOverlay.m */; };
|
|
37
|
-
9B9498CA2017EFB800158761 /* AIRGoogleMapUrlTile.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9498A62017EFB400158761 /* AIRGoogleMapUrlTile.m */; };
|
|
38
|
-
9B9498CB2017EFB800158761 /* AIRGoogleMapURLTileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9498A72017EFB400158761 /* AIRGoogleMapURLTileManager.m */; };
|
|
39
|
-
9B9498CC2017EFB800158761 /* AIRGMSPolygon.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9498A82017EFB400158761 /* AIRGMSPolygon.m */; };
|
|
40
|
-
9B9498CD2017EFB800158761 /* AIRGoogleMapCallout.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9498AC2017EFB400158761 /* AIRGoogleMapCallout.m */; };
|
|
41
|
-
9B9498CE2017EFB800158761 /* AIRGMSMarker.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9498AE2017EFB500158761 /* AIRGMSMarker.m */; };
|
|
42
|
-
9B9498CF2017EFB800158761 /* AIRGMSPolyline.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9498AF2017EFB500158761 /* AIRGMSPolyline.m */; };
|
|
43
|
-
9B9498D02017EFB800158761 /* AIRGoogleMapPolylineManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9498B12017EFB500158761 /* AIRGoogleMapPolylineManager.m */; };
|
|
44
|
-
9B9498D12017EFB800158761 /* AIRGoogleMapCircle.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9498B32017EFB500158761 /* AIRGoogleMapCircle.m */; };
|
|
45
|
-
9B9498D22017EFB800158761 /* AIRGoogleMapMarkerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9498B52017EFB500158761 /* AIRGoogleMapMarkerManager.m */; };
|
|
46
|
-
9B9498D32017EFB800158761 /* AIRGoogleMap.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9498B72017EFB500158761 /* AIRGoogleMap.m */; };
|
|
47
|
-
9B9498D42017EFB800158761 /* RCTConvert+GMSMapViewType.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9498B92017EFB600158761 /* RCTConvert+GMSMapViewType.m */; };
|
|
48
|
-
9B9498D52017EFB800158761 /* AIRGoogleMapPolyline.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9498BB2017EFB600158761 /* AIRGoogleMapPolyline.m */; };
|
|
49
|
-
9B9498D62017EFB800158761 /* AIRGoogleMapCircleManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9498BC2017EFB600158761 /* AIRGoogleMapCircleManager.m */; };
|
|
50
|
-
9B9498D72017EFB800158761 /* AIRGoogleMapManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9498BD2017EFB600158761 /* AIRGoogleMapManager.m */; };
|
|
51
|
-
9B9498D92017EFB800158761 /* AIRGoogleMapCalloutManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9498C42017EFB700158761 /* AIRGoogleMapCalloutManager.m */; };
|
|
52
|
-
9B9498DA2017EFB800158761 /* AIRGoogleMapPolygon.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9498C62017EFB800158761 /* AIRGoogleMapPolygon.m */; };
|
|
53
|
-
9B9498DB2017EFB800158761 /* AIRGoogleMapMarker.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9498C72017EFB800158761 /* AIRGoogleMapMarker.m */; };
|
|
54
|
-
9B9498DC2017EFB800158761 /* AIRGoogleMapPolygonManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9498C92017EFB800158761 /* AIRGoogleMapPolygonManager.m */; };
|
|
55
|
-
A8494E28218891020092506D /* AIRMapWMSTileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A8494E24218891020092506D /* AIRMapWMSTileManager.m */; };
|
|
56
|
-
A8494E29218891020092506D /* AIRMapWMSTile.m in Sources */ = {isa = PBXBuildFile; fileRef = A8494E27218891020092506D /* AIRMapWMSTile.m */; };
|
|
57
|
-
A8494E2E218891180092506D /* AIRGoogleMapWMSTileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A8494E2A218891180092506D /* AIRGoogleMapWMSTileManager.m */; };
|
|
58
|
-
A8494E2F218891180092506D /* AIRGoogleMapWMSTile.m in Sources */ = {isa = PBXBuildFile; fileRef = A8494E2D218891180092506D /* AIRGoogleMapWMSTile.m */; };
|
|
59
|
-
B5EA3BA92098E22B000E7AFD /* AIRDummyView.m in Sources */ = {isa = PBXBuildFile; fileRef = B5EA3BA72098E22B000E7AFD /* AIRDummyView.m */; };
|
|
60
|
-
BE2E4EC92621F63C00CC7F2E /* AIRMapUrlTileCachedOverlay.m in Sources */ = {isa = PBXBuildFile; fileRef = BE2E4EC82621F63C00CC7F2E /* AIRMapUrlTileCachedOverlay.m */; };
|
|
61
|
-
DA6C26381C9E2AFE0035349F /* AIRMapUrlTile.m in Sources */ = {isa = PBXBuildFile; fileRef = DA6C26371C9E2AFE0035349F /* AIRMapUrlTile.m */; };
|
|
62
|
-
DA6C263E1C9E324A0035349F /* AIRMapUrlTileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DA6C263D1C9E324A0035349F /* AIRMapUrlTileManager.m */; };
|
|
63
|
-
/* End PBXBuildFile section */
|
|
64
|
-
|
|
65
|
-
/* Begin PBXCopyFilesBuildPhase section */
|
|
66
|
-
11FA5C4F1C4A1296003AC2EE /* CopyFiles */ = {
|
|
67
|
-
isa = PBXCopyFilesBuildPhase;
|
|
68
|
-
buildActionMask = 2147483647;
|
|
69
|
-
dstPath = "include/$(PRODUCT_NAME)";
|
|
70
|
-
dstSubfolderSpec = 16;
|
|
71
|
-
files = (
|
|
72
|
-
);
|
|
73
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
74
|
-
};
|
|
75
|
-
/* End PBXCopyFilesBuildPhase section */
|
|
76
|
-
|
|
77
|
-
/* Begin PBXFileReference section */
|
|
78
|
-
1125B2BD1C4AD3DA007D0023 /* AIRMap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRMap.h; path = AirMaps/AIRMap.h; sourceTree = SOURCE_ROOT; };
|
|
79
|
-
1125B2BE1C4AD3DA007D0023 /* AIRMap.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRMap.m; path = AirMaps/AIRMap.m; sourceTree = SOURCE_ROOT; };
|
|
80
|
-
1125B2BF1C4AD3DA007D0023 /* AIRMapCallout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRMapCallout.h; path = AirMaps/AIRMapCallout.h; sourceTree = SOURCE_ROOT; };
|
|
81
|
-
1125B2C01C4AD3DA007D0023 /* AIRMapCallout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRMapCallout.m; path = AirMaps/AIRMapCallout.m; sourceTree = SOURCE_ROOT; };
|
|
82
|
-
1125B2C11C4AD3DA007D0023 /* AIRMapCalloutManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRMapCalloutManager.h; path = AirMaps/AIRMapCalloutManager.h; sourceTree = SOURCE_ROOT; };
|
|
83
|
-
1125B2C21C4AD3DA007D0023 /* AIRMapCalloutManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRMapCalloutManager.m; path = AirMaps/AIRMapCalloutManager.m; sourceTree = SOURCE_ROOT; };
|
|
84
|
-
1125B2C31C4AD3DA007D0023 /* AIRMapCircle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRMapCircle.h; path = AirMaps/AIRMapCircle.h; sourceTree = SOURCE_ROOT; };
|
|
85
|
-
1125B2C41C4AD3DA007D0023 /* AIRMapCircle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRMapCircle.m; path = AirMaps/AIRMapCircle.m; sourceTree = SOURCE_ROOT; };
|
|
86
|
-
1125B2C51C4AD3DA007D0023 /* AIRMapCircleManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRMapCircleManager.h; path = AirMaps/AIRMapCircleManager.h; sourceTree = SOURCE_ROOT; };
|
|
87
|
-
1125B2C61C4AD3DA007D0023 /* AIRMapCircleManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRMapCircleManager.m; path = AirMaps/AIRMapCircleManager.m; sourceTree = SOURCE_ROOT; };
|
|
88
|
-
1125B2C71C4AD3DA007D0023 /* AIRMapCoordinate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRMapCoordinate.h; path = AirMaps/AIRMapCoordinate.h; sourceTree = SOURCE_ROOT; };
|
|
89
|
-
1125B2C81C4AD3DA007D0023 /* AIRMapCoordinate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRMapCoordinate.m; path = AirMaps/AIRMapCoordinate.m; sourceTree = SOURCE_ROOT; };
|
|
90
|
-
1125B2C91C4AD3DA007D0023 /* AIRMapManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRMapManager.h; path = AirMaps/AIRMapManager.h; sourceTree = SOURCE_ROOT; };
|
|
91
|
-
1125B2CA1C4AD3DA007D0023 /* AIRMapManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRMapManager.m; path = AirMaps/AIRMapManager.m; sourceTree = SOURCE_ROOT; };
|
|
92
|
-
1125B2CB1C4AD3DA007D0023 /* AIRMapMarker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRMapMarker.h; path = AirMaps/AIRMapMarker.h; sourceTree = SOURCE_ROOT; };
|
|
93
|
-
1125B2CC1C4AD3DA007D0023 /* AIRMapMarker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRMapMarker.m; path = AirMaps/AIRMapMarker.m; sourceTree = SOURCE_ROOT; };
|
|
94
|
-
1125B2CD1C4AD3DA007D0023 /* AIRMapMarkerManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRMapMarkerManager.h; path = AirMaps/AIRMapMarkerManager.h; sourceTree = SOURCE_ROOT; };
|
|
95
|
-
1125B2CE1C4AD3DA007D0023 /* AIRMapMarkerManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRMapMarkerManager.m; path = AirMaps/AIRMapMarkerManager.m; sourceTree = SOURCE_ROOT; };
|
|
96
|
-
1125B2CF1C4AD3DA007D0023 /* AIRMapPolygon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRMapPolygon.h; path = AirMaps/AIRMapPolygon.h; sourceTree = SOURCE_ROOT; };
|
|
97
|
-
1125B2D01C4AD3DA007D0023 /* AIRMapPolygon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRMapPolygon.m; path = AirMaps/AIRMapPolygon.m; sourceTree = SOURCE_ROOT; };
|
|
98
|
-
1125B2D11C4AD3DA007D0023 /* AIRMapPolygonManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRMapPolygonManager.h; path = AirMaps/AIRMapPolygonManager.h; sourceTree = SOURCE_ROOT; };
|
|
99
|
-
1125B2D21C4AD3DA007D0023 /* AIRMapPolygonManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRMapPolygonManager.m; path = AirMaps/AIRMapPolygonManager.m; sourceTree = SOURCE_ROOT; };
|
|
100
|
-
1125B2D31C4AD3DA007D0023 /* AIRMapPolyline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRMapPolyline.h; path = AirMaps/AIRMapPolyline.h; sourceTree = SOURCE_ROOT; };
|
|
101
|
-
1125B2D41C4AD3DA007D0023 /* AIRMapPolyline.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRMapPolyline.m; path = AirMaps/AIRMapPolyline.m; sourceTree = SOURCE_ROOT; };
|
|
102
|
-
1125B2D51C4AD3DA007D0023 /* AIRMapPolylineManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRMapPolylineManager.h; path = AirMaps/AIRMapPolylineManager.h; sourceTree = SOURCE_ROOT; };
|
|
103
|
-
1125B2D61C4AD3DA007D0023 /* AIRMapPolylineManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRMapPolylineManager.m; path = AirMaps/AIRMapPolylineManager.m; sourceTree = SOURCE_ROOT; };
|
|
104
|
-
1125B2F01C4AD445007D0023 /* SMCalloutView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SMCalloutView.h; path = AirMaps/Callout/SMCalloutView.h; sourceTree = SOURCE_ROOT; };
|
|
105
|
-
1125B2F11C4AD445007D0023 /* SMCalloutView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SMCalloutView.m; path = AirMaps/Callout/SMCalloutView.m; sourceTree = SOURCE_ROOT; };
|
|
106
|
-
11FA5C511C4A1296003AC2EE /* libAirMaps.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libAirMaps.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
107
|
-
19DABC7D1E7C9D3C00F41150 /* RCTConvert+AirMap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+AirMap.h"; sourceTree = "<group>"; };
|
|
108
|
-
19DABC7E1E7C9D3C00F41150 /* RCTConvert+AirMap.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+AirMap.m"; sourceTree = "<group>"; };
|
|
109
|
-
2163AA4E1FEAEDD100BBEC95 /* AIRMapPolylineRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AIRMapPolylineRenderer.h; sourceTree = "<group>"; };
|
|
110
|
-
2163AA4F1FEAEDD100BBEC95 /* AIRMapPolylineRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AIRMapPolylineRenderer.m; sourceTree = "<group>"; };
|
|
111
|
-
4C99C9DC2226CF2800A8693E /* AIRWeakTimerReference.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AIRWeakTimerReference.h; sourceTree = "<group>"; };
|
|
112
|
-
4C99C9DD2226CF2800A8693E /* AIRWeakTimerReference.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AIRWeakTimerReference.m; sourceTree = "<group>"; };
|
|
113
|
-
4C99C9DF2226D8C400A8693E /* AIRWeakMapReference.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AIRWeakMapReference.h; sourceTree = "<group>"; };
|
|
114
|
-
4C99C9E02226D8C400A8693E /* AIRWeakMapReference.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AIRWeakMapReference.m; sourceTree = "<group>"; };
|
|
115
|
-
53D31635202E723B00B55447 /* AIRMapOverlayManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AIRMapOverlayManager.m; sourceTree = "<group>"; };
|
|
116
|
-
53D31637202E725E00B55447 /* AIRMapOverlayManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AIRMapOverlayManager.h; sourceTree = "<group>"; };
|
|
117
|
-
53D31638202E72D500B55447 /* AIRMapOverlay.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AIRMapOverlay.h; sourceTree = "<group>"; };
|
|
118
|
-
53D31639202E72FC00B55447 /* AIRMapOverlay.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AIRMapOverlay.m; sourceTree = "<group>"; };
|
|
119
|
-
53D3163B202E732300B55447 /* AIRMapOverlayRenderer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AIRMapOverlayRenderer.h; sourceTree = "<group>"; };
|
|
120
|
-
53D3163C202E734F00B55447 /* AIRMapOverlayRenderer.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AIRMapOverlayRenderer.m; sourceTree = "<group>"; };
|
|
121
|
-
628F811E1FD16D780058313A /* AIRMapLocalTile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AIRMapLocalTile.h; sourceTree = "<group>"; };
|
|
122
|
-
628F811F1FD16DF80058313A /* AIRMapLocalTile.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AIRMapLocalTile.m; sourceTree = "<group>"; };
|
|
123
|
-
628F81211FD16EAB0058313A /* AIRMapLocalTileManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AIRMapLocalTileManager.h; sourceTree = "<group>"; };
|
|
124
|
-
628F81221FD16EFA0058313A /* AIRMapLocalTileManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AIRMapLocalTileManager.m; sourceTree = "<group>"; };
|
|
125
|
-
62AEC4D31FD5A0AA003225E0 /* AIRMapLocalTileOverlay.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = AIRMapLocalTileOverlay.m; path = AirMaps/AIRMapLocalTileOverlay.m; sourceTree = "<group>"; };
|
|
126
|
-
8B19A3C42257BBDE00BB8735 /* AIRMapCalloutSubview.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AIRMapCalloutSubview.m; sourceTree = "<group>"; };
|
|
127
|
-
8B19A3C52257BBDE00BB8735 /* AIRMapCalloutSubviewManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AIRMapCalloutSubviewManager.h; sourceTree = "<group>"; };
|
|
128
|
-
8B19A3C62257BBDF00BB8735 /* AIRMapCalloutSubview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AIRMapCalloutSubview.h; sourceTree = "<group>"; };
|
|
129
|
-
8B19A3C72257BBDF00BB8735 /* AIRMapCalloutSubviewManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AIRMapCalloutSubviewManager.m; sourceTree = "<group>"; };
|
|
130
|
-
8BC85FAD2107C0BD0006CEA5 /* User.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = User.xcconfig; sourceTree = "<group>"; };
|
|
131
|
-
8BC85FAE2107CFD80006CEA5 /* AIRGoogleMapOverlay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRGoogleMapOverlay.h; path = AirGoogleMaps/AIRGoogleMapOverlay.h; sourceTree = "<group>"; };
|
|
132
|
-
8BC85FAF2107CFEC0006CEA5 /* AIRGoogleMapOverlay.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRGoogleMapOverlay.m; path = AirGoogleMaps/AIRGoogleMapOverlay.m; sourceTree = "<group>"; };
|
|
133
|
-
9B9498A42017EFB400158761 /* AIRGoogleMapCallout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRGoogleMapCallout.h; path = AirGoogleMaps/AIRGoogleMapCallout.h; sourceTree = "<group>"; };
|
|
134
|
-
9B9498A52017EFB400158761 /* AIRGoogleMapPolygonManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRGoogleMapPolygonManager.h; path = AirGoogleMaps/AIRGoogleMapPolygonManager.h; sourceTree = "<group>"; };
|
|
135
|
-
9B9498A62017EFB400158761 /* AIRGoogleMapUrlTile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRGoogleMapUrlTile.m; path = AirGoogleMaps/AIRGoogleMapUrlTile.m; sourceTree = "<group>"; };
|
|
136
|
-
9B9498A72017EFB400158761 /* AIRGoogleMapURLTileManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRGoogleMapURLTileManager.m; path = AirGoogleMaps/AIRGoogleMapURLTileManager.m; sourceTree = "<group>"; };
|
|
137
|
-
9B9498A82017EFB400158761 /* AIRGMSPolygon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRGMSPolygon.m; path = AirGoogleMaps/AIRGMSPolygon.m; sourceTree = "<group>"; };
|
|
138
|
-
9B9498A92017EFB400158761 /* RCTConvert+GMSMapViewType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+GMSMapViewType.h"; path = "AirGoogleMaps/RCTConvert+GMSMapViewType.h"; sourceTree = "<group>"; };
|
|
139
|
-
9B9498AA2017EFB400158761 /* AIRGoogleMap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRGoogleMap.h; path = AirGoogleMaps/AIRGoogleMap.h; sourceTree = "<group>"; };
|
|
140
|
-
9B9498AB2017EFB400158761 /* AIRGoogleMapMarkerManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRGoogleMapMarkerManager.h; path = AirGoogleMaps/AIRGoogleMapMarkerManager.h; sourceTree = "<group>"; };
|
|
141
|
-
9B9498AC2017EFB400158761 /* AIRGoogleMapCallout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRGoogleMapCallout.m; path = AirGoogleMaps/AIRGoogleMapCallout.m; sourceTree = "<group>"; };
|
|
142
|
-
9B9498AD2017EFB400158761 /* AIRGoogleMapUrlTileManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRGoogleMapUrlTileManager.h; path = AirGoogleMaps/AIRGoogleMapUrlTileManager.h; sourceTree = "<group>"; };
|
|
143
|
-
9B9498AE2017EFB500158761 /* AIRGMSMarker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRGMSMarker.m; path = AirGoogleMaps/AIRGMSMarker.m; sourceTree = "<group>"; };
|
|
144
|
-
9B9498AF2017EFB500158761 /* AIRGMSPolyline.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRGMSPolyline.m; path = AirGoogleMaps/AIRGMSPolyline.m; sourceTree = "<group>"; };
|
|
145
|
-
9B9498B02017EFB500158761 /* AIRGoogleMapCircleManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRGoogleMapCircleManager.h; path = AirGoogleMaps/AIRGoogleMapCircleManager.h; sourceTree = "<group>"; };
|
|
146
|
-
9B9498B12017EFB500158761 /* AIRGoogleMapPolylineManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRGoogleMapPolylineManager.m; path = AirGoogleMaps/AIRGoogleMapPolylineManager.m; sourceTree = "<group>"; };
|
|
147
|
-
9B9498B32017EFB500158761 /* AIRGoogleMapCircle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRGoogleMapCircle.m; path = AirGoogleMaps/AIRGoogleMapCircle.m; sourceTree = "<group>"; };
|
|
148
|
-
9B9498B42017EFB500158761 /* AIRGMSPolyline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRGMSPolyline.h; path = AirGoogleMaps/AIRGMSPolyline.h; sourceTree = "<group>"; };
|
|
149
|
-
9B9498B52017EFB500158761 /* AIRGoogleMapMarkerManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRGoogleMapMarkerManager.m; path = AirGoogleMaps/AIRGoogleMapMarkerManager.m; sourceTree = "<group>"; };
|
|
150
|
-
9B9498B62017EFB500158761 /* AIRGoogleMapPolylineManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRGoogleMapPolylineManager.h; path = AirGoogleMaps/AIRGoogleMapPolylineManager.h; sourceTree = "<group>"; };
|
|
151
|
-
9B9498B72017EFB500158761 /* AIRGoogleMap.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRGoogleMap.m; path = AirGoogleMaps/AIRGoogleMap.m; sourceTree = "<group>"; };
|
|
152
|
-
9B9498B82017EFB600158761 /* AIRGoogleMapPolyline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRGoogleMapPolyline.h; path = AirGoogleMaps/AIRGoogleMapPolyline.h; sourceTree = "<group>"; };
|
|
153
|
-
9B9498B92017EFB600158761 /* RCTConvert+GMSMapViewType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+GMSMapViewType.m"; path = "AirGoogleMaps/RCTConvert+GMSMapViewType.m"; sourceTree = "<group>"; };
|
|
154
|
-
9B9498BA2017EFB600158761 /* AIRGMSPolygon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRGMSPolygon.h; path = AirGoogleMaps/AIRGMSPolygon.h; sourceTree = "<group>"; };
|
|
155
|
-
9B9498BB2017EFB600158761 /* AIRGoogleMapPolyline.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRGoogleMapPolyline.m; path = AirGoogleMaps/AIRGoogleMapPolyline.m; sourceTree = "<group>"; };
|
|
156
|
-
9B9498BC2017EFB600158761 /* AIRGoogleMapCircleManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRGoogleMapCircleManager.m; path = AirGoogleMaps/AIRGoogleMapCircleManager.m; sourceTree = "<group>"; };
|
|
157
|
-
9B9498BD2017EFB600158761 /* AIRGoogleMapManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRGoogleMapManager.m; path = AirGoogleMaps/AIRGoogleMapManager.m; sourceTree = "<group>"; };
|
|
158
|
-
9B9498BE2017EFB600158761 /* AIRGoogleMapManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRGoogleMapManager.h; path = AirGoogleMaps/AIRGoogleMapManager.h; sourceTree = "<group>"; };
|
|
159
|
-
9B9498C02017EFB700158761 /* AIRGoogleMapMarker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRGoogleMapMarker.h; path = AirGoogleMaps/AIRGoogleMapMarker.h; sourceTree = "<group>"; };
|
|
160
|
-
9B9498C12017EFB700158761 /* AIRGMSMarker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRGMSMarker.h; path = AirGoogleMaps/AIRGMSMarker.h; sourceTree = "<group>"; };
|
|
161
|
-
9B9498C22017EFB700158761 /* AIRGoogleMapCircle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRGoogleMapCircle.h; path = AirGoogleMaps/AIRGoogleMapCircle.h; sourceTree = "<group>"; };
|
|
162
|
-
9B9498C32017EFB700158761 /* AIRGoogleMapPolygon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRGoogleMapPolygon.h; path = AirGoogleMaps/AIRGoogleMapPolygon.h; sourceTree = "<group>"; };
|
|
163
|
-
9B9498C42017EFB700158761 /* AIRGoogleMapCalloutManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRGoogleMapCalloutManager.m; path = AirGoogleMaps/AIRGoogleMapCalloutManager.m; sourceTree = "<group>"; };
|
|
164
|
-
9B9498C52017EFB800158761 /* AIRGoogleMapCalloutManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRGoogleMapCalloutManager.h; path = AirGoogleMaps/AIRGoogleMapCalloutManager.h; sourceTree = "<group>"; };
|
|
165
|
-
9B9498C62017EFB800158761 /* AIRGoogleMapPolygon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRGoogleMapPolygon.m; path = AirGoogleMaps/AIRGoogleMapPolygon.m; sourceTree = "<group>"; };
|
|
166
|
-
9B9498C72017EFB800158761 /* AIRGoogleMapMarker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRGoogleMapMarker.m; path = AirGoogleMaps/AIRGoogleMapMarker.m; sourceTree = "<group>"; };
|
|
167
|
-
9B9498C82017EFB800158761 /* AIRGoogleMapUrlTile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRGoogleMapUrlTile.h; path = AirGoogleMaps/AIRGoogleMapUrlTile.h; sourceTree = "<group>"; };
|
|
168
|
-
9B9498C92017EFB800158761 /* AIRGoogleMapPolygonManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRGoogleMapPolygonManager.m; path = AirGoogleMaps/AIRGoogleMapPolygonManager.m; sourceTree = "<group>"; };
|
|
169
|
-
A8494E24218891020092506D /* AIRMapWMSTileManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AIRMapWMSTileManager.m; sourceTree = "<group>"; };
|
|
170
|
-
A8494E25218891020092506D /* AIRMapWMSTile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AIRMapWMSTile.h; sourceTree = "<group>"; };
|
|
171
|
-
A8494E26218891020092506D /* AIRMapWMSTileManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AIRMapWMSTileManager.h; sourceTree = "<group>"; };
|
|
172
|
-
A8494E27218891020092506D /* AIRMapWMSTile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AIRMapWMSTile.m; sourceTree = "<group>"; };
|
|
173
|
-
A8494E2A218891180092506D /* AIRGoogleMapWMSTileManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRGoogleMapWMSTileManager.m; path = AirGoogleMaps/AIRGoogleMapWMSTileManager.m; sourceTree = "<group>"; };
|
|
174
|
-
A8494E2B218891180092506D /* AIRGoogleMapWMSTile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRGoogleMapWMSTile.h; path = AirGoogleMaps/AIRGoogleMapWMSTile.h; sourceTree = "<group>"; };
|
|
175
|
-
A8494E2C218891180092506D /* AIRGoogleMapWMSTileManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRGoogleMapWMSTileManager.h; path = AirGoogleMaps/AIRGoogleMapWMSTileManager.h; sourceTree = "<group>"; };
|
|
176
|
-
A8494E2D218891180092506D /* AIRGoogleMapWMSTile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRGoogleMapWMSTile.m; path = AirGoogleMaps/AIRGoogleMapWMSTile.m; sourceTree = "<group>"; };
|
|
177
|
-
B5EA3BA72098E22B000E7AFD /* AIRDummyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRDummyView.m; path = AirGoogleMaps/AIRDummyView.m; sourceTree = "<group>"; };
|
|
178
|
-
B5EA3BA82098E22B000E7AFD /* AIRDummyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRDummyView.h; path = AirGoogleMaps/AIRDummyView.h; sourceTree = "<group>"; };
|
|
179
|
-
BE2E4EC72621F63C00CC7F2E /* AIRMapUrlTileCachedOverlay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AIRMapUrlTileCachedOverlay.h; path = AirMaps/AIRMapUrlTileCachedOverlay.h; sourceTree = SOURCE_ROOT; };
|
|
180
|
-
BE2E4EC82621F63C00CC7F2E /* AIRMapUrlTileCachedOverlay.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AIRMapUrlTileCachedOverlay.m; path = AirMaps/AIRMapUrlTileCachedOverlay.m; sourceTree = SOURCE_ROOT; };
|
|
181
|
-
DA6C26361C9E2AFE0035349F /* AIRMapUrlTile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AIRMapUrlTile.h; sourceTree = "<group>"; };
|
|
182
|
-
DA6C26371C9E2AFE0035349F /* AIRMapUrlTile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AIRMapUrlTile.m; sourceTree = "<group>"; };
|
|
183
|
-
DA6C263C1C9E324A0035349F /* AIRMapUrlTileManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AIRMapUrlTileManager.h; sourceTree = "<group>"; };
|
|
184
|
-
DA6C263D1C9E324A0035349F /* AIRMapUrlTileManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AIRMapUrlTileManager.m; sourceTree = "<group>"; };
|
|
185
|
-
/* End PBXFileReference section */
|
|
186
|
-
|
|
187
|
-
/* Begin PBXFrameworksBuildPhase section */
|
|
188
|
-
11FA5C4E1C4A1296003AC2EE /* Frameworks */ = {
|
|
189
|
-
isa = PBXFrameworksBuildPhase;
|
|
190
|
-
buildActionMask = 2147483647;
|
|
191
|
-
files = (
|
|
192
|
-
);
|
|
193
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
194
|
-
};
|
|
195
|
-
/* End PBXFrameworksBuildPhase section */
|
|
196
|
-
|
|
197
|
-
/* Begin PBXGroup section */
|
|
198
|
-
11FA5C481C4A1296003AC2EE = {
|
|
199
|
-
isa = PBXGroup;
|
|
200
|
-
children = (
|
|
201
|
-
9B9498A32017EF9D00158761 /* AirGoogleMaps */,
|
|
202
|
-
62AEC4D31FD5A0AA003225E0 /* AIRMapLocalTileOverlay.m */,
|
|
203
|
-
11FA5C531C4A1296003AC2EE /* AirMaps */,
|
|
204
|
-
11FA5C521C4A1296003AC2EE /* Products */,
|
|
205
|
-
8BC85FAD2107C0BD0006CEA5 /* User.xcconfig */,
|
|
206
|
-
);
|
|
207
|
-
sourceTree = "<group>";
|
|
208
|
-
};
|
|
209
|
-
11FA5C521C4A1296003AC2EE /* Products */ = {
|
|
210
|
-
isa = PBXGroup;
|
|
211
|
-
children = (
|
|
212
|
-
11FA5C511C4A1296003AC2EE /* libAirMaps.a */,
|
|
213
|
-
);
|
|
214
|
-
name = Products;
|
|
215
|
-
sourceTree = "<group>";
|
|
216
|
-
};
|
|
217
|
-
11FA5C531C4A1296003AC2EE /* AirMaps */ = {
|
|
218
|
-
isa = PBXGroup;
|
|
219
|
-
children = (
|
|
220
|
-
BE2E4EC72621F63C00CC7F2E /* AIRMapUrlTileCachedOverlay.h */,
|
|
221
|
-
BE2E4EC82621F63C00CC7F2E /* AIRMapUrlTileCachedOverlay.m */,
|
|
222
|
-
1125B2BD1C4AD3DA007D0023 /* AIRMap.h */,
|
|
223
|
-
1125B2BE1C4AD3DA007D0023 /* AIRMap.m */,
|
|
224
|
-
1125B2BF1C4AD3DA007D0023 /* AIRMapCallout.h */,
|
|
225
|
-
1125B2C01C4AD3DA007D0023 /* AIRMapCallout.m */,
|
|
226
|
-
1125B2C11C4AD3DA007D0023 /* AIRMapCalloutManager.h */,
|
|
227
|
-
1125B2C21C4AD3DA007D0023 /* AIRMapCalloutManager.m */,
|
|
228
|
-
8B19A3C62257BBDF00BB8735 /* AIRMapCalloutSubview.h */,
|
|
229
|
-
8B19A3C42257BBDE00BB8735 /* AIRMapCalloutSubview.m */,
|
|
230
|
-
8B19A3C52257BBDE00BB8735 /* AIRMapCalloutSubviewManager.h */,
|
|
231
|
-
8B19A3C72257BBDF00BB8735 /* AIRMapCalloutSubviewManager.m */,
|
|
232
|
-
1125B2C31C4AD3DA007D0023 /* AIRMapCircle.h */,
|
|
233
|
-
1125B2C41C4AD3DA007D0023 /* AIRMapCircle.m */,
|
|
234
|
-
1125B2C51C4AD3DA007D0023 /* AIRMapCircleManager.h */,
|
|
235
|
-
1125B2C61C4AD3DA007D0023 /* AIRMapCircleManager.m */,
|
|
236
|
-
1125B2D41C4AD3DA007D0023 /* AIRMapPolyline.m */,
|
|
237
|
-
1125B2C71C4AD3DA007D0023 /* AIRMapCoordinate.h */,
|
|
238
|
-
1125B2C81C4AD3DA007D0023 /* AIRMapCoordinate.m */,
|
|
239
|
-
1125B2C91C4AD3DA007D0023 /* AIRMapManager.h */,
|
|
240
|
-
1125B2CA1C4AD3DA007D0023 /* AIRMapManager.m */,
|
|
241
|
-
1125B2CB1C4AD3DA007D0023 /* AIRMapMarker.h */,
|
|
242
|
-
1125B2CC1C4AD3DA007D0023 /* AIRMapMarker.m */,
|
|
243
|
-
1125B2CD1C4AD3DA007D0023 /* AIRMapMarkerManager.h */,
|
|
244
|
-
1125B2CE1C4AD3DA007D0023 /* AIRMapMarkerManager.m */,
|
|
245
|
-
1125B2CF1C4AD3DA007D0023 /* AIRMapPolygon.h */,
|
|
246
|
-
1125B2D01C4AD3DA007D0023 /* AIRMapPolygon.m */,
|
|
247
|
-
1125B2D11C4AD3DA007D0023 /* AIRMapPolygonManager.h */,
|
|
248
|
-
1125B2D21C4AD3DA007D0023 /* AIRMapPolygonManager.m */,
|
|
249
|
-
1125B2D31C4AD3DA007D0023 /* AIRMapPolyline.h */,
|
|
250
|
-
1125B2D51C4AD3DA007D0023 /* AIRMapPolylineManager.h */,
|
|
251
|
-
1125B2D61C4AD3DA007D0023 /* AIRMapPolylineManager.m */,
|
|
252
|
-
2163AA4E1FEAEDD100BBEC95 /* AIRMapPolylineRenderer.h */,
|
|
253
|
-
2163AA4F1FEAEDD100BBEC95 /* AIRMapPolylineRenderer.m */,
|
|
254
|
-
1125B2F01C4AD445007D0023 /* SMCalloutView.h */,
|
|
255
|
-
1125B2F11C4AD445007D0023 /* SMCalloutView.m */,
|
|
256
|
-
19DABC7D1E7C9D3C00F41150 /* RCTConvert+AirMap.h */,
|
|
257
|
-
19DABC7E1E7C9D3C00F41150 /* RCTConvert+AirMap.m */,
|
|
258
|
-
DA6C26361C9E2AFE0035349F /* AIRMapUrlTile.h */,
|
|
259
|
-
DA6C26371C9E2AFE0035349F /* AIRMapUrlTile.m */,
|
|
260
|
-
DA6C263C1C9E324A0035349F /* AIRMapUrlTileManager.h */,
|
|
261
|
-
DA6C263D1C9E324A0035349F /* AIRMapUrlTileManager.m */,
|
|
262
|
-
A8494E25218891020092506D /* AIRMapWMSTile.h */,
|
|
263
|
-
A8494E27218891020092506D /* AIRMapWMSTile.m */,
|
|
264
|
-
A8494E26218891020092506D /* AIRMapWMSTileManager.h */,
|
|
265
|
-
A8494E24218891020092506D /* AIRMapWMSTileManager.m */,
|
|
266
|
-
1125B2CC1C4AD3DA007D0023 /* AIRMapMarker.m */,
|
|
267
|
-
628F811E1FD16D780058313A /* AIRMapLocalTile.h */,
|
|
268
|
-
628F811F1FD16DF80058313A /* AIRMapLocalTile.m */,
|
|
269
|
-
628F81211FD16EAB0058313A /* AIRMapLocalTileManager.h */,
|
|
270
|
-
628F81221FD16EFA0058313A /* AIRMapLocalTileManager.m */,
|
|
271
|
-
53D31638202E72D500B55447 /* AIRMapOverlay.h */,
|
|
272
|
-
53D31639202E72FC00B55447 /* AIRMapOverlay.m */,
|
|
273
|
-
53D31637202E725E00B55447 /* AIRMapOverlayManager.h */,
|
|
274
|
-
53D31635202E723B00B55447 /* AIRMapOverlayManager.m */,
|
|
275
|
-
53D3163B202E732300B55447 /* AIRMapOverlayRenderer.h */,
|
|
276
|
-
53D3163C202E734F00B55447 /* AIRMapOverlayRenderer.m */,
|
|
277
|
-
4C99C9DC2226CF2800A8693E /* AIRWeakTimerReference.h */,
|
|
278
|
-
4C99C9DD2226CF2800A8693E /* AIRWeakTimerReference.m */,
|
|
279
|
-
4C99C9DF2226D8C400A8693E /* AIRWeakMapReference.h */,
|
|
280
|
-
4C99C9E02226D8C400A8693E /* AIRWeakMapReference.m */,
|
|
281
|
-
);
|
|
282
|
-
path = AirMaps;
|
|
283
|
-
sourceTree = "<group>";
|
|
284
|
-
};
|
|
285
|
-
9B9498A32017EF9D00158761 /* AirGoogleMaps */ = {
|
|
286
|
-
isa = PBXGroup;
|
|
287
|
-
children = (
|
|
288
|
-
B5EA3BA82098E22B000E7AFD /* AIRDummyView.h */,
|
|
289
|
-
B5EA3BA72098E22B000E7AFD /* AIRDummyView.m */,
|
|
290
|
-
9B9498C12017EFB700158761 /* AIRGMSMarker.h */,
|
|
291
|
-
9B9498AE2017EFB500158761 /* AIRGMSMarker.m */,
|
|
292
|
-
9B9498BA2017EFB600158761 /* AIRGMSPolygon.h */,
|
|
293
|
-
9B9498A82017EFB400158761 /* AIRGMSPolygon.m */,
|
|
294
|
-
9B9498B42017EFB500158761 /* AIRGMSPolyline.h */,
|
|
295
|
-
9B9498AF2017EFB500158761 /* AIRGMSPolyline.m */,
|
|
296
|
-
9B9498AA2017EFB400158761 /* AIRGoogleMap.h */,
|
|
297
|
-
9B9498B72017EFB500158761 /* AIRGoogleMap.m */,
|
|
298
|
-
9B9498A42017EFB400158761 /* AIRGoogleMapCallout.h */,
|
|
299
|
-
9B9498AC2017EFB400158761 /* AIRGoogleMapCallout.m */,
|
|
300
|
-
9B9498C52017EFB800158761 /* AIRGoogleMapCalloutManager.h */,
|
|
301
|
-
9B9498C42017EFB700158761 /* AIRGoogleMapCalloutManager.m */,
|
|
302
|
-
9B9498C22017EFB700158761 /* AIRGoogleMapCircle.h */,
|
|
303
|
-
9B9498B32017EFB500158761 /* AIRGoogleMapCircle.m */,
|
|
304
|
-
9B9498B02017EFB500158761 /* AIRGoogleMapCircleManager.h */,
|
|
305
|
-
9B9498BC2017EFB600158761 /* AIRGoogleMapCircleManager.m */,
|
|
306
|
-
9B9498BE2017EFB600158761 /* AIRGoogleMapManager.h */,
|
|
307
|
-
9B9498BD2017EFB600158761 /* AIRGoogleMapManager.m */,
|
|
308
|
-
9B9498C02017EFB700158761 /* AIRGoogleMapMarker.h */,
|
|
309
|
-
9B9498C72017EFB800158761 /* AIRGoogleMapMarker.m */,
|
|
310
|
-
9B9498AB2017EFB400158761 /* AIRGoogleMapMarkerManager.h */,
|
|
311
|
-
9B9498B52017EFB500158761 /* AIRGoogleMapMarkerManager.m */,
|
|
312
|
-
9B9498C32017EFB700158761 /* AIRGoogleMapPolygon.h */,
|
|
313
|
-
9B9498C62017EFB800158761 /* AIRGoogleMapPolygon.m */,
|
|
314
|
-
9B9498A52017EFB400158761 /* AIRGoogleMapPolygonManager.h */,
|
|
315
|
-
9B9498C92017EFB800158761 /* AIRGoogleMapPolygonManager.m */,
|
|
316
|
-
9B9498B82017EFB600158761 /* AIRGoogleMapPolyline.h */,
|
|
317
|
-
9B9498BB2017EFB600158761 /* AIRGoogleMapPolyline.m */,
|
|
318
|
-
8BC85FAE2107CFD80006CEA5 /* AIRGoogleMapOverlay.h */,
|
|
319
|
-
8BC85FAF2107CFEC0006CEA5 /* AIRGoogleMapOverlay.m */,
|
|
320
|
-
9B9498B62017EFB500158761 /* AIRGoogleMapPolylineManager.h */,
|
|
321
|
-
9B9498B12017EFB500158761 /* AIRGoogleMapPolylineManager.m */,
|
|
322
|
-
9B9498C82017EFB800158761 /* AIRGoogleMapUrlTile.h */,
|
|
323
|
-
9B9498A62017EFB400158761 /* AIRGoogleMapUrlTile.m */,
|
|
324
|
-
9B9498AD2017EFB400158761 /* AIRGoogleMapUrlTileManager.h */,
|
|
325
|
-
9B9498A72017EFB400158761 /* AIRGoogleMapURLTileManager.m */,
|
|
326
|
-
A8494E2B218891180092506D /* AIRGoogleMapWMSTile.h */,
|
|
327
|
-
A8494E2D218891180092506D /* AIRGoogleMapWMSTile.m */,
|
|
328
|
-
A8494E2C218891180092506D /* AIRGoogleMapWMSTileManager.h */,
|
|
329
|
-
A8494E2A218891180092506D /* AIRGoogleMapWMSTileManager.m */,
|
|
330
|
-
9B9498A92017EFB400158761 /* RCTConvert+GMSMapViewType.h */,
|
|
331
|
-
9B9498B92017EFB600158761 /* RCTConvert+GMSMapViewType.m */,
|
|
332
|
-
);
|
|
333
|
-
name = AirGoogleMaps;
|
|
334
|
-
sourceTree = "<group>";
|
|
335
|
-
};
|
|
336
|
-
/* End PBXGroup section */
|
|
337
|
-
|
|
338
|
-
/* Begin PBXNativeTarget section */
|
|
339
|
-
11FA5C501C4A1296003AC2EE /* AirMaps */ = {
|
|
340
|
-
isa = PBXNativeTarget;
|
|
341
|
-
buildConfigurationList = 11FA5C5A1C4A1296003AC2EE /* Build configuration list for PBXNativeTarget "AirMaps" */;
|
|
342
|
-
buildPhases = (
|
|
343
|
-
11FA5C4D1C4A1296003AC2EE /* Sources */,
|
|
344
|
-
11FA5C4E1C4A1296003AC2EE /* Frameworks */,
|
|
345
|
-
11FA5C4F1C4A1296003AC2EE /* CopyFiles */,
|
|
346
|
-
);
|
|
347
|
-
buildRules = (
|
|
348
|
-
);
|
|
349
|
-
dependencies = (
|
|
350
|
-
);
|
|
351
|
-
name = AirMaps;
|
|
352
|
-
productName = AirMaps;
|
|
353
|
-
productReference = 11FA5C511C4A1296003AC2EE /* libAirMaps.a */;
|
|
354
|
-
productType = "com.apple.product-type.library.static";
|
|
355
|
-
};
|
|
356
|
-
/* End PBXNativeTarget section */
|
|
357
|
-
|
|
358
|
-
/* Begin PBXProject section */
|
|
359
|
-
11FA5C491C4A1296003AC2EE /* Project object */ = {
|
|
360
|
-
isa = PBXProject;
|
|
361
|
-
attributes = {
|
|
362
|
-
LastUpgradeCheck = 0940;
|
|
363
|
-
ORGANIZATIONNAME = Christopher;
|
|
364
|
-
TargetAttributes = {
|
|
365
|
-
11FA5C501C4A1296003AC2EE = {
|
|
366
|
-
CreatedOnToolsVersion = 7.2;
|
|
367
|
-
};
|
|
368
|
-
};
|
|
369
|
-
};
|
|
370
|
-
buildConfigurationList = 11FA5C4C1C4A1296003AC2EE /* Build configuration list for PBXProject "AirMaps" */;
|
|
371
|
-
compatibilityVersion = "Xcode 3.2";
|
|
372
|
-
developmentRegion = English;
|
|
373
|
-
hasScannedForEncodings = 0;
|
|
374
|
-
knownRegions = (
|
|
375
|
-
en,
|
|
376
|
-
);
|
|
377
|
-
mainGroup = 11FA5C481C4A1296003AC2EE;
|
|
378
|
-
productRefGroup = 11FA5C521C4A1296003AC2EE /* Products */;
|
|
379
|
-
projectDirPath = "";
|
|
380
|
-
projectRoot = "";
|
|
381
|
-
targets = (
|
|
382
|
-
11FA5C501C4A1296003AC2EE /* AirMaps */,
|
|
383
|
-
);
|
|
384
|
-
};
|
|
385
|
-
/* End PBXProject section */
|
|
386
|
-
|
|
387
|
-
/* Begin PBXSourcesBuildPhase section */
|
|
388
|
-
11FA5C4D1C4A1296003AC2EE /* Sources */ = {
|
|
389
|
-
isa = PBXSourcesBuildPhase;
|
|
390
|
-
buildActionMask = 2147483647;
|
|
391
|
-
files = (
|
|
392
|
-
62AEC4D41FD5A0AA003225E0 /* AIRMapLocalTileOverlay.m in Sources */,
|
|
393
|
-
9B9498DC2017EFB800158761 /* AIRGoogleMapPolygonManager.m in Sources */,
|
|
394
|
-
1125B2E31C4AD3DA007D0023 /* AIRMapPolygon.m in Sources */,
|
|
395
|
-
4C99C9DE2226CF2800A8693E /* AIRWeakTimerReference.m in Sources */,
|
|
396
|
-
1125B2E41C4AD3DA007D0023 /* AIRMapPolygonManager.m in Sources */,
|
|
397
|
-
A8494E2F218891180092506D /* AIRGoogleMapWMSTile.m in Sources */,
|
|
398
|
-
9B9498CB2017EFB800158761 /* AIRGoogleMapURLTileManager.m in Sources */,
|
|
399
|
-
A8494E28218891020092506D /* AIRMapWMSTileManager.m in Sources */,
|
|
400
|
-
1125B2DB1C4AD3DA007D0023 /* AIRMapCallout.m in Sources */,
|
|
401
|
-
53D31636202E723B00B55447 /* AIRMapOverlayManager.m in Sources */,
|
|
402
|
-
1125B2E01C4AD3DA007D0023 /* AIRMapManager.m in Sources */,
|
|
403
|
-
1125B2E61C4AD3DA007D0023 /* AIRMapPolylineManager.m in Sources */,
|
|
404
|
-
9B9498DA2017EFB800158761 /* AIRGoogleMapPolygon.m in Sources */,
|
|
405
|
-
9B9498D12017EFB800158761 /* AIRGoogleMapCircle.m in Sources */,
|
|
406
|
-
1125B2DD1C4AD3DA007D0023 /* AIRMapCircle.m in Sources */,
|
|
407
|
-
9B9498CE2017EFB800158761 /* AIRGMSMarker.m in Sources */,
|
|
408
|
-
9B9498D72017EFB800158761 /* AIRGoogleMapManager.m in Sources */,
|
|
409
|
-
19DABC7F1E7C9D3C00F41150 /* RCTConvert+AirMap.m in Sources */,
|
|
410
|
-
A8494E2E218891180092506D /* AIRGoogleMapWMSTileManager.m in Sources */,
|
|
411
|
-
8B19A3C82257BBDF00BB8735 /* AIRMapCalloutSubview.m in Sources */,
|
|
412
|
-
1125B2E51C4AD3DA007D0023 /* AIRMapPolyline.m in Sources */,
|
|
413
|
-
4C99C9E12226D8C400A8693E /* AIRWeakMapReference.m in Sources */,
|
|
414
|
-
9B9498D52017EFB800158761 /* AIRGoogleMapPolyline.m in Sources */,
|
|
415
|
-
9B9498CF2017EFB800158761 /* AIRGMSPolyline.m in Sources */,
|
|
416
|
-
9B9498D42017EFB800158761 /* RCTConvert+GMSMapViewType.m in Sources */,
|
|
417
|
-
9B9498D32017EFB800158761 /* AIRGoogleMap.m in Sources */,
|
|
418
|
-
BE2E4EC92621F63C00CC7F2E /* AIRMapUrlTileCachedOverlay.m in Sources */,
|
|
419
|
-
DA6C263E1C9E324A0035349F /* AIRMapUrlTileManager.m in Sources */,
|
|
420
|
-
9B9498DB2017EFB800158761 /* AIRGoogleMapMarker.m in Sources */,
|
|
421
|
-
628F81201FD16DF80058313A /* AIRMapLocalTile.m in Sources */,
|
|
422
|
-
9B9498D92017EFB800158761 /* AIRGoogleMapCalloutManager.m in Sources */,
|
|
423
|
-
53D3163A202E72FC00B55447 /* AIRMapOverlay.m in Sources */,
|
|
424
|
-
53D3163D202E734F00B55447 /* AIRMapOverlayRenderer.m in Sources */,
|
|
425
|
-
1125B2DA1C4AD3DA007D0023 /* AIRMap.m in Sources */,
|
|
426
|
-
1125B2DF1C4AD3DA007D0023 /* AIRMapCoordinate.m in Sources */,
|
|
427
|
-
9B9498D62017EFB800158761 /* AIRGoogleMapCircleManager.m in Sources */,
|
|
428
|
-
8BC85FB02107CFEC0006CEA5 /* AIRGoogleMapOverlay.m in Sources */,
|
|
429
|
-
1125B2F21C4AD445007D0023 /* SMCalloutView.m in Sources */,
|
|
430
|
-
2163AA501FEAEDD100BBEC95 /* AIRMapPolylineRenderer.m in Sources */,
|
|
431
|
-
9B9498D02017EFB800158761 /* AIRGoogleMapPolylineManager.m in Sources */,
|
|
432
|
-
1125B2E11C4AD3DA007D0023 /* AIRMapMarker.m in Sources */,
|
|
433
|
-
A8494E29218891020092506D /* AIRMapWMSTile.m in Sources */,
|
|
434
|
-
9B9498CA2017EFB800158761 /* AIRGoogleMapUrlTile.m in Sources */,
|
|
435
|
-
8B19A3C92257BBDF00BB8735 /* AIRMapCalloutSubviewManager.m in Sources */,
|
|
436
|
-
B5EA3BA92098E22B000E7AFD /* AIRDummyView.m in Sources */,
|
|
437
|
-
9B9498CD2017EFB800158761 /* AIRGoogleMapCallout.m in Sources */,
|
|
438
|
-
1125B2E21C4AD3DA007D0023 /* AIRMapMarkerManager.m in Sources */,
|
|
439
|
-
DA6C26381C9E2AFE0035349F /* AIRMapUrlTile.m in Sources */,
|
|
440
|
-
628F81231FD16EFA0058313A /* AIRMapLocalTileManager.m in Sources */,
|
|
441
|
-
9B9498D22017EFB800158761 /* AIRGoogleMapMarkerManager.m in Sources */,
|
|
442
|
-
9B9498CC2017EFB800158761 /* AIRGMSPolygon.m in Sources */,
|
|
443
|
-
1125B2DE1C4AD3DA007D0023 /* AIRMapCircleManager.m in Sources */,
|
|
444
|
-
1125B2DC1C4AD3DA007D0023 /* AIRMapCalloutManager.m in Sources */,
|
|
445
|
-
);
|
|
446
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
447
|
-
};
|
|
448
|
-
/* End PBXSourcesBuildPhase section */
|
|
449
|
-
|
|
450
|
-
/* Begin XCBuildConfiguration section */
|
|
451
|
-
11FA5C581C4A1296003AC2EE /* Debug */ = {
|
|
452
|
-
isa = XCBuildConfiguration;
|
|
453
|
-
buildSettings = {
|
|
454
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
455
|
-
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
456
|
-
CLANG_CXX_LIBRARY = "libc++";
|
|
457
|
-
CLANG_ENABLE_MODULES = YES;
|
|
458
|
-
CLANG_ENABLE_OBJC_ARC = YES;
|
|
459
|
-
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
460
|
-
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
461
|
-
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
462
|
-
CLANG_WARN_EMPTY_BODY = YES;
|
|
463
|
-
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
464
|
-
CLANG_WARN_INT_CONVERSION = YES;
|
|
465
|
-
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
466
|
-
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
467
|
-
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
468
|
-
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
469
|
-
COPY_PHASE_STRIP = NO;
|
|
470
|
-
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
471
|
-
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
472
|
-
ENABLE_TESTABILITY = YES;
|
|
473
|
-
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
474
|
-
GCC_DYNAMIC_NO_PIC = NO;
|
|
475
|
-
GCC_NO_COMMON_BLOCKS = YES;
|
|
476
|
-
GCC_OPTIMIZATION_LEVEL = 0;
|
|
477
|
-
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
478
|
-
"DEBUG=1",
|
|
479
|
-
"$(inherited)",
|
|
480
|
-
);
|
|
481
|
-
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
482
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
483
|
-
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
484
|
-
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
485
|
-
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
486
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
487
|
-
HEADER_SEARCH_PATHS = "";
|
|
488
|
-
IPHONEOS_DEPLOYMENT_TARGET = 9.2;
|
|
489
|
-
MTL_ENABLE_DEBUG_INFO = YES;
|
|
490
|
-
ONLY_ACTIVE_ARCH = YES;
|
|
491
|
-
SDKROOT = iphoneos;
|
|
492
|
-
};
|
|
493
|
-
name = Debug;
|
|
494
|
-
};
|
|
495
|
-
11FA5C591C4A1296003AC2EE /* Release */ = {
|
|
496
|
-
isa = XCBuildConfiguration;
|
|
497
|
-
buildSettings = {
|
|
498
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
499
|
-
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
500
|
-
CLANG_CXX_LIBRARY = "libc++";
|
|
501
|
-
CLANG_ENABLE_MODULES = YES;
|
|
502
|
-
CLANG_ENABLE_OBJC_ARC = YES;
|
|
503
|
-
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
504
|
-
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
505
|
-
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
506
|
-
CLANG_WARN_EMPTY_BODY = YES;
|
|
507
|
-
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
508
|
-
CLANG_WARN_INT_CONVERSION = YES;
|
|
509
|
-
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
510
|
-
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
511
|
-
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
512
|
-
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
513
|
-
COPY_PHASE_STRIP = NO;
|
|
514
|
-
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
515
|
-
ENABLE_NS_ASSERTIONS = NO;
|
|
516
|
-
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
517
|
-
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
518
|
-
GCC_NO_COMMON_BLOCKS = YES;
|
|
519
|
-
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
520
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
521
|
-
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
522
|
-
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
523
|
-
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
524
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
525
|
-
HEADER_SEARCH_PATHS = "";
|
|
526
|
-
IPHONEOS_DEPLOYMENT_TARGET = 9.2;
|
|
527
|
-
MTL_ENABLE_DEBUG_INFO = NO;
|
|
528
|
-
SDKROOT = iphoneos;
|
|
529
|
-
VALIDATE_PRODUCT = YES;
|
|
530
|
-
};
|
|
531
|
-
name = Release;
|
|
532
|
-
};
|
|
533
|
-
11FA5C5B1C4A1296003AC2EE /* Debug */ = {
|
|
534
|
-
isa = XCBuildConfiguration;
|
|
535
|
-
baseConfigurationReference = 8BC85FAD2107C0BD0006CEA5 /* User.xcconfig */;
|
|
536
|
-
buildSettings = {
|
|
537
|
-
HEADER_SEARCH_PATHS = (
|
|
538
|
-
"$(SRCROOT)/../../react-native/React/**",
|
|
539
|
-
"$(SRCROOT)/../../react-native/Libraries/Image",
|
|
540
|
-
);
|
|
541
|
-
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
|
|
542
|
-
OTHER_LDFLAGS = "-ObjC";
|
|
543
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
544
|
-
SKIP_INSTALL = YES;
|
|
545
|
-
};
|
|
546
|
-
name = Debug;
|
|
547
|
-
};
|
|
548
|
-
11FA5C5C1C4A1296003AC2EE /* Release */ = {
|
|
549
|
-
isa = XCBuildConfiguration;
|
|
550
|
-
baseConfigurationReference = 8BC85FAD2107C0BD0006CEA5 /* User.xcconfig */;
|
|
551
|
-
buildSettings = {
|
|
552
|
-
HEADER_SEARCH_PATHS = (
|
|
553
|
-
"$(SRCROOT)/../../react-native/React/**",
|
|
554
|
-
"$(SRCROOT)/../../react-native/Libraries/Image",
|
|
555
|
-
);
|
|
556
|
-
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
|
|
557
|
-
OTHER_LDFLAGS = "-ObjC";
|
|
558
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
559
|
-
SKIP_INSTALL = YES;
|
|
560
|
-
};
|
|
561
|
-
name = Release;
|
|
562
|
-
};
|
|
563
|
-
/* End XCBuildConfiguration section */
|
|
564
|
-
|
|
565
|
-
/* Begin XCConfigurationList section */
|
|
566
|
-
11FA5C4C1C4A1296003AC2EE /* Build configuration list for PBXProject "AirMaps" */ = {
|
|
567
|
-
isa = XCConfigurationList;
|
|
568
|
-
buildConfigurations = (
|
|
569
|
-
11FA5C581C4A1296003AC2EE /* Debug */,
|
|
570
|
-
11FA5C591C4A1296003AC2EE /* Release */,
|
|
571
|
-
);
|
|
572
|
-
defaultConfigurationIsVisible = 0;
|
|
573
|
-
defaultConfigurationName = Release;
|
|
574
|
-
};
|
|
575
|
-
11FA5C5A1C4A1296003AC2EE /* Build configuration list for PBXNativeTarget "AirMaps" */ = {
|
|
576
|
-
isa = XCConfigurationList;
|
|
577
|
-
buildConfigurations = (
|
|
578
|
-
11FA5C5B1C4A1296003AC2EE /* Debug */,
|
|
579
|
-
11FA5C5C1C4A1296003AC2EE /* Release */,
|
|
580
|
-
);
|
|
581
|
-
defaultConfigurationIsVisible = 0;
|
|
582
|
-
defaultConfigurationName = Release;
|
|
583
|
-
};
|
|
584
|
-
/* End XCConfigurationList section */
|
|
585
|
-
};
|
|
586
|
-
rootObject = 11FA5C491C4A1296003AC2EE /* Project object */;
|
|
587
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|