@situm/cordova 3.0.0
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/CHANGELOG.md +3 -0
- package/CHANGELOG_UNRELEASED.md +28 -0
- package/Jenkinsfile +84 -0
- package/LICENSE +21 -0
- package/README.md +472 -0
- package/azure/common-steps.yaml +5 -0
- package/azure-pipelines.yml +336 -0
- package/docs/JSDoc/MapView.html +300 -0
- package/docs/JSDoc/MapViewControllerImpl.html +299 -0
- package/docs/JSDoc/Situm.html +5257 -0
- package/docs/JSDoc/android_Interfaces.js.html +825 -0
- package/docs/JSDoc/android_situm.js.html +380 -0
- package/docs/JSDoc/fonts/glyphicons-halflings-regular.eot +0 -0
- package/docs/JSDoc/fonts/glyphicons-halflings-regular.svg +288 -0
- package/docs/JSDoc/fonts/glyphicons-halflings-regular.ttf +0 -0
- package/docs/JSDoc/fonts/glyphicons-halflings-regular.woff +0 -0
- package/docs/JSDoc/fonts/glyphicons-halflings-regular.woff2 +0 -0
- package/docs/JSDoc/global.html +7538 -0
- package/docs/JSDoc/img/toast-ui.png +0 -0
- package/docs/JSDoc/index.html +90 -0
- package/docs/JSDoc/map-view-controller.js.html +307 -0
- package/docs/JSDoc/map-view.js.html +172 -0
- package/docs/JSDoc/scripts/jquery.min.js +2 -0
- package/docs/JSDoc/scripts/linenumber.js +30 -0
- package/docs/JSDoc/scripts/prettify/Apache-License-2.0.txt +202 -0
- package/docs/JSDoc/scripts/prettify/lang-css.js +2 -0
- package/docs/JSDoc/scripts/prettify/prettify.js +28 -0
- package/docs/JSDoc/scripts/tui-doc.js +200 -0
- package/docs/JSDoc/styles/bootstrap.min.css +6 -0
- package/docs/JSDoc/styles/custom.css +23 -0
- package/docs/JSDoc/styles/prettify-jsdoc.css +111 -0
- package/docs/JSDoc/styles/prettify-tomorrow.css +132 -0
- package/docs/JSDoc/styles/tui-doc.css +485 -0
- package/docs/conf.json +28 -0
- package/docs/getting-started.md +298 -0
- package/docs/imagotype-SITUM-transparent-90.png +0 -0
- package/docs/static/styles/custom.css +23 -0
- package/package.json +60 -0
- package/plugin.xml +102 -0
- package/scripts/update_changelog.sh +22 -0
- package/src/android/app/build.gradle +51 -0
- package/src/android/app/proguard-rules.pro +21 -0
- package/src/android/app/src/main/AndroidManifest.xml +11 -0
- package/src/android/app/src/main/java/es/situm/plugin/DateUtils.java +15 -0
- package/src/android/app/src/main/java/es/situm/plugin/PluginHelper.java +919 -0
- package/src/android/app/src/main/java/es/situm/plugin/SitumMapper.java +968 -0
- package/src/android/app/src/main/java/es/situm/plugin/SitumPlugin.java +109 -0
- package/src/android/app/src/main/res/drawable/ic_launcher_background.xml +170 -0
- package/src/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml +34 -0
- package/src/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +5 -0
- package/src/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +5 -0
- package/src/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/src/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/src/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/src/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/src/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/src/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/src/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/src/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/src/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/src/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/src/android/app/src/main/res/values/colors.xml +6 -0
- package/src/android/app/src/main/res/values/strings.xml +3 -0
- package/src/android/app/src/main/res/values/styles.xml +11 -0
- package/src/android/app/src/test/java/es/situm/plugin/PluginHelperTest.java +27 -0
- package/src/android/app/src/test/java/es/situm/plugin/SitumMapperTest.java +1485 -0
- package/src/android/app/src/test/java/es/situm/plugin/angle/AngleCreator.java +46 -0
- package/src/android/app/src/test/java/es/situm/plugin/bounds/BoundsCreator.java +50 -0
- package/src/android/app/src/test/java/es/situm/plugin/building/BuildingCreator.java +76 -0
- package/src/android/app/src/test/java/es/situm/plugin/cartesianCoordinate/CartesianCoordinateCreator.java +31 -0
- package/src/android/app/src/test/java/es/situm/plugin/circle/CircleCreator.java +41 -0
- package/src/android/app/src/test/java/es/situm/plugin/coordinate/CoordinateCreator.java +32 -0
- package/src/android/app/src/test/java/es/situm/plugin/dimensions/DimensionsCreator.java +31 -0
- package/src/android/app/src/test/java/es/situm/plugin/directionsRequest/DirectionsRequestCreator.java +105 -0
- package/src/android/app/src/test/java/es/situm/plugin/event/EventCreator.java +108 -0
- package/src/android/app/src/test/java/es/situm/plugin/floor/FloorCreator.java +58 -0
- package/src/android/app/src/test/java/es/situm/plugin/indication/IndicationCreator.java +40 -0
- package/src/android/app/src/test/java/es/situm/plugin/location/LocationCreator.java +197 -0
- package/src/android/app/src/test/java/es/situm/plugin/locationRequest/LocationRequestCreator.java +45 -0
- package/src/android/app/src/test/java/es/situm/plugin/locationStatus/LocationStatusCreator.java +211 -0
- package/src/android/app/src/test/java/es/situm/plugin/navigationProgress/NavigationProgressCreator.java +154 -0
- package/src/android/app/src/test/java/es/situm/plugin/poi/PoiCreator.java +126 -0
- package/src/android/app/src/test/java/es/situm/plugin/poiCategory/PoiCategoryCreator.java +38 -0
- package/src/android/app/src/test/java/es/situm/plugin/point/PointCreator.java +200 -0
- package/src/android/app/src/test/java/es/situm/plugin/route/RouteCreator.java +142 -0
- package/src/android/app/src/test/java/es/situm/plugin/routeStep/RouteStepCreator.java +173 -0
- package/src/android/app/src/test/java/es/situm/plugin/situmConversionArea/SitumConversionAreaCreator.java +35 -0
- package/src/android/build.gradle +31 -0
- package/src/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/src/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/src/android/gradle.properties +16 -0
- package/src/android/gradlew +172 -0
- package/src/android/gradlew.bat +84 -0
- package/src/android/settings.gradle +3 -0
- package/src/android/situm.gradle +19 -0
- package/src/ios/Classes/Private/CDVDebug.h +25 -0
- package/src/ios/Classes/Private/CDVJSON_private.h +31 -0
- package/src/ios/Classes/Private/CDVJSON_private.m +99 -0
- package/src/ios/Classes/Private/CDVPlugin+Private.h +24 -0
- package/src/ios/Classes/Private/CDVPlugins/CDVGestureHandler/CDVGestureHandler.h +26 -0
- package/src/ios/Classes/Private/CDVPlugins/CDVGestureHandler/CDVGestureHandler.m +70 -0
- package/src/ios/Classes/Private/CDVPlugins/CDVHandleOpenURL/CDVHandleOpenURL.h +27 -0
- package/src/ios/Classes/Private/CDVPlugins/CDVHandleOpenURL/CDVHandleOpenURL.m +86 -0
- package/src/ios/Classes/Private/CDVPlugins/CDVIntentAndNavigationFilter/CDVIntentAndNavigationFilter.h +34 -0
- package/src/ios/Classes/Private/CDVPlugins/CDVIntentAndNavigationFilter/CDVIntentAndNavigationFilter.m +153 -0
- package/src/ios/Classes/Private/CDVPlugins/CDVLocalStorage/CDVLocalStorage.h +50 -0
- package/src/ios/Classes/Private/CDVPlugins/CDVLocalStorage/CDVLocalStorage.m +487 -0
- package/src/ios/Classes/Private/CDVPlugins/CDVLogger/CDVLogger.h +26 -0
- package/src/ios/Classes/Private/CDVPlugins/CDVLogger/CDVLogger.m +37 -0
- package/src/ios/Classes/Private/CDVPlugins/CDVUIWebViewEngine/CDVUIWebViewDelegate.h +41 -0
- package/src/ios/Classes/Private/CDVPlugins/CDVUIWebViewEngine/CDVUIWebViewDelegate.m +399 -0
- package/src/ios/Classes/Private/CDVPlugins/CDVUIWebViewEngine/CDVUIWebViewEngine.h +27 -0
- package/src/ios/Classes/Private/CDVPlugins/CDVUIWebViewEngine/CDVUIWebViewEngine.m +202 -0
- package/src/ios/Classes/Private/CDVPlugins/CDVUIWebViewEngine/CDVUIWebViewNavigationDelegate.h +29 -0
- package/src/ios/Classes/Private/CDVPlugins/CDVUIWebViewEngine/CDVUIWebViewNavigationDelegate.m +153 -0
- package/src/ios/Classes/Public/CDV.h +32 -0
- package/src/ios/Classes/Public/CDVAppDelegate.h +28 -0
- package/src/ios/Classes/Public/CDVAppDelegate.m +118 -0
- package/src/ios/Classes/Public/CDVAvailability.h +111 -0
- package/src/ios/Classes/Public/CDVAvailabilityDeprecated.h +26 -0
- package/src/ios/Classes/Public/CDVCommandDelegate.h +51 -0
- package/src/ios/Classes/Public/CDVCommandDelegateImpl.h +36 -0
- package/src/ios/Classes/Public/CDVCommandDelegateImpl.m +186 -0
- package/src/ios/Classes/Public/CDVCommandQueue.h +39 -0
- package/src/ios/Classes/Public/CDVCommandQueue.m +194 -0
- package/src/ios/Classes/Public/CDVConfigParser.h +30 -0
- package/src/ios/Classes/Public/CDVConfigParser.m +81 -0
- package/src/ios/Classes/Public/CDVInvokedUrlCommand.h +52 -0
- package/src/ios/Classes/Public/CDVInvokedUrlCommand.m +116 -0
- package/src/ios/Classes/Public/CDVPlugin+Resources.h +39 -0
- package/src/ios/Classes/Public/CDVPlugin+Resources.m +38 -0
- package/src/ios/Classes/Public/CDVPlugin.h +85 -0
- package/src/ios/Classes/Public/CDVPlugin.m +202 -0
- package/src/ios/Classes/Public/CDVPluginResult.h +66 -0
- package/src/ios/Classes/Public/CDVPluginResult.m +186 -0
- package/src/ios/Classes/Public/CDVScreenOrientationDelegate.h +33 -0
- package/src/ios/Classes/Public/CDVTimer.h +27 -0
- package/src/ios/Classes/Public/CDVTimer.m +123 -0
- package/src/ios/Classes/Public/CDVURLProtocol.h +27 -0
- package/src/ios/Classes/Public/CDVURLProtocol.m +113 -0
- package/src/ios/Classes/Public/CDVUserAgentUtil.h +27 -0
- package/src/ios/Classes/Public/CDVUserAgentUtil.m +124 -0
- package/src/ios/Classes/Public/CDVViewController.h +92 -0
- package/src/ios/Classes/Public/CDVViewController.m +821 -0
- package/src/ios/Classes/Public/CDVWebViewEngineProtocol.h +42 -0
- package/src/ios/Classes/Public/CDVWhitelist.h +34 -0
- package/src/ios/Classes/Public/CDVWhitelist.m +285 -0
- package/src/ios/Classes/Public/NSDictionary+CordovaPreferences.h +35 -0
- package/src/ios/Classes/Public/NSDictionary+CordovaPreferences.m +63 -0
- package/src/ios/Classes/Public/NSMutableArray+QueueAdditions.h +29 -0
- package/src/ios/Classes/Public/NSMutableArray+QueueAdditions.m +58 -0
- package/src/ios/Cordova/Cordova.h +51 -0
- package/src/ios/Cordova/Info.plist +24 -0
- package/src/ios/Podfile +5 -0
- package/src/ios/SitumCordovaPlugin.xcodeproj/project.pbxproj +1324 -0
- package/src/ios/SitumCordovaPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/src/ios/SitumCordovaPlugin.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/src/ios/SitumCordovaPlugin.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/src/ios/SitumCordovaPlugin.xcodeproj/xcshareddata/xcschemes/CordovaLib.xcscheme +100 -0
- package/src/ios/SitumCordovaPlugin.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/src/ios/SitumCordovaPlugin_Prefix.pch +22 -0
- package/src/ios/VERSION +1 -0
- package/src/ios/cordova.js +2432 -0
- package/src/ios/situmcordovaplugin/AppDelegate.h +22 -0
- package/src/ios/situmcordovaplugin/AppDelegate.m +98 -0
- package/src/ios/situmcordovaplugin/Assets.xcassets/AppIcon.appiconset/Contents.json +98 -0
- package/src/ios/situmcordovaplugin/Base.lproj/LaunchScreen.storyboard +25 -0
- package/src/ios/situmcordovaplugin/Base.lproj/Main.storyboard +24 -0
- package/src/ios/situmcordovaplugin/Constants.h +14 -0
- package/src/ios/situmcordovaplugin/Constants.m +14 -0
- package/src/ios/situmcordovaplugin/Info.plist +45 -0
- package/src/ios/situmcordovaplugin/SITUtils.h +7 -0
- package/src/ios/situmcordovaplugin/SITUtils.m +13 -0
- package/src/ios/situmcordovaplugin/SitumLocationWrapper.h +109 -0
- package/src/ios/situmcordovaplugin/SitumLocationWrapper.m +983 -0
- package/src/ios/situmcordovaplugin/SitumPlugin.h +41 -0
- package/src/ios/situmcordovaplugin/SitumPlugin.m +752 -0
- package/src/ios/situmcordovaplugin/ViewController.h +15 -0
- package/src/ios/situmcordovaplugin/ViewController.m +29 -0
- package/src/ios/situmcordovaplugin/main.m +16 -0
- package/src/ios/situmcordovaplugin/situmcordovaplugin.xcdatamodeld/.xccurrentversion +8 -0
- package/src/ios/situmcordovaplugin/situmcordovaplugin.xcdatamodeld/situmcordovaplugin.xcdatamodel/contents +4 -0
- package/src/ios/situmcordovaplugintests/AngleTests.m +53 -0
- package/src/ios/situmcordovaplugintests/BoundTests.m +51 -0
- package/src/ios/situmcordovaplugintests/BuildingTests.m +41 -0
- package/src/ios/situmcordovaplugintests/CartesianCoordinateTests.m +42 -0
- package/src/ios/situmcordovaplugintests/ConversionAreaTests.m +43 -0
- package/src/ios/situmcordovaplugintests/CoordinateTests.m +42 -0
- package/src/ios/situmcordovaplugintests/DimensionTests.m +43 -0
- package/src/ios/situmcordovaplugintests/EventTests.m +42 -0
- package/src/ios/situmcordovaplugintests/FloorTests.m +52 -0
- package/src/ios/situmcordovaplugintests/Info.plist +38 -0
- package/src/ios/situmcordovaplugintests/InputTests/DirectionsRequestTest.m +108 -0
- package/src/ios/situmcordovaplugintests/InputTests/InputCartesianCoordinateTests.m +45 -0
- package/src/ios/situmcordovaplugintests/InputTests/InputCoordinateTests.m +45 -0
- package/src/ios/situmcordovaplugintests/InputTests/InputFloorTests.m +59 -0
- package/src/ios/situmcordovaplugintests/InputTests/InputIndicationTests.m +45 -0
- package/src/ios/situmcordovaplugintests/InputTests/InputLocationTests.m +163 -0
- package/src/ios/situmcordovaplugintests/InputTests/InputPoiCategoryTests.m +46 -0
- package/src/ios/situmcordovaplugintests/InputTests/InputPointTests.m +137 -0
- package/src/ios/situmcordovaplugintests/InputTests/LocationRequestTest.m +79 -0
- package/src/ios/situmcordovaplugintests/LocationStatusTests.m +60 -0
- package/src/ios/situmcordovaplugintests/LocationTests.m +114 -0
- package/src/ios/situmcordovaplugintests/NavigationProgressTests.m +50 -0
- package/src/ios/situmcordovaplugintests/PoiCategoryIconTests.m +43 -0
- package/src/ios/situmcordovaplugintests/PoiCategoryTests.m +42 -0
- package/src/ios/situmcordovaplugintests/PoiTests.m +83 -0
- package/src/ios/situmcordovaplugintests/PointTests.m +107 -0
- package/src/ios/situmcordovaplugintests/RouteStepTests.m +78 -0
- package/src/ios/situmcordovaplugintests/RouteTests.m +42 -0
- package/src/ios/situmcordovaplugintests/SitumCreatorTests.h +91 -0
- package/src/ios/situmcordovaplugintests/SitumCreatorTests.m +928 -0
- package/src/ios/situmcordovaplugintests/TestingHelper.h +48 -0
- package/src/ios/situmcordovaplugintests/TestingHelper.m +342 -0
- package/src/ios/situmcordovaplugintests/indicationTests.m +43 -0
- package/tests/common-resources/angle/angle1.json +6 -0
- package/tests/common-resources/angle/angle2.json +6 -0
- package/tests/common-resources/bounds/bounds1.json +18 -0
- package/tests/common-resources/bounds/bounds2.json +18 -0
- package/tests/common-resources/building/building1.json +64 -0
- package/tests/common-resources/cartesianCoordinate/cartesianCoordinate1.json +4 -0
- package/tests/common-resources/circle/circle1.json +17 -0
- package/tests/common-resources/coordinate/coordinate1.json +4 -0
- package/tests/common-resources/dimensions/dimensions1.json +4 -0
- package/tests/common-resources/directionsRequest/directionsRequest1.json +166 -0
- package/tests/common-resources/directionsRequest/directionsRequest2.json +167 -0
- package/tests/common-resources/directionsRequest/directionsRequest3.json +166 -0
- package/tests/common-resources/directionsRequest/directionsRequest4.json +166 -0
- package/tests/common-resources/directionsRequest/directionsRequest5.json +167 -0
- package/tests/common-resources/directionsRequest/directionsRequest6.json +153 -0
- package/tests/common-resources/events/event1.json +66 -0
- package/tests/common-resources/floor/floor1.json +13 -0
- package/tests/common-resources/floor/floor2.json +13 -0
- package/tests/common-resources/indication/indication1.json +10 -0
- package/tests/common-resources/location/location1.json +48 -0
- package/tests/common-resources/location/location10.json +48 -0
- package/tests/common-resources/location/location2.json +48 -0
- package/tests/common-resources/location/location3.json +48 -0
- package/tests/common-resources/location/location4.json +48 -0
- package/tests/common-resources/location/location5.json +48 -0
- package/tests/common-resources/location/location6.json +48 -0
- package/tests/common-resources/location/location7.json +48 -0
- package/tests/common-resources/location/location8.json +48 -0
- package/tests/common-resources/location/location9.json +48 -0
- package/tests/common-resources/locationRequest/locationRequest1.json +6 -0
- package/tests/common-resources/locationRequest/locationRequest2.json +32 -0
- package/tests/common-resources/locationRequest/locationRequest3.json +33 -0
- package/tests/common-resources/locationRequest/locationRequest4.json +31 -0
- package/tests/common-resources/locationStatus/locationStatus1.json +4 -0
- package/tests/common-resources/locationStatus/locationStatus10.json +4 -0
- package/tests/common-resources/locationStatus/locationStatus11.json +4 -0
- package/tests/common-resources/locationStatus/locationStatus12.json +4 -0
- package/tests/common-resources/locationStatus/locationStatus13.json +4 -0
- package/tests/common-resources/locationStatus/locationStatus2.json +4 -0
- package/tests/common-resources/locationStatus/locationStatus3.json +4 -0
- package/tests/common-resources/locationStatus/locationStatus4.json +4 -0
- package/tests/common-resources/locationStatus/locationStatus5.json +4 -0
- package/tests/common-resources/locationStatus/locationStatus6.json +4 -0
- package/tests/common-resources/locationStatus/locationStatus7.json +4 -0
- package/tests/common-resources/locationStatus/locationStatus8.json +4 -0
- package/tests/common-resources/locationStatus/locationStatus9.json +4 -0
- package/tests/common-resources/navigationProgress/navigationProgress1.json +77 -0
- package/tests/common-resources/navigationProgress/navigationProgress2.json +77 -0
- package/tests/common-resources/poi/poi1.json +35 -0
- package/tests/common-resources/poi/poi2.json +35 -0
- package/tests/common-resources/poi/poi3.json +35 -0
- package/tests/common-resources/poi/poi4.json +38 -0
- package/tests/common-resources/poi/poi5.json +35 -0
- package/tests/common-resources/poiCategory/poiCategory1.json +7 -0
- package/tests/common-resources/poiCategoryIcon/poiCategoryIcon1.json +1 -0
- package/tests/common-resources/poiCategoryIcon/poiCategoryIcon1.png +0 -0
- package/tests/common-resources/point/point1.json +14 -0
- package/tests/common-resources/point/point2.json +14 -0
- package/tests/common-resources/point/point3.json +14 -0
- package/tests/common-resources/point/point4.json +14 -0
- package/tests/common-resources/point/point5.json +14 -0
- package/tests/common-resources/point/point6.json +14 -0
- package/tests/common-resources/point/point7.json +14 -0
- package/tests/common-resources/point/point8.json +14 -0
- package/tests/common-resources/route/route1.json +530 -0
- package/tests/common-resources/routeStep/routeStep1.json +35 -0
- package/tests/common-resources/routeStep/routeStep2.json +35 -0
- package/tests/common-resources/routeStep/routeStep3.json +35 -0
- package/tests/common-resources/routeStep/routeStep4.json +35 -0
- package/tests/common-resources/routeStep/routeStep5.json +35 -0
- package/tests/common-resources/situmConversionArea/situmConversionArea1.json +19 -0
- package/tests/js/resources/fetchBuildings.json +176 -0
- package/tests/js/resources/fetchEventsFromBuilding.json +201 -0
- package/tests/js/resources/fetchFloorsFromBuilding.json +34 -0
- package/tests/js/resources/fetchIndoorPOIsFromBuilding.json +574 -0
- package/tests/js/resources/fetchMapFromFloor.json +3 -0
- package/tests/js/resources/fetchOutdoorPOIsFromBuilding.json +68 -0
- package/tests/js/resources/fetchPoiCategories.json +72 -0
- package/tests/js/resources/fetchPoiCategoryIconNormal.json +3 -0
- package/tests/js/resources/fetchPoiCategoryIconSelected.json +3 -0
- package/tests/js/resources/requestDirections.json +1167 -0
- package/tests/js/resources/startPositioning/0_starting.json +4 -0
- package/tests/js/resources/startPositioning/1_preparingPositioningModel.json +4 -0
- package/tests/js/resources/startPositioning/2_startingPositioning.json +4 -0
- package/tests/js/resources/startPositioning/3_calculating.json +4 -0
- package/tests/js/resources/startPositioning/4_position.json +48 -0
- package/tests/js/resources/startPositioning/5_position.json +48 -0
- package/tests/js/test.js +416 -0
- package/tests/scripts/clean_android_resources.sh +3 -0
- package/tests/scripts/clean_ios_resources.sh +3 -0
- package/tests/scripts/copy_android_resources.sh +3 -0
- package/tests/scripts/copy_ios_resources.sh +3 -0
- package/tests/scripts/self-destruct.sh +1 -0
- package/www/android/Interfaces.js +742 -0
- package/www/android/situm.js +296 -0
- package/www/ios/situm.js +99 -0
- package/www/map-view-controller.js +223 -0
- package/www/map-view.js +88 -0
|
@@ -0,0 +1,1324 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 46;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
0D5CFD50212C275E00C6E436 /* CDVGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D5CFD3B212C275E00C6E436 /* CDVGestureHandler.h */; };
|
|
11
|
+
0D5CFD51212C275E00C6E436 /* CDVGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D5CFD3C212C275E00C6E436 /* CDVGestureHandler.m */; };
|
|
12
|
+
0D5CFD52212C275E00C6E436 /* CDVGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D5CFD3C212C275E00C6E436 /* CDVGestureHandler.m */; };
|
|
13
|
+
0D5CFD53212C275E00C6E436 /* CDVIntentAndNavigationFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D5CFD3E212C275E00C6E436 /* CDVIntentAndNavigationFilter.m */; };
|
|
14
|
+
0D5CFD54212C275E00C6E436 /* CDVIntentAndNavigationFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D5CFD3E212C275E00C6E436 /* CDVIntentAndNavigationFilter.m */; };
|
|
15
|
+
0D5CFD55212C275E00C6E436 /* CDVIntentAndNavigationFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D5CFD3F212C275E00C6E436 /* CDVIntentAndNavigationFilter.h */; };
|
|
16
|
+
0D5CFD56212C275E00C6E436 /* CDVHandleOpenURL.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D5CFD41212C275E00C6E436 /* CDVHandleOpenURL.h */; };
|
|
17
|
+
0D5CFD57212C275E00C6E436 /* CDVHandleOpenURL.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D5CFD42212C275E00C6E436 /* CDVHandleOpenURL.m */; };
|
|
18
|
+
0D5CFD58212C275E00C6E436 /* CDVHandleOpenURL.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D5CFD42212C275E00C6E436 /* CDVHandleOpenURL.m */; };
|
|
19
|
+
0D5CFD59212C275E00C6E436 /* CDVLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D5CFD44212C275E00C6E436 /* CDVLogger.h */; };
|
|
20
|
+
0D5CFD5A212C275E00C6E436 /* CDVLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D5CFD45212C275E00C6E436 /* CDVLogger.m */; };
|
|
21
|
+
0D5CFD5B212C275E00C6E436 /* CDVLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D5CFD45212C275E00C6E436 /* CDVLogger.m */; };
|
|
22
|
+
0D5CFD5C212C275E00C6E436 /* CDVLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D5CFD47212C275E00C6E436 /* CDVLocalStorage.m */; };
|
|
23
|
+
0D5CFD5D212C275E00C6E436 /* CDVLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D5CFD47212C275E00C6E436 /* CDVLocalStorage.m */; };
|
|
24
|
+
0D5CFD5E212C275E00C6E436 /* CDVLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D5CFD48212C275E00C6E436 /* CDVLocalStorage.h */; };
|
|
25
|
+
0D5CFD5F212C275E00C6E436 /* CDVUIWebViewNavigationDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D5CFD4A212C275E00C6E436 /* CDVUIWebViewNavigationDelegate.h */; };
|
|
26
|
+
0D5CFD60212C275E00C6E436 /* CDVUIWebViewDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D5CFD4B212C275E00C6E436 /* CDVUIWebViewDelegate.m */; };
|
|
27
|
+
0D5CFD61212C275E00C6E436 /* CDVUIWebViewDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D5CFD4B212C275E00C6E436 /* CDVUIWebViewDelegate.m */; };
|
|
28
|
+
0D5CFD62212C275E00C6E436 /* CDVUIWebViewEngine.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D5CFD4C212C275E00C6E436 /* CDVUIWebViewEngine.h */; };
|
|
29
|
+
0D5CFD63212C275E00C6E436 /* CDVUIWebViewNavigationDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D5CFD4D212C275E00C6E436 /* CDVUIWebViewNavigationDelegate.m */; };
|
|
30
|
+
0D5CFD64212C275E00C6E436 /* CDVUIWebViewNavigationDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D5CFD4D212C275E00C6E436 /* CDVUIWebViewNavigationDelegate.m */; };
|
|
31
|
+
0D5CFD65212C275E00C6E436 /* CDVUIWebViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D5CFD4E212C275E00C6E436 /* CDVUIWebViewDelegate.h */; };
|
|
32
|
+
0D5CFD66212C275E00C6E436 /* CDVUIWebViewEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D5CFD4F212C275E00C6E436 /* CDVUIWebViewEngine.m */; };
|
|
33
|
+
0D5CFD67212C275E00C6E436 /* CDVUIWebViewEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D5CFD4F212C275E00C6E436 /* CDVUIWebViewEngine.m */; };
|
|
34
|
+
0D884A1321145F820066C765 /* libCordova.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 68A32D7114102E1C006B237C /* libCordova.a */; };
|
|
35
|
+
0D884A202114634E0066C765 /* SitumCreatorTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D884A1B2114634D0066C765 /* SitumCreatorTests.m */; };
|
|
36
|
+
0D884A222114634E0066C765 /* TestingHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D884A1D2114634E0066C765 /* TestingHelper.m */; };
|
|
37
|
+
0D884A232114644C0066C765 /* SitumSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0D884A0821145E510066C765 /* SitumSDK.framework */; };
|
|
38
|
+
0D884E7D2116FAA20066C765 /* resources in Resources */ = {isa = PBXBuildFile; fileRef = 0D884E7C2116FAA20066C765 /* resources */; };
|
|
39
|
+
0D884E832117012F0066C765 /* resources in Resources */ = {isa = PBXBuildFile; fileRef = 0D884E7C2116FAA20066C765 /* resources */; };
|
|
40
|
+
0D884E87211708900066C765 /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 0D884A1221145F820066C765 /* Info.plist */; };
|
|
41
|
+
0DF4AB1721143D5800D81A31 /* AppDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DF4AB0621143D5700D81A31 /* AppDelegate.h */; };
|
|
42
|
+
0DF4AB1821143D5800D81A31 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DF4AB0721143D5700D81A31 /* AppDelegate.m */; };
|
|
43
|
+
0DF4AB1921143D5800D81A31 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DF4AB0E21143D5700D81A31 /* main.m */; };
|
|
44
|
+
0DF4AB1A21143D5800D81A31 /* situmcordovaplugin.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = 0DF4AB0F21143D5700D81A31 /* situmcordovaplugin.xcdatamodeld */; };
|
|
45
|
+
0DF4AB1B21143D5800D81A31 /* SitumLocationWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DF4AB1121143D5700D81A31 /* SitumLocationWrapper.h */; };
|
|
46
|
+
0DF4AB1C21143D5800D81A31 /* SitumLocationWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DF4AB1221143D5700D81A31 /* SitumLocationWrapper.m */; };
|
|
47
|
+
0DF4AB1D21143D5800D81A31 /* SitumPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DF4AB1321143D5700D81A31 /* SitumPlugin.h */; };
|
|
48
|
+
0DF4AB1E21143D5800D81A31 /* SitumPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DF4AB1421143D5700D81A31 /* SitumPlugin.m */; };
|
|
49
|
+
0DF4AB1F21143D5800D81A31 /* ViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DF4AB1521143D5700D81A31 /* ViewController.h */; };
|
|
50
|
+
0DF4AB2021143D5800D81A31 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DF4AB1621143D5700D81A31 /* ViewController.m */; };
|
|
51
|
+
29A6B8BBD41A308233C44F3E /* Pods_SitumCordovaPlugin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BF639F8C42C24AB0EC736F85 /* Pods_SitumCordovaPlugin.framework */; };
|
|
52
|
+
3A4011372153B0D500AC3BD5 /* InputCoordinateTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A4011362153B0D500AC3BD5 /* InputCoordinateTests.m */; };
|
|
53
|
+
3A4011392153B24400AC3BD5 /* InputLocationTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A4011382153B24400AC3BD5 /* InputLocationTests.m */; };
|
|
54
|
+
3A40113B2153C4CB00AC3BD5 /* InputPoiCategoryTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A40113A2153C4CB00AC3BD5 /* InputPoiCategoryTests.m */; };
|
|
55
|
+
3A40113D2153CBA800AC3BD5 /* InputIndicationTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A40113C2153CBA800AC3BD5 /* InputIndicationTests.m */; };
|
|
56
|
+
3A4D721721525B970038ED55 /* InputPointTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A4D721621525B970038ED55 /* InputPointTests.m */; };
|
|
57
|
+
3A4D721B215276660038ED55 /* InputCartesianCoordinateTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A4D721A215276660038ED55 /* InputCartesianCoordinateTests.m */; };
|
|
58
|
+
3AC2FF4E21ADA883005D438A /* SitumSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3AC2FF4D21ADA883005D438A /* SitumSDK.framework */; };
|
|
59
|
+
7ED95D021AB9028C008C4574 /* CDVDebug.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95CF21AB9028C008C4574 /* CDVDebug.h */; };
|
|
60
|
+
7ED95D031AB9028C008C4574 /* CDVJSON_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95CF31AB9028C008C4574 /* CDVJSON_private.h */; };
|
|
61
|
+
7ED95D041AB9028C008C4574 /* CDVJSON_private.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ED95CF41AB9028C008C4574 /* CDVJSON_private.m */; };
|
|
62
|
+
7ED95D051AB9028C008C4574 /* CDVPlugin+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95CF51AB9028C008C4574 /* CDVPlugin+Private.h */; };
|
|
63
|
+
7ED95D351AB9029B008C4574 /* CDV.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D0F1AB9029B008C4574 /* CDV.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
64
|
+
7ED95D361AB9029B008C4574 /* CDVAppDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D101AB9029B008C4574 /* CDVAppDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
65
|
+
7ED95D371AB9029B008C4574 /* CDVAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ED95D111AB9029B008C4574 /* CDVAppDelegate.m */; };
|
|
66
|
+
7ED95D381AB9029B008C4574 /* CDVAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D121AB9029B008C4574 /* CDVAvailability.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
67
|
+
7ED95D391AB9029B008C4574 /* CDVAvailabilityDeprecated.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D131AB9029B008C4574 /* CDVAvailabilityDeprecated.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
68
|
+
7ED95D3A1AB9029B008C4574 /* CDVCommandDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D141AB9029B008C4574 /* CDVCommandDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
69
|
+
7ED95D3B1AB9029B008C4574 /* CDVCommandDelegateImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D151AB9029B008C4574 /* CDVCommandDelegateImpl.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
70
|
+
7ED95D3C1AB9029B008C4574 /* CDVCommandDelegateImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ED95D161AB9029B008C4574 /* CDVCommandDelegateImpl.m */; };
|
|
71
|
+
7ED95D3D1AB9029B008C4574 /* CDVCommandQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D171AB9029B008C4574 /* CDVCommandQueue.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
72
|
+
7ED95D3E1AB9029B008C4574 /* CDVCommandQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ED95D181AB9029B008C4574 /* CDVCommandQueue.m */; };
|
|
73
|
+
7ED95D3F1AB9029B008C4574 /* CDVConfigParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D191AB9029B008C4574 /* CDVConfigParser.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
74
|
+
7ED95D401AB9029B008C4574 /* CDVConfigParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ED95D1A1AB9029B008C4574 /* CDVConfigParser.m */; };
|
|
75
|
+
7ED95D411AB9029B008C4574 /* CDVInvokedUrlCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D1B1AB9029B008C4574 /* CDVInvokedUrlCommand.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
76
|
+
7ED95D421AB9029B008C4574 /* CDVInvokedUrlCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ED95D1C1AB9029B008C4574 /* CDVInvokedUrlCommand.m */; };
|
|
77
|
+
7ED95D431AB9029B008C4574 /* CDVPlugin+Resources.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D1D1AB9029B008C4574 /* CDVPlugin+Resources.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
78
|
+
7ED95D441AB9029B008C4574 /* CDVPlugin+Resources.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ED95D1E1AB9029B008C4574 /* CDVPlugin+Resources.m */; };
|
|
79
|
+
7ED95D451AB9029B008C4574 /* CDVPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D1F1AB9029B008C4574 /* CDVPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
80
|
+
7ED95D461AB9029B008C4574 /* CDVPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ED95D201AB9029B008C4574 /* CDVPlugin.m */; };
|
|
81
|
+
7ED95D471AB9029B008C4574 /* CDVPluginResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D211AB9029B008C4574 /* CDVPluginResult.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
82
|
+
7ED95D481AB9029B008C4574 /* CDVPluginResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ED95D221AB9029B008C4574 /* CDVPluginResult.m */; };
|
|
83
|
+
7ED95D491AB9029B008C4574 /* CDVScreenOrientationDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D231AB9029B008C4574 /* CDVScreenOrientationDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
84
|
+
7ED95D4A1AB9029B008C4574 /* CDVTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D241AB9029B008C4574 /* CDVTimer.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
85
|
+
7ED95D4B1AB9029B008C4574 /* CDVTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ED95D251AB9029B008C4574 /* CDVTimer.m */; };
|
|
86
|
+
7ED95D4C1AB9029B008C4574 /* CDVURLProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D261AB9029B008C4574 /* CDVURLProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
87
|
+
7ED95D4D1AB9029B008C4574 /* CDVURLProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ED95D271AB9029B008C4574 /* CDVURLProtocol.m */; };
|
|
88
|
+
7ED95D4E1AB9029B008C4574 /* CDVUserAgentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D281AB9029B008C4574 /* CDVUserAgentUtil.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
89
|
+
7ED95D4F1AB9029B008C4574 /* CDVUserAgentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ED95D291AB9029B008C4574 /* CDVUserAgentUtil.m */; };
|
|
90
|
+
7ED95D501AB9029B008C4574 /* CDVViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D2A1AB9029B008C4574 /* CDVViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
91
|
+
7ED95D511AB9029B008C4574 /* CDVViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ED95D2B1AB9029B008C4574 /* CDVViewController.m */; };
|
|
92
|
+
7ED95D521AB9029B008C4574 /* CDVWebViewEngineProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D2C1AB9029B008C4574 /* CDVWebViewEngineProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
93
|
+
7ED95D531AB9029B008C4574 /* CDVWhitelist.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D2D1AB9029B008C4574 /* CDVWhitelist.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
94
|
+
7ED95D541AB9029B008C4574 /* CDVWhitelist.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ED95D2E1AB9029B008C4574 /* CDVWhitelist.m */; };
|
|
95
|
+
7ED95D571AB9029B008C4574 /* NSDictionary+CordovaPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D311AB9029B008C4574 /* NSDictionary+CordovaPreferences.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
96
|
+
7ED95D581AB9029B008C4574 /* NSDictionary+CordovaPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ED95D321AB9029B008C4574 /* NSDictionary+CordovaPreferences.m */; };
|
|
97
|
+
7ED95D591AB9029B008C4574 /* NSMutableArray+QueueAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D331AB9029B008C4574 /* NSMutableArray+QueueAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
98
|
+
7ED95D5A1AB9029B008C4574 /* NSMutableArray+QueueAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ED95D341AB9029B008C4574 /* NSMutableArray+QueueAdditions.m */; };
|
|
99
|
+
952D03B021B160DE000C6530 /* DirectionsRequestTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 952D03AF21B160DE000C6530 /* DirectionsRequestTest.m */; };
|
|
100
|
+
954995F0214F8BBB007F3C28 /* Constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 954995EE214F8BBB007F3C28 /* Constants.h */; };
|
|
101
|
+
954995F1214F8BBB007F3C28 /* Constants.m in Sources */ = {isa = PBXBuildFile; fileRef = 954995EF214F8BBB007F3C28 /* Constants.m */; };
|
|
102
|
+
954995F2214F8BBB007F3C28 /* Constants.m in Sources */ = {isa = PBXBuildFile; fileRef = 954995EF214F8BBB007F3C28 /* Constants.m */; };
|
|
103
|
+
954995F8214FACD8007F3C28 /* PoiCategoryIconTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 954995F7214FACD8007F3C28 /* PoiCategoryIconTests.m */; };
|
|
104
|
+
957695E1217DA8960082E679 /* LocationRequestTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 957695E0217DA8960082E679 /* LocationRequestTest.m */; };
|
|
105
|
+
95B14A2B214A402E0073A9E1 /* PointTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 95B14A2A214A402E0073A9E1 /* PointTests.m */; };
|
|
106
|
+
95B14A2D214A44800073A9E1 /* AngleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 95B14A2C214A44800073A9E1 /* AngleTests.m */; };
|
|
107
|
+
95B14A2F214A45B10073A9E1 /* BoundTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 95B14A2E214A45B10073A9E1 /* BoundTests.m */; };
|
|
108
|
+
95B14A33214A46E20073A9E1 /* CartesianCoordinateTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 95B14A32214A46E20073A9E1 /* CartesianCoordinateTests.m */; };
|
|
109
|
+
95B14A35214A476B0073A9E1 /* CoordinateTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 95B14A34214A476B0073A9E1 /* CoordinateTests.m */; };
|
|
110
|
+
95B14A37214A47D20073A9E1 /* DimensionTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 95B14A36214A47D20073A9E1 /* DimensionTests.m */; };
|
|
111
|
+
95B14A39214A488F0073A9E1 /* EventTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 95B14A38214A488F0073A9E1 /* EventTests.m */; };
|
|
112
|
+
95B14A3B214A48F80073A9E1 /* FloorTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 95B14A3A214A48F80073A9E1 /* FloorTests.m */; };
|
|
113
|
+
95B14A3D214A49B30073A9E1 /* indicationTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 95B14A3C214A49B30073A9E1 /* indicationTests.m */; };
|
|
114
|
+
95B14A3F214A4AED0073A9E1 /* LocationTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 95B14A3E214A4AED0073A9E1 /* LocationTests.m */; };
|
|
115
|
+
95B14A41214A4CF20073A9E1 /* LocationStatusTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 95B14A40214A4CF20073A9E1 /* LocationStatusTests.m */; };
|
|
116
|
+
95B14A43214A4E550073A9E1 /* NavigationProgressTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 95B14A42214A4E550073A9E1 /* NavigationProgressTests.m */; };
|
|
117
|
+
95B14A45214A50E60073A9E1 /* PoiCategoryTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 95B14A44214A50E60073A9E1 /* PoiCategoryTests.m */; };
|
|
118
|
+
95B14A47214A51BA0073A9E1 /* RouteTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 95B14A46214A51BA0073A9E1 /* RouteTests.m */; };
|
|
119
|
+
95B14A49214A535A0073A9E1 /* RouteStepTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 95B14A48214A535A0073A9E1 /* RouteStepTests.m */; };
|
|
120
|
+
95B14A4B214A54CA0073A9E1 /* ConversionAreaTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 95B14A4A214A54CA0073A9E1 /* ConversionAreaTests.m */; };
|
|
121
|
+
95B14A4D214A56CE0073A9E1 /* BuildingTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 95B14A4C214A56CE0073A9E1 /* BuildingTests.m */; };
|
|
122
|
+
95D33B49214B9680000E073E /* PoiTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 95D33B48214B9680000E073E /* PoiTests.m */; };
|
|
123
|
+
95F6FF5E2153B5E700AE30B5 /* InputFloorTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 95F6FF5D2153B5E700AE30B5 /* InputFloorTests.m */; };
|
|
124
|
+
C0C01EB61E3911D50056E6CB /* Cordova.h in Headers */ = {isa = PBXBuildFile; fileRef = C0C01EB41E3911D50056E6CB /* Cordova.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
125
|
+
C0C01EBA1E39120F0056E6CB /* libCordova.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 68A32D7114102E1C006B237C /* libCordova.a */; };
|
|
126
|
+
C0C01EBB1E39131A0056E6CB /* CDV.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D0F1AB9029B008C4574 /* CDV.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
127
|
+
C0C01EBC1E39131A0056E6CB /* CDVAppDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D101AB9029B008C4574 /* CDVAppDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
128
|
+
C0C01EBD1E39131A0056E6CB /* CDVAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D121AB9029B008C4574 /* CDVAvailability.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
129
|
+
C0C01EBE1E39131A0056E6CB /* CDVAvailabilityDeprecated.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D131AB9029B008C4574 /* CDVAvailabilityDeprecated.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
130
|
+
C0C01EBF1E39131A0056E6CB /* CDVCommandDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D141AB9029B008C4574 /* CDVCommandDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
131
|
+
C0C01EC01E39131A0056E6CB /* CDVCommandDelegateImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D151AB9029B008C4574 /* CDVCommandDelegateImpl.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
132
|
+
C0C01EC11E39131A0056E6CB /* CDVCommandQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D171AB9029B008C4574 /* CDVCommandQueue.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
133
|
+
C0C01EC21E39131A0056E6CB /* CDVConfigParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D191AB9029B008C4574 /* CDVConfigParser.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
134
|
+
C0C01EC31E39131A0056E6CB /* CDVInvokedUrlCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D1B1AB9029B008C4574 /* CDVInvokedUrlCommand.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
135
|
+
C0C01EC41E39131A0056E6CB /* CDVPlugin+Resources.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D1D1AB9029B008C4574 /* CDVPlugin+Resources.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
136
|
+
C0C01EC51E39131A0056E6CB /* CDVPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D1F1AB9029B008C4574 /* CDVPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
137
|
+
C0C01EC61E39131A0056E6CB /* CDVPluginResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D211AB9029B008C4574 /* CDVPluginResult.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
138
|
+
C0C01EC71E39131A0056E6CB /* CDVScreenOrientationDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D231AB9029B008C4574 /* CDVScreenOrientationDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
139
|
+
C0C01EC81E39131A0056E6CB /* CDVTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D241AB9029B008C4574 /* CDVTimer.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
140
|
+
C0C01EC91E39131A0056E6CB /* CDVURLProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D261AB9029B008C4574 /* CDVURLProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
141
|
+
C0C01ECA1E39131A0056E6CB /* CDVUserAgentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D281AB9029B008C4574 /* CDVUserAgentUtil.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
142
|
+
C0C01ECB1E39131A0056E6CB /* CDVViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D2A1AB9029B008C4574 /* CDVViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
143
|
+
C0C01ECC1E39131A0056E6CB /* CDVWebViewEngineProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D2C1AB9029B008C4574 /* CDVWebViewEngineProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
144
|
+
C0C01ECD1E39131A0056E6CB /* CDVWhitelist.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D2D1AB9029B008C4574 /* CDVWhitelist.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
145
|
+
C0C01ECE1E39131A0056E6CB /* NSDictionary+CordovaPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D311AB9029B008C4574 /* NSDictionary+CordovaPreferences.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
146
|
+
C0C01ECF1E39131A0056E6CB /* NSMutableArray+QueueAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED95D331AB9029B008C4574 /* NSMutableArray+QueueAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
147
|
+
/* End PBXBuildFile section */
|
|
148
|
+
|
|
149
|
+
/* Begin PBXContainerItemProxy section */
|
|
150
|
+
0D884A1421145F820066C765 /* PBXContainerItemProxy */ = {
|
|
151
|
+
isa = PBXContainerItemProxy;
|
|
152
|
+
containerPortal = 0867D690FE84028FC02AAC07 /* Project object */;
|
|
153
|
+
proxyType = 1;
|
|
154
|
+
remoteGlobalIDString = D2AAC07D0554694100DB518D;
|
|
155
|
+
remoteInfo = SitumCordovaPlugin;
|
|
156
|
+
};
|
|
157
|
+
C0C01ED11E39137C0056E6CB /* PBXContainerItemProxy */ = {
|
|
158
|
+
isa = PBXContainerItemProxy;
|
|
159
|
+
containerPortal = 0867D690FE84028FC02AAC07 /* Project object */;
|
|
160
|
+
proxyType = 1;
|
|
161
|
+
remoteGlobalIDString = D2AAC07D0554694100DB518D;
|
|
162
|
+
remoteInfo = CordovaLib;
|
|
163
|
+
};
|
|
164
|
+
/* End PBXContainerItemProxy section */
|
|
165
|
+
|
|
166
|
+
/* Begin PBXFileReference section */
|
|
167
|
+
0D5CFD3B212C275E00C6E436 /* CDVGestureHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVGestureHandler.h; sourceTree = "<group>"; };
|
|
168
|
+
0D5CFD3C212C275E00C6E436 /* CDVGestureHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDVGestureHandler.m; sourceTree = "<group>"; };
|
|
169
|
+
0D5CFD3E212C275E00C6E436 /* CDVIntentAndNavigationFilter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDVIntentAndNavigationFilter.m; sourceTree = "<group>"; };
|
|
170
|
+
0D5CFD3F212C275E00C6E436 /* CDVIntentAndNavigationFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVIntentAndNavigationFilter.h; sourceTree = "<group>"; };
|
|
171
|
+
0D5CFD41212C275E00C6E436 /* CDVHandleOpenURL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVHandleOpenURL.h; sourceTree = "<group>"; };
|
|
172
|
+
0D5CFD42212C275E00C6E436 /* CDVHandleOpenURL.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDVHandleOpenURL.m; sourceTree = "<group>"; };
|
|
173
|
+
0D5CFD44212C275E00C6E436 /* CDVLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVLogger.h; sourceTree = "<group>"; };
|
|
174
|
+
0D5CFD45212C275E00C6E436 /* CDVLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDVLogger.m; sourceTree = "<group>"; };
|
|
175
|
+
0D5CFD47212C275E00C6E436 /* CDVLocalStorage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDVLocalStorage.m; sourceTree = "<group>"; };
|
|
176
|
+
0D5CFD48212C275E00C6E436 /* CDVLocalStorage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVLocalStorage.h; sourceTree = "<group>"; };
|
|
177
|
+
0D5CFD4A212C275E00C6E436 /* CDVUIWebViewNavigationDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVUIWebViewNavigationDelegate.h; sourceTree = "<group>"; };
|
|
178
|
+
0D5CFD4B212C275E00C6E436 /* CDVUIWebViewDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDVUIWebViewDelegate.m; sourceTree = "<group>"; };
|
|
179
|
+
0D5CFD4C212C275E00C6E436 /* CDVUIWebViewEngine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVUIWebViewEngine.h; sourceTree = "<group>"; };
|
|
180
|
+
0D5CFD4D212C275E00C6E436 /* CDVUIWebViewNavigationDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDVUIWebViewNavigationDelegate.m; sourceTree = "<group>"; };
|
|
181
|
+
0D5CFD4E212C275E00C6E436 /* CDVUIWebViewDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVUIWebViewDelegate.h; sourceTree = "<group>"; };
|
|
182
|
+
0D5CFD4F212C275E00C6E436 /* CDVUIWebViewEngine.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDVUIWebViewEngine.m; sourceTree = "<group>"; };
|
|
183
|
+
0D884A0821145E510066C765 /* SitumSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = SitumSDK.framework; sourceTree = "<group>"; };
|
|
184
|
+
0D884A0E21145F820066C765 /* situmcordovaplugintests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = situmcordovaplugintests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
185
|
+
0D884A1221145F820066C765 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
186
|
+
0D884A192114634D0066C765 /* SitumCreatorTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SitumCreatorTests.h; sourceTree = "<group>"; };
|
|
187
|
+
0D884A1B2114634D0066C765 /* SitumCreatorTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SitumCreatorTests.m; sourceTree = "<group>"; };
|
|
188
|
+
0D884A1D2114634E0066C765 /* TestingHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestingHelper.m; sourceTree = "<group>"; };
|
|
189
|
+
0D884A1F2114634E0066C765 /* TestingHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestingHelper.h; sourceTree = "<group>"; };
|
|
190
|
+
0D884E7C2116FAA20066C765 /* resources */ = {isa = PBXFileReference; lastKnownFileType = folder; path = resources; sourceTree = "<group>"; };
|
|
191
|
+
0DF4AB0621143D5700D81A31 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
|
|
192
|
+
0DF4AB0721143D5700D81A31 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
|
|
193
|
+
0DF4AB0821143D5700D81A31 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
|
194
|
+
0DF4AB0A21143D5700D81A31 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
195
|
+
0DF4AB0C21143D5700D81A31 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
|
196
|
+
0DF4AB0D21143D5700D81A31 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
197
|
+
0DF4AB0E21143D5700D81A31 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
|
198
|
+
0DF4AB1021143D5700D81A31 /* situmcordovaplugin.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = situmcordovaplugin.xcdatamodel; sourceTree = "<group>"; };
|
|
199
|
+
0DF4AB1121143D5700D81A31 /* SitumLocationWrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SitumLocationWrapper.h; sourceTree = "<group>"; };
|
|
200
|
+
0DF4AB1221143D5700D81A31 /* SitumLocationWrapper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SitumLocationWrapper.m; sourceTree = "<group>"; };
|
|
201
|
+
0DF4AB1321143D5700D81A31 /* SitumPlugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SitumPlugin.h; sourceTree = "<group>"; };
|
|
202
|
+
0DF4AB1421143D5700D81A31 /* SitumPlugin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SitumPlugin.m; sourceTree = "<group>"; };
|
|
203
|
+
0DF4AB1521143D5700D81A31 /* ViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
|
|
204
|
+
0DF4AB1621143D5700D81A31 /* ViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
|
|
205
|
+
30325A0B136B343700982B63 /* VERSION */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VERSION; sourceTree = "<group>"; };
|
|
206
|
+
3A4011362153B0D500AC3BD5 /* InputCoordinateTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InputCoordinateTests.m; sourceTree = "<group>"; };
|
|
207
|
+
3A4011382153B24400AC3BD5 /* InputLocationTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InputLocationTests.m; sourceTree = "<group>"; };
|
|
208
|
+
3A40113A2153C4CB00AC3BD5 /* InputPoiCategoryTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InputPoiCategoryTests.m; sourceTree = "<group>"; };
|
|
209
|
+
3A40113C2153CBA800AC3BD5 /* InputIndicationTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InputIndicationTests.m; sourceTree = "<group>"; };
|
|
210
|
+
3A4D721621525B970038ED55 /* InputPointTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InputPointTests.m; sourceTree = "<group>"; };
|
|
211
|
+
3A4D721A215276660038ED55 /* InputCartesianCoordinateTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InputCartesianCoordinateTests.m; sourceTree = "<group>"; };
|
|
212
|
+
3AC2FF4D21ADA883005D438A /* SitumSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SitumSDK.framework; path = Pods/SitumSDK/SitumSDK.framework; sourceTree = SOURCE_ROOT; };
|
|
213
|
+
46C0027AC4E47712B8F99B92 /* Pods-SitumCordovaPlugin.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SitumCordovaPlugin.debug.xcconfig"; path = "Pods/Target Support Files/Pods-SitumCordovaPlugin/Pods-SitumCordovaPlugin.debug.xcconfig"; sourceTree = "<group>"; };
|
|
214
|
+
62F273CAF5F251313DF70561 /* Pods-SitumCordovaPlugin.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SitumCordovaPlugin.release.xcconfig"; path = "Pods/Target Support Files/Pods-SitumCordovaPlugin/Pods-SitumCordovaPlugin.release.xcconfig"; sourceTree = "<group>"; };
|
|
215
|
+
68A32D7114102E1C006B237C /* libCordova.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libCordova.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
216
|
+
7ED95CF21AB9028C008C4574 /* CDVDebug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVDebug.h; sourceTree = "<group>"; };
|
|
217
|
+
7ED95CF31AB9028C008C4574 /* CDVJSON_private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVJSON_private.h; sourceTree = "<group>"; };
|
|
218
|
+
7ED95CF41AB9028C008C4574 /* CDVJSON_private.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDVJSON_private.m; sourceTree = "<group>"; };
|
|
219
|
+
7ED95CF51AB9028C008C4574 /* CDVPlugin+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CDVPlugin+Private.h"; sourceTree = "<group>"; };
|
|
220
|
+
7ED95D0F1AB9029B008C4574 /* CDV.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDV.h; sourceTree = "<group>"; };
|
|
221
|
+
7ED95D101AB9029B008C4574 /* CDVAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVAppDelegate.h; sourceTree = "<group>"; };
|
|
222
|
+
7ED95D111AB9029B008C4574 /* CDVAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDVAppDelegate.m; sourceTree = "<group>"; };
|
|
223
|
+
7ED95D121AB9029B008C4574 /* CDVAvailability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVAvailability.h; sourceTree = "<group>"; };
|
|
224
|
+
7ED95D131AB9029B008C4574 /* CDVAvailabilityDeprecated.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVAvailabilityDeprecated.h; sourceTree = "<group>"; };
|
|
225
|
+
7ED95D141AB9029B008C4574 /* CDVCommandDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVCommandDelegate.h; sourceTree = "<group>"; };
|
|
226
|
+
7ED95D151AB9029B008C4574 /* CDVCommandDelegateImpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVCommandDelegateImpl.h; sourceTree = "<group>"; };
|
|
227
|
+
7ED95D161AB9029B008C4574 /* CDVCommandDelegateImpl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDVCommandDelegateImpl.m; sourceTree = "<group>"; };
|
|
228
|
+
7ED95D171AB9029B008C4574 /* CDVCommandQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVCommandQueue.h; sourceTree = "<group>"; };
|
|
229
|
+
7ED95D181AB9029B008C4574 /* CDVCommandQueue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDVCommandQueue.m; sourceTree = "<group>"; };
|
|
230
|
+
7ED95D191AB9029B008C4574 /* CDVConfigParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVConfigParser.h; sourceTree = "<group>"; };
|
|
231
|
+
7ED95D1A1AB9029B008C4574 /* CDVConfigParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDVConfigParser.m; sourceTree = "<group>"; };
|
|
232
|
+
7ED95D1B1AB9029B008C4574 /* CDVInvokedUrlCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVInvokedUrlCommand.h; sourceTree = "<group>"; };
|
|
233
|
+
7ED95D1C1AB9029B008C4574 /* CDVInvokedUrlCommand.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDVInvokedUrlCommand.m; sourceTree = "<group>"; };
|
|
234
|
+
7ED95D1D1AB9029B008C4574 /* CDVPlugin+Resources.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CDVPlugin+Resources.h"; sourceTree = "<group>"; };
|
|
235
|
+
7ED95D1E1AB9029B008C4574 /* CDVPlugin+Resources.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CDVPlugin+Resources.m"; sourceTree = "<group>"; };
|
|
236
|
+
7ED95D1F1AB9029B008C4574 /* CDVPlugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVPlugin.h; sourceTree = "<group>"; };
|
|
237
|
+
7ED95D201AB9029B008C4574 /* CDVPlugin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDVPlugin.m; sourceTree = "<group>"; };
|
|
238
|
+
7ED95D211AB9029B008C4574 /* CDVPluginResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVPluginResult.h; sourceTree = "<group>"; };
|
|
239
|
+
7ED95D221AB9029B008C4574 /* CDVPluginResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDVPluginResult.m; sourceTree = "<group>"; };
|
|
240
|
+
7ED95D231AB9029B008C4574 /* CDVScreenOrientationDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVScreenOrientationDelegate.h; sourceTree = "<group>"; };
|
|
241
|
+
7ED95D241AB9029B008C4574 /* CDVTimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVTimer.h; sourceTree = "<group>"; };
|
|
242
|
+
7ED95D251AB9029B008C4574 /* CDVTimer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDVTimer.m; sourceTree = "<group>"; };
|
|
243
|
+
7ED95D261AB9029B008C4574 /* CDVURLProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVURLProtocol.h; sourceTree = "<group>"; };
|
|
244
|
+
7ED95D271AB9029B008C4574 /* CDVURLProtocol.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDVURLProtocol.m; sourceTree = "<group>"; };
|
|
245
|
+
7ED95D281AB9029B008C4574 /* CDVUserAgentUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVUserAgentUtil.h; sourceTree = "<group>"; };
|
|
246
|
+
7ED95D291AB9029B008C4574 /* CDVUserAgentUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDVUserAgentUtil.m; sourceTree = "<group>"; };
|
|
247
|
+
7ED95D2A1AB9029B008C4574 /* CDVViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVViewController.h; sourceTree = "<group>"; };
|
|
248
|
+
7ED95D2B1AB9029B008C4574 /* CDVViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDVViewController.m; sourceTree = "<group>"; };
|
|
249
|
+
7ED95D2C1AB9029B008C4574 /* CDVWebViewEngineProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVWebViewEngineProtocol.h; sourceTree = "<group>"; };
|
|
250
|
+
7ED95D2D1AB9029B008C4574 /* CDVWhitelist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDVWhitelist.h; sourceTree = "<group>"; };
|
|
251
|
+
7ED95D2E1AB9029B008C4574 /* CDVWhitelist.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDVWhitelist.m; sourceTree = "<group>"; };
|
|
252
|
+
7ED95D311AB9029B008C4574 /* NSDictionary+CordovaPreferences.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+CordovaPreferences.h"; sourceTree = "<group>"; };
|
|
253
|
+
7ED95D321AB9029B008C4574 /* NSDictionary+CordovaPreferences.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+CordovaPreferences.m"; sourceTree = "<group>"; };
|
|
254
|
+
7ED95D331AB9029B008C4574 /* NSMutableArray+QueueAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableArray+QueueAdditions.h"; sourceTree = "<group>"; };
|
|
255
|
+
7ED95D341AB9029B008C4574 /* NSMutableArray+QueueAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableArray+QueueAdditions.m"; sourceTree = "<group>"; };
|
|
256
|
+
8F5368C04B299F04076437E6 /* Pods_situmcordovaplugintests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_situmcordovaplugintests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
257
|
+
952D03AF21B160DE000C6530 /* DirectionsRequestTest.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DirectionsRequestTest.m; sourceTree = "<group>"; };
|
|
258
|
+
954995EE214F8BBB007F3C28 /* Constants.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Constants.h; sourceTree = "<group>"; };
|
|
259
|
+
954995EF214F8BBB007F3C28 /* Constants.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Constants.m; sourceTree = "<group>"; };
|
|
260
|
+
954995F7214FACD8007F3C28 /* PoiCategoryIconTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PoiCategoryIconTests.m; sourceTree = "<group>"; };
|
|
261
|
+
957695E0217DA8960082E679 /* LocationRequestTest.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LocationRequestTest.m; sourceTree = "<group>"; };
|
|
262
|
+
95B14A2A214A402E0073A9E1 /* PointTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PointTests.m; sourceTree = "<group>"; };
|
|
263
|
+
95B14A2C214A44800073A9E1 /* AngleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AngleTests.m; sourceTree = "<group>"; };
|
|
264
|
+
95B14A2E214A45B10073A9E1 /* BoundTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BoundTests.m; sourceTree = "<group>"; };
|
|
265
|
+
95B14A32214A46E20073A9E1 /* CartesianCoordinateTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CartesianCoordinateTests.m; sourceTree = "<group>"; };
|
|
266
|
+
95B14A34214A476B0073A9E1 /* CoordinateTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CoordinateTests.m; sourceTree = "<group>"; };
|
|
267
|
+
95B14A36214A47D20073A9E1 /* DimensionTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DimensionTests.m; sourceTree = "<group>"; };
|
|
268
|
+
95B14A38214A488F0073A9E1 /* EventTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = EventTests.m; sourceTree = "<group>"; };
|
|
269
|
+
95B14A3A214A48F80073A9E1 /* FloorTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FloorTests.m; sourceTree = "<group>"; };
|
|
270
|
+
95B14A3C214A49B30073A9E1 /* indicationTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = indicationTests.m; sourceTree = "<group>"; };
|
|
271
|
+
95B14A3E214A4AED0073A9E1 /* LocationTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LocationTests.m; sourceTree = "<group>"; };
|
|
272
|
+
95B14A40214A4CF20073A9E1 /* LocationStatusTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LocationStatusTests.m; sourceTree = "<group>"; };
|
|
273
|
+
95B14A42214A4E550073A9E1 /* NavigationProgressTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NavigationProgressTests.m; sourceTree = "<group>"; };
|
|
274
|
+
95B14A44214A50E60073A9E1 /* PoiCategoryTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PoiCategoryTests.m; sourceTree = "<group>"; };
|
|
275
|
+
95B14A46214A51BA0073A9E1 /* RouteTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RouteTests.m; sourceTree = "<group>"; };
|
|
276
|
+
95B14A48214A535A0073A9E1 /* RouteStepTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RouteStepTests.m; sourceTree = "<group>"; };
|
|
277
|
+
95B14A4A214A54CA0073A9E1 /* ConversionAreaTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ConversionAreaTests.m; sourceTree = "<group>"; };
|
|
278
|
+
95B14A4C214A56CE0073A9E1 /* BuildingTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BuildingTests.m; sourceTree = "<group>"; };
|
|
279
|
+
95D33B48214B9680000E073E /* PoiTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PoiTests.m; sourceTree = "<group>"; };
|
|
280
|
+
95F6FF5D2153B5E700AE30B5 /* InputFloorTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InputFloorTests.m; sourceTree = "<group>"; };
|
|
281
|
+
AA747D9E0F9514B9006C5449 /* SitumCordovaPlugin_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SitumCordovaPlugin_Prefix.pch; path = ../../SitumCordovaPlugin_Prefix.pch; sourceTree = "<group>"; };
|
|
282
|
+
BF639F8C42C24AB0EC736F85 /* Pods_SitumCordovaPlugin.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SitumCordovaPlugin.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
283
|
+
C0C01EB21E3911D50056E6CB /* Cordova.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Cordova.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
284
|
+
C0C01EB41E3911D50056E6CB /* Cordova.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Cordova.h; sourceTree = "<group>"; };
|
|
285
|
+
C0C01EB51E3911D50056E6CB /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
286
|
+
/* End PBXFileReference section */
|
|
287
|
+
|
|
288
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
289
|
+
0D884A0B21145F820066C765 /* Frameworks */ = {
|
|
290
|
+
isa = PBXFrameworksBuildPhase;
|
|
291
|
+
buildActionMask = 2147483647;
|
|
292
|
+
files = (
|
|
293
|
+
3AC2FF4E21ADA883005D438A /* SitumSDK.framework in Frameworks */,
|
|
294
|
+
0D884A1321145F820066C765 /* libCordova.a in Frameworks */,
|
|
295
|
+
0D884A232114644C0066C765 /* SitumSDK.framework in Frameworks */,
|
|
296
|
+
);
|
|
297
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
298
|
+
};
|
|
299
|
+
C0C01EAE1E3911D50056E6CB /* Frameworks */ = {
|
|
300
|
+
isa = PBXFrameworksBuildPhase;
|
|
301
|
+
buildActionMask = 2147483647;
|
|
302
|
+
files = (
|
|
303
|
+
C0C01EBA1E39120F0056E6CB /* libCordova.a in Frameworks */,
|
|
304
|
+
);
|
|
305
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
306
|
+
};
|
|
307
|
+
D2AAC07C0554694100DB518D /* Frameworks */ = {
|
|
308
|
+
isa = PBXFrameworksBuildPhase;
|
|
309
|
+
buildActionMask = 2147483647;
|
|
310
|
+
files = (
|
|
311
|
+
29A6B8BBD41A308233C44F3E /* Pods_SitumCordovaPlugin.framework in Frameworks */,
|
|
312
|
+
);
|
|
313
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
314
|
+
};
|
|
315
|
+
/* End PBXFrameworksBuildPhase section */
|
|
316
|
+
|
|
317
|
+
/* Begin PBXGroup section */
|
|
318
|
+
034768DFFF38A50411DB9C8B /* Products */ = {
|
|
319
|
+
isa = PBXGroup;
|
|
320
|
+
children = (
|
|
321
|
+
68A32D7114102E1C006B237C /* libCordova.a */,
|
|
322
|
+
C0C01EB21E3911D50056E6CB /* Cordova.framework */,
|
|
323
|
+
0D884A0E21145F820066C765 /* situmcordovaplugintests.xctest */,
|
|
324
|
+
);
|
|
325
|
+
name = Products;
|
|
326
|
+
sourceTree = CORDOVALIB;
|
|
327
|
+
};
|
|
328
|
+
0867D691FE84028FC02AAC07 = {
|
|
329
|
+
isa = PBXGroup;
|
|
330
|
+
children = (
|
|
331
|
+
0DF4AB0521143D5700D81A31 /* situmcordovaplugin */,
|
|
332
|
+
0D884A0F21145F820066C765 /* situmcordovaplugintests */,
|
|
333
|
+
7ED95D0E1AB9029B008C4574 /* Public */,
|
|
334
|
+
7ED95CF11AB9028C008C4574 /* Private */,
|
|
335
|
+
C0C01EB31E3911D50056E6CB /* Cordova */,
|
|
336
|
+
034768DFFF38A50411DB9C8B /* Products */,
|
|
337
|
+
0D5184E921145DEB00BFA9E3 /* Frameworks */,
|
|
338
|
+
30325A0B136B343700982B63 /* VERSION */,
|
|
339
|
+
DF13D93707E045B4473AC963 /* Pods */,
|
|
340
|
+
);
|
|
341
|
+
name = CordovaLib;
|
|
342
|
+
sourceTree = "<group>";
|
|
343
|
+
};
|
|
344
|
+
0D5184E921145DEB00BFA9E3 /* Frameworks */ = {
|
|
345
|
+
isa = PBXGroup;
|
|
346
|
+
children = (
|
|
347
|
+
0D884A0821145E510066C765 /* SitumSDK.framework */,
|
|
348
|
+
3AC2FF4D21ADA883005D438A /* SitumSDK.framework */,
|
|
349
|
+
BF639F8C42C24AB0EC736F85 /* Pods_SitumCordovaPlugin.framework */,
|
|
350
|
+
8F5368C04B299F04076437E6 /* Pods_situmcordovaplugintests.framework */,
|
|
351
|
+
);
|
|
352
|
+
path = Frameworks;
|
|
353
|
+
sourceTree = "<group>";
|
|
354
|
+
};
|
|
355
|
+
0D5CFD39212C275E00C6E436 /* CDVPlugins */ = {
|
|
356
|
+
isa = PBXGroup;
|
|
357
|
+
children = (
|
|
358
|
+
0D5CFD3A212C275E00C6E436 /* CDVGestureHandler */,
|
|
359
|
+
0D5CFD3D212C275E00C6E436 /* CDVIntentAndNavigationFilter */,
|
|
360
|
+
0D5CFD40212C275E00C6E436 /* CDVHandleOpenURL */,
|
|
361
|
+
0D5CFD43212C275E00C6E436 /* CDVLogger */,
|
|
362
|
+
0D5CFD46212C275E00C6E436 /* CDVLocalStorage */,
|
|
363
|
+
0D5CFD49212C275E00C6E436 /* CDVUIWebViewEngine */,
|
|
364
|
+
);
|
|
365
|
+
path = CDVPlugins;
|
|
366
|
+
sourceTree = "<group>";
|
|
367
|
+
};
|
|
368
|
+
0D5CFD3A212C275E00C6E436 /* CDVGestureHandler */ = {
|
|
369
|
+
isa = PBXGroup;
|
|
370
|
+
children = (
|
|
371
|
+
0D5CFD3B212C275E00C6E436 /* CDVGestureHandler.h */,
|
|
372
|
+
0D5CFD3C212C275E00C6E436 /* CDVGestureHandler.m */,
|
|
373
|
+
);
|
|
374
|
+
path = CDVGestureHandler;
|
|
375
|
+
sourceTree = "<group>";
|
|
376
|
+
};
|
|
377
|
+
0D5CFD3D212C275E00C6E436 /* CDVIntentAndNavigationFilter */ = {
|
|
378
|
+
isa = PBXGroup;
|
|
379
|
+
children = (
|
|
380
|
+
0D5CFD3E212C275E00C6E436 /* CDVIntentAndNavigationFilter.m */,
|
|
381
|
+
0D5CFD3F212C275E00C6E436 /* CDVIntentAndNavigationFilter.h */,
|
|
382
|
+
);
|
|
383
|
+
path = CDVIntentAndNavigationFilter;
|
|
384
|
+
sourceTree = "<group>";
|
|
385
|
+
};
|
|
386
|
+
0D5CFD40212C275E00C6E436 /* CDVHandleOpenURL */ = {
|
|
387
|
+
isa = PBXGroup;
|
|
388
|
+
children = (
|
|
389
|
+
0D5CFD41212C275E00C6E436 /* CDVHandleOpenURL.h */,
|
|
390
|
+
0D5CFD42212C275E00C6E436 /* CDVHandleOpenURL.m */,
|
|
391
|
+
);
|
|
392
|
+
path = CDVHandleOpenURL;
|
|
393
|
+
sourceTree = "<group>";
|
|
394
|
+
};
|
|
395
|
+
0D5CFD43212C275E00C6E436 /* CDVLogger */ = {
|
|
396
|
+
isa = PBXGroup;
|
|
397
|
+
children = (
|
|
398
|
+
0D5CFD44212C275E00C6E436 /* CDVLogger.h */,
|
|
399
|
+
0D5CFD45212C275E00C6E436 /* CDVLogger.m */,
|
|
400
|
+
);
|
|
401
|
+
path = CDVLogger;
|
|
402
|
+
sourceTree = "<group>";
|
|
403
|
+
};
|
|
404
|
+
0D5CFD46212C275E00C6E436 /* CDVLocalStorage */ = {
|
|
405
|
+
isa = PBXGroup;
|
|
406
|
+
children = (
|
|
407
|
+
0D5CFD47212C275E00C6E436 /* CDVLocalStorage.m */,
|
|
408
|
+
0D5CFD48212C275E00C6E436 /* CDVLocalStorage.h */,
|
|
409
|
+
);
|
|
410
|
+
path = CDVLocalStorage;
|
|
411
|
+
sourceTree = "<group>";
|
|
412
|
+
};
|
|
413
|
+
0D5CFD49212C275E00C6E436 /* CDVUIWebViewEngine */ = {
|
|
414
|
+
isa = PBXGroup;
|
|
415
|
+
children = (
|
|
416
|
+
0D5CFD4A212C275E00C6E436 /* CDVUIWebViewNavigationDelegate.h */,
|
|
417
|
+
0D5CFD4B212C275E00C6E436 /* CDVUIWebViewDelegate.m */,
|
|
418
|
+
0D5CFD4C212C275E00C6E436 /* CDVUIWebViewEngine.h */,
|
|
419
|
+
0D5CFD4D212C275E00C6E436 /* CDVUIWebViewNavigationDelegate.m */,
|
|
420
|
+
0D5CFD4E212C275E00C6E436 /* CDVUIWebViewDelegate.h */,
|
|
421
|
+
0D5CFD4F212C275E00C6E436 /* CDVUIWebViewEngine.m */,
|
|
422
|
+
);
|
|
423
|
+
path = CDVUIWebViewEngine;
|
|
424
|
+
sourceTree = "<group>";
|
|
425
|
+
};
|
|
426
|
+
0D884A0F21145F820066C765 /* situmcordovaplugintests */ = {
|
|
427
|
+
isa = PBXGroup;
|
|
428
|
+
children = (
|
|
429
|
+
3A4D721521525AB20038ED55 /* InputTests */,
|
|
430
|
+
0D884E7C2116FAA20066C765 /* resources */,
|
|
431
|
+
0D884A192114634D0066C765 /* SitumCreatorTests.h */,
|
|
432
|
+
0D884A1B2114634D0066C765 /* SitumCreatorTests.m */,
|
|
433
|
+
0D884A1F2114634E0066C765 /* TestingHelper.h */,
|
|
434
|
+
0D884A1D2114634E0066C765 /* TestingHelper.m */,
|
|
435
|
+
0D884A1221145F820066C765 /* Info.plist */,
|
|
436
|
+
95B14A2A214A402E0073A9E1 /* PointTests.m */,
|
|
437
|
+
95B14A2C214A44800073A9E1 /* AngleTests.m */,
|
|
438
|
+
95B14A2E214A45B10073A9E1 /* BoundTests.m */,
|
|
439
|
+
95B14A4C214A56CE0073A9E1 /* BuildingTests.m */,
|
|
440
|
+
95B14A32214A46E20073A9E1 /* CartesianCoordinateTests.m */,
|
|
441
|
+
95B14A34214A476B0073A9E1 /* CoordinateTests.m */,
|
|
442
|
+
95B14A36214A47D20073A9E1 /* DimensionTests.m */,
|
|
443
|
+
95B14A38214A488F0073A9E1 /* EventTests.m */,
|
|
444
|
+
95B14A3A214A48F80073A9E1 /* FloorTests.m */,
|
|
445
|
+
95B14A3C214A49B30073A9E1 /* indicationTests.m */,
|
|
446
|
+
95B14A3E214A4AED0073A9E1 /* LocationTests.m */,
|
|
447
|
+
95B14A40214A4CF20073A9E1 /* LocationStatusTests.m */,
|
|
448
|
+
95B14A42214A4E550073A9E1 /* NavigationProgressTests.m */,
|
|
449
|
+
95B14A44214A50E60073A9E1 /* PoiCategoryTests.m */,
|
|
450
|
+
95B14A46214A51BA0073A9E1 /* RouteTests.m */,
|
|
451
|
+
95B14A48214A535A0073A9E1 /* RouteStepTests.m */,
|
|
452
|
+
95B14A4A214A54CA0073A9E1 /* ConversionAreaTests.m */,
|
|
453
|
+
95D33B48214B9680000E073E /* PoiTests.m */,
|
|
454
|
+
954995F7214FACD8007F3C28 /* PoiCategoryIconTests.m */,
|
|
455
|
+
);
|
|
456
|
+
path = situmcordovaplugintests;
|
|
457
|
+
sourceTree = "<group>";
|
|
458
|
+
};
|
|
459
|
+
0DF4AB0521143D5700D81A31 /* situmcordovaplugin */ = {
|
|
460
|
+
isa = PBXGroup;
|
|
461
|
+
children = (
|
|
462
|
+
0DF4AB0621143D5700D81A31 /* AppDelegate.h */,
|
|
463
|
+
0DF4AB0721143D5700D81A31 /* AppDelegate.m */,
|
|
464
|
+
0DF4AB0821143D5700D81A31 /* Assets.xcassets */,
|
|
465
|
+
0DF4AB0921143D5700D81A31 /* LaunchScreen.storyboard */,
|
|
466
|
+
0DF4AB0B21143D5700D81A31 /* Main.storyboard */,
|
|
467
|
+
0DF4AB0D21143D5700D81A31 /* Info.plist */,
|
|
468
|
+
0DF4AB0E21143D5700D81A31 /* main.m */,
|
|
469
|
+
0DF4AB0F21143D5700D81A31 /* situmcordovaplugin.xcdatamodeld */,
|
|
470
|
+
0DF4AB1121143D5700D81A31 /* SitumLocationWrapper.h */,
|
|
471
|
+
0DF4AB1221143D5700D81A31 /* SitumLocationWrapper.m */,
|
|
472
|
+
0DF4AB1321143D5700D81A31 /* SitumPlugin.h */,
|
|
473
|
+
0DF4AB1421143D5700D81A31 /* SitumPlugin.m */,
|
|
474
|
+
0DF4AB1521143D5700D81A31 /* ViewController.h */,
|
|
475
|
+
0DF4AB1621143D5700D81A31 /* ViewController.m */,
|
|
476
|
+
954995EE214F8BBB007F3C28 /* Constants.h */,
|
|
477
|
+
954995EF214F8BBB007F3C28 /* Constants.m */,
|
|
478
|
+
);
|
|
479
|
+
path = situmcordovaplugin;
|
|
480
|
+
sourceTree = "<group>";
|
|
481
|
+
};
|
|
482
|
+
3A4D721521525AB20038ED55 /* InputTests */ = {
|
|
483
|
+
isa = PBXGroup;
|
|
484
|
+
children = (
|
|
485
|
+
3A4D721621525B970038ED55 /* InputPointTests.m */,
|
|
486
|
+
3A4D721A215276660038ED55 /* InputCartesianCoordinateTests.m */,
|
|
487
|
+
3A4011362153B0D500AC3BD5 /* InputCoordinateTests.m */,
|
|
488
|
+
3A4011382153B24400AC3BD5 /* InputLocationTests.m */,
|
|
489
|
+
95F6FF5D2153B5E700AE30B5 /* InputFloorTests.m */,
|
|
490
|
+
3A40113A2153C4CB00AC3BD5 /* InputPoiCategoryTests.m */,
|
|
491
|
+
3A40113C2153CBA800AC3BD5 /* InputIndicationTests.m */,
|
|
492
|
+
957695E0217DA8960082E679 /* LocationRequestTest.m */,
|
|
493
|
+
952D03AF21B160DE000C6530 /* DirectionsRequestTest.m */,
|
|
494
|
+
);
|
|
495
|
+
path = InputTests;
|
|
496
|
+
sourceTree = "<group>";
|
|
497
|
+
};
|
|
498
|
+
7ED95CF11AB9028C008C4574 /* Private */ = {
|
|
499
|
+
isa = PBXGroup;
|
|
500
|
+
children = (
|
|
501
|
+
AA747D9E0F9514B9006C5449 /* SitumCordovaPlugin_Prefix.pch */,
|
|
502
|
+
7ED95CF21AB9028C008C4574 /* CDVDebug.h */,
|
|
503
|
+
7ED95CF31AB9028C008C4574 /* CDVJSON_private.h */,
|
|
504
|
+
7ED95CF41AB9028C008C4574 /* CDVJSON_private.m */,
|
|
505
|
+
7ED95CF51AB9028C008C4574 /* CDVPlugin+Private.h */,
|
|
506
|
+
0D5CFD39212C275E00C6E436 /* CDVPlugins */,
|
|
507
|
+
);
|
|
508
|
+
name = Private;
|
|
509
|
+
path = Classes/Private;
|
|
510
|
+
sourceTree = "<group>";
|
|
511
|
+
};
|
|
512
|
+
7ED95D0E1AB9029B008C4574 /* Public */ = {
|
|
513
|
+
isa = PBXGroup;
|
|
514
|
+
children = (
|
|
515
|
+
7ED95D0F1AB9029B008C4574 /* CDV.h */,
|
|
516
|
+
7ED95D101AB9029B008C4574 /* CDVAppDelegate.h */,
|
|
517
|
+
7ED95D111AB9029B008C4574 /* CDVAppDelegate.m */,
|
|
518
|
+
7ED95D121AB9029B008C4574 /* CDVAvailability.h */,
|
|
519
|
+
7ED95D131AB9029B008C4574 /* CDVAvailabilityDeprecated.h */,
|
|
520
|
+
7ED95D141AB9029B008C4574 /* CDVCommandDelegate.h */,
|
|
521
|
+
7ED95D151AB9029B008C4574 /* CDVCommandDelegateImpl.h */,
|
|
522
|
+
7ED95D161AB9029B008C4574 /* CDVCommandDelegateImpl.m */,
|
|
523
|
+
7ED95D171AB9029B008C4574 /* CDVCommandQueue.h */,
|
|
524
|
+
7ED95D181AB9029B008C4574 /* CDVCommandQueue.m */,
|
|
525
|
+
7ED95D191AB9029B008C4574 /* CDVConfigParser.h */,
|
|
526
|
+
7ED95D1A1AB9029B008C4574 /* CDVConfigParser.m */,
|
|
527
|
+
7ED95D1B1AB9029B008C4574 /* CDVInvokedUrlCommand.h */,
|
|
528
|
+
7ED95D1C1AB9029B008C4574 /* CDVInvokedUrlCommand.m */,
|
|
529
|
+
7ED95D1D1AB9029B008C4574 /* CDVPlugin+Resources.h */,
|
|
530
|
+
7ED95D1E1AB9029B008C4574 /* CDVPlugin+Resources.m */,
|
|
531
|
+
7ED95D1F1AB9029B008C4574 /* CDVPlugin.h */,
|
|
532
|
+
7ED95D201AB9029B008C4574 /* CDVPlugin.m */,
|
|
533
|
+
7ED95D211AB9029B008C4574 /* CDVPluginResult.h */,
|
|
534
|
+
7ED95D221AB9029B008C4574 /* CDVPluginResult.m */,
|
|
535
|
+
7ED95D231AB9029B008C4574 /* CDVScreenOrientationDelegate.h */,
|
|
536
|
+
7ED95D241AB9029B008C4574 /* CDVTimer.h */,
|
|
537
|
+
7ED95D251AB9029B008C4574 /* CDVTimer.m */,
|
|
538
|
+
7ED95D261AB9029B008C4574 /* CDVURLProtocol.h */,
|
|
539
|
+
7ED95D271AB9029B008C4574 /* CDVURLProtocol.m */,
|
|
540
|
+
7ED95D281AB9029B008C4574 /* CDVUserAgentUtil.h */,
|
|
541
|
+
7ED95D291AB9029B008C4574 /* CDVUserAgentUtil.m */,
|
|
542
|
+
7ED95D2A1AB9029B008C4574 /* CDVViewController.h */,
|
|
543
|
+
7ED95D2B1AB9029B008C4574 /* CDVViewController.m */,
|
|
544
|
+
7ED95D2C1AB9029B008C4574 /* CDVWebViewEngineProtocol.h */,
|
|
545
|
+
7ED95D2D1AB9029B008C4574 /* CDVWhitelist.h */,
|
|
546
|
+
7ED95D2E1AB9029B008C4574 /* CDVWhitelist.m */,
|
|
547
|
+
7ED95D311AB9029B008C4574 /* NSDictionary+CordovaPreferences.h */,
|
|
548
|
+
7ED95D321AB9029B008C4574 /* NSDictionary+CordovaPreferences.m */,
|
|
549
|
+
7ED95D331AB9029B008C4574 /* NSMutableArray+QueueAdditions.h */,
|
|
550
|
+
7ED95D341AB9029B008C4574 /* NSMutableArray+QueueAdditions.m */,
|
|
551
|
+
);
|
|
552
|
+
name = Public;
|
|
553
|
+
path = Classes/Public;
|
|
554
|
+
sourceTree = "<group>";
|
|
555
|
+
};
|
|
556
|
+
C0C01EB31E3911D50056E6CB /* Cordova */ = {
|
|
557
|
+
isa = PBXGroup;
|
|
558
|
+
children = (
|
|
559
|
+
C0C01EB41E3911D50056E6CB /* Cordova.h */,
|
|
560
|
+
C0C01EB51E3911D50056E6CB /* Info.plist */,
|
|
561
|
+
);
|
|
562
|
+
path = Cordova;
|
|
563
|
+
sourceTree = "<group>";
|
|
564
|
+
};
|
|
565
|
+
DF13D93707E045B4473AC963 /* Pods */ = {
|
|
566
|
+
isa = PBXGroup;
|
|
567
|
+
children = (
|
|
568
|
+
46C0027AC4E47712B8F99B92 /* Pods-SitumCordovaPlugin.debug.xcconfig */,
|
|
569
|
+
62F273CAF5F251313DF70561 /* Pods-SitumCordovaPlugin.release.xcconfig */,
|
|
570
|
+
);
|
|
571
|
+
name = Pods;
|
|
572
|
+
sourceTree = "<group>";
|
|
573
|
+
};
|
|
574
|
+
/* End PBXGroup section */
|
|
575
|
+
|
|
576
|
+
/* Begin PBXHeadersBuildPhase section */
|
|
577
|
+
C0C01EAF1E3911D50056E6CB /* Headers */ = {
|
|
578
|
+
isa = PBXHeadersBuildPhase;
|
|
579
|
+
buildActionMask = 2147483647;
|
|
580
|
+
files = (
|
|
581
|
+
C0C01EC11E39131A0056E6CB /* CDVCommandQueue.h in Headers */,
|
|
582
|
+
C0C01EC51E39131A0056E6CB /* CDVPlugin.h in Headers */,
|
|
583
|
+
C0C01ECF1E39131A0056E6CB /* NSMutableArray+QueueAdditions.h in Headers */,
|
|
584
|
+
C0C01EC21E39131A0056E6CB /* CDVConfigParser.h in Headers */,
|
|
585
|
+
C0C01EC81E39131A0056E6CB /* CDVTimer.h in Headers */,
|
|
586
|
+
C0C01EBB1E39131A0056E6CB /* CDV.h in Headers */,
|
|
587
|
+
C0C01ECE1E39131A0056E6CB /* NSDictionary+CordovaPreferences.h in Headers */,
|
|
588
|
+
C0C01EB61E3911D50056E6CB /* Cordova.h in Headers */,
|
|
589
|
+
C0C01EC41E39131A0056E6CB /* CDVPlugin+Resources.h in Headers */,
|
|
590
|
+
C0C01EBE1E39131A0056E6CB /* CDVAvailabilityDeprecated.h in Headers */,
|
|
591
|
+
C0C01EC91E39131A0056E6CB /* CDVURLProtocol.h in Headers */,
|
|
592
|
+
C0C01EBF1E39131A0056E6CB /* CDVCommandDelegate.h in Headers */,
|
|
593
|
+
C0C01ECD1E39131A0056E6CB /* CDVWhitelist.h in Headers */,
|
|
594
|
+
C0C01ECA1E39131A0056E6CB /* CDVUserAgentUtil.h in Headers */,
|
|
595
|
+
C0C01EBC1E39131A0056E6CB /* CDVAppDelegate.h in Headers */,
|
|
596
|
+
C0C01EBD1E39131A0056E6CB /* CDVAvailability.h in Headers */,
|
|
597
|
+
C0C01ECB1E39131A0056E6CB /* CDVViewController.h in Headers */,
|
|
598
|
+
C0C01ECC1E39131A0056E6CB /* CDVWebViewEngineProtocol.h in Headers */,
|
|
599
|
+
C0C01EC01E39131A0056E6CB /* CDVCommandDelegateImpl.h in Headers */,
|
|
600
|
+
C0C01EC31E39131A0056E6CB /* CDVInvokedUrlCommand.h in Headers */,
|
|
601
|
+
C0C01EC71E39131A0056E6CB /* CDVScreenOrientationDelegate.h in Headers */,
|
|
602
|
+
C0C01EC61E39131A0056E6CB /* CDVPluginResult.h in Headers */,
|
|
603
|
+
);
|
|
604
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
605
|
+
};
|
|
606
|
+
D2AAC07A0554694100DB518D /* Headers */ = {
|
|
607
|
+
isa = PBXHeadersBuildPhase;
|
|
608
|
+
buildActionMask = 2147483647;
|
|
609
|
+
files = (
|
|
610
|
+
7ED95D521AB9029B008C4574 /* CDVWebViewEngineProtocol.h in Headers */,
|
|
611
|
+
7ED95D491AB9029B008C4574 /* CDVScreenOrientationDelegate.h in Headers */,
|
|
612
|
+
7ED95D351AB9029B008C4574 /* CDV.h in Headers */,
|
|
613
|
+
0D5CFD62212C275E00C6E436 /* CDVUIWebViewEngine.h in Headers */,
|
|
614
|
+
7ED95D3B1AB9029B008C4574 /* CDVCommandDelegateImpl.h in Headers */,
|
|
615
|
+
0DF4AB1F21143D5800D81A31 /* ViewController.h in Headers */,
|
|
616
|
+
7ED95D3D1AB9029B008C4574 /* CDVCommandQueue.h in Headers */,
|
|
617
|
+
7ED95D531AB9029B008C4574 /* CDVWhitelist.h in Headers */,
|
|
618
|
+
7ED95D361AB9029B008C4574 /* CDVAppDelegate.h in Headers */,
|
|
619
|
+
0D5CFD5E212C275E00C6E436 /* CDVLocalStorage.h in Headers */,
|
|
620
|
+
7ED95D431AB9029B008C4574 /* CDVPlugin+Resources.h in Headers */,
|
|
621
|
+
7ED95D381AB9029B008C4574 /* CDVAvailability.h in Headers */,
|
|
622
|
+
0D5CFD56212C275E00C6E436 /* CDVHandleOpenURL.h in Headers */,
|
|
623
|
+
7ED95D471AB9029B008C4574 /* CDVPluginResult.h in Headers */,
|
|
624
|
+
7ED95D591AB9029B008C4574 /* NSMutableArray+QueueAdditions.h in Headers */,
|
|
625
|
+
0D5CFD50212C275E00C6E436 /* CDVGestureHandler.h in Headers */,
|
|
626
|
+
7ED95D411AB9029B008C4574 /* CDVInvokedUrlCommand.h in Headers */,
|
|
627
|
+
0D5CFD5F212C275E00C6E436 /* CDVUIWebViewNavigationDelegate.h in Headers */,
|
|
628
|
+
7ED95D571AB9029B008C4574 /* NSDictionary+CordovaPreferences.h in Headers */,
|
|
629
|
+
0D5CFD65212C275E00C6E436 /* CDVUIWebViewDelegate.h in Headers */,
|
|
630
|
+
7ED95D451AB9029B008C4574 /* CDVPlugin.h in Headers */,
|
|
631
|
+
954995F0214F8BBB007F3C28 /* Constants.h in Headers */,
|
|
632
|
+
7ED95D4C1AB9029B008C4574 /* CDVURLProtocol.h in Headers */,
|
|
633
|
+
7ED95D3A1AB9029B008C4574 /* CDVCommandDelegate.h in Headers */,
|
|
634
|
+
7ED95D391AB9029B008C4574 /* CDVAvailabilityDeprecated.h in Headers */,
|
|
635
|
+
7ED95D4E1AB9029B008C4574 /* CDVUserAgentUtil.h in Headers */,
|
|
636
|
+
7ED95D4A1AB9029B008C4574 /* CDVTimer.h in Headers */,
|
|
637
|
+
7ED95D3F1AB9029B008C4574 /* CDVConfigParser.h in Headers */,
|
|
638
|
+
7ED95D501AB9029B008C4574 /* CDVViewController.h in Headers */,
|
|
639
|
+
7ED95D031AB9028C008C4574 /* CDVJSON_private.h in Headers */,
|
|
640
|
+
0D5CFD55212C275E00C6E436 /* CDVIntentAndNavigationFilter.h in Headers */,
|
|
641
|
+
7ED95D021AB9028C008C4574 /* CDVDebug.h in Headers */,
|
|
642
|
+
7ED95D051AB9028C008C4574 /* CDVPlugin+Private.h in Headers */,
|
|
643
|
+
0DF4AB1D21143D5800D81A31 /* SitumPlugin.h in Headers */,
|
|
644
|
+
0DF4AB1B21143D5800D81A31 /* SitumLocationWrapper.h in Headers */,
|
|
645
|
+
0D5CFD59212C275E00C6E436 /* CDVLogger.h in Headers */,
|
|
646
|
+
0DF4AB1721143D5800D81A31 /* AppDelegate.h in Headers */,
|
|
647
|
+
);
|
|
648
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
649
|
+
};
|
|
650
|
+
/* End PBXHeadersBuildPhase section */
|
|
651
|
+
|
|
652
|
+
/* Begin PBXNativeTarget section */
|
|
653
|
+
0D884A0D21145F820066C765 /* situmcordovaplugintests */ = {
|
|
654
|
+
isa = PBXNativeTarget;
|
|
655
|
+
buildConfigurationList = 0D884A1621145F820066C765 /* Build configuration list for PBXNativeTarget "situmcordovaplugintests" */;
|
|
656
|
+
buildPhases = (
|
|
657
|
+
0D884A0A21145F820066C765 /* Sources */,
|
|
658
|
+
0D884A0B21145F820066C765 /* Frameworks */,
|
|
659
|
+
0D884A0C21145F820066C765 /* Resources */,
|
|
660
|
+
);
|
|
661
|
+
buildRules = (
|
|
662
|
+
);
|
|
663
|
+
dependencies = (
|
|
664
|
+
0D884A1521145F820066C765 /* PBXTargetDependency */,
|
|
665
|
+
);
|
|
666
|
+
name = situmcordovaplugintests;
|
|
667
|
+
productName = situmcordovaplugintests;
|
|
668
|
+
productReference = 0D884A0E21145F820066C765 /* situmcordovaplugintests.xctest */;
|
|
669
|
+
productType = "com.apple.product-type.bundle.unit-test";
|
|
670
|
+
};
|
|
671
|
+
C0C01EB11E3911D50056E6CB /* Cordova */ = {
|
|
672
|
+
isa = PBXNativeTarget;
|
|
673
|
+
buildConfigurationList = C0C01EB91E3911D50056E6CB /* Build configuration list for PBXNativeTarget "Cordova" */;
|
|
674
|
+
buildPhases = (
|
|
675
|
+
C0C01EAD1E3911D50056E6CB /* Sources */,
|
|
676
|
+
C0C01EAE1E3911D50056E6CB /* Frameworks */,
|
|
677
|
+
C0C01EAF1E3911D50056E6CB /* Headers */,
|
|
678
|
+
C0C01EB01E3911D50056E6CB /* Resources */,
|
|
679
|
+
);
|
|
680
|
+
buildRules = (
|
|
681
|
+
);
|
|
682
|
+
dependencies = (
|
|
683
|
+
C0C01ED21E39137C0056E6CB /* PBXTargetDependency */,
|
|
684
|
+
);
|
|
685
|
+
name = Cordova;
|
|
686
|
+
productName = Cordova;
|
|
687
|
+
productReference = C0C01EB21E3911D50056E6CB /* Cordova.framework */;
|
|
688
|
+
productType = "com.apple.product-type.framework";
|
|
689
|
+
};
|
|
690
|
+
D2AAC07D0554694100DB518D /* SitumCordovaPlugin */ = {
|
|
691
|
+
isa = PBXNativeTarget;
|
|
692
|
+
buildConfigurationList = 1DEB921E08733DC00010E9CD /* Build configuration list for PBXNativeTarget "SitumCordovaPlugin" */;
|
|
693
|
+
buildPhases = (
|
|
694
|
+
712FCE3ADEDCD33CFACE5587 /* [CP] Check Pods Manifest.lock */,
|
|
695
|
+
D2AAC07A0554694100DB518D /* Headers */,
|
|
696
|
+
D2AAC07B0554694100DB518D /* Sources */,
|
|
697
|
+
D2AAC07C0554694100DB518D /* Frameworks */,
|
|
698
|
+
0D884E7E2116FD8E0066C765 /* Resources */,
|
|
699
|
+
DF7CE5352F475FBC1C87C1F3 /* [CP] Copy Pods Resources */,
|
|
700
|
+
);
|
|
701
|
+
buildRules = (
|
|
702
|
+
);
|
|
703
|
+
dependencies = (
|
|
704
|
+
);
|
|
705
|
+
name = SitumCordovaPlugin;
|
|
706
|
+
productName = CordovaLib;
|
|
707
|
+
productReference = 68A32D7114102E1C006B237C /* libCordova.a */;
|
|
708
|
+
productType = "com.apple.product-type.library.static";
|
|
709
|
+
};
|
|
710
|
+
/* End PBXNativeTarget section */
|
|
711
|
+
|
|
712
|
+
/* Begin PBXProject section */
|
|
713
|
+
0867D690FE84028FC02AAC07 /* Project object */ = {
|
|
714
|
+
isa = PBXProject;
|
|
715
|
+
attributes = {
|
|
716
|
+
LastUpgradeCheck = 0720;
|
|
717
|
+
TargetAttributes = {
|
|
718
|
+
0D884A0D21145F820066C765 = {
|
|
719
|
+
CreatedOnToolsVersion = 9.2;
|
|
720
|
+
DevelopmentTeam = ACLL2M4T26;
|
|
721
|
+
ProvisioningStyle = Automatic;
|
|
722
|
+
};
|
|
723
|
+
C0C01EB11E3911D50056E6CB = {
|
|
724
|
+
CreatedOnToolsVersion = 8.2;
|
|
725
|
+
ProvisioningStyle = Automatic;
|
|
726
|
+
};
|
|
727
|
+
};
|
|
728
|
+
};
|
|
729
|
+
buildConfigurationList = 1DEB922208733DC00010E9CD /* Build configuration list for PBXProject "SitumCordovaPlugin" */;
|
|
730
|
+
compatibilityVersion = "Xcode 3.2";
|
|
731
|
+
developmentRegion = English;
|
|
732
|
+
hasScannedForEncodings = 1;
|
|
733
|
+
knownRegions = (
|
|
734
|
+
English,
|
|
735
|
+
Japanese,
|
|
736
|
+
French,
|
|
737
|
+
German,
|
|
738
|
+
en,
|
|
739
|
+
Base,
|
|
740
|
+
);
|
|
741
|
+
mainGroup = 0867D691FE84028FC02AAC07;
|
|
742
|
+
productRefGroup = 034768DFFF38A50411DB9C8B /* Products */;
|
|
743
|
+
projectDirPath = "";
|
|
744
|
+
projectRoot = "";
|
|
745
|
+
targets = (
|
|
746
|
+
D2AAC07D0554694100DB518D /* SitumCordovaPlugin */,
|
|
747
|
+
0D884A0D21145F820066C765 /* situmcordovaplugintests */,
|
|
748
|
+
C0C01EB11E3911D50056E6CB /* Cordova */,
|
|
749
|
+
);
|
|
750
|
+
};
|
|
751
|
+
/* End PBXProject section */
|
|
752
|
+
|
|
753
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
754
|
+
0D884A0C21145F820066C765 /* Resources */ = {
|
|
755
|
+
isa = PBXResourcesBuildPhase;
|
|
756
|
+
buildActionMask = 2147483647;
|
|
757
|
+
files = (
|
|
758
|
+
0D884E7D2116FAA20066C765 /* resources in Resources */,
|
|
759
|
+
0D884E88211708900066C765 /* Info.plist in Resources */,
|
|
760
|
+
);
|
|
761
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
762
|
+
};
|
|
763
|
+
0D884E7E2116FD8E0066C765 /* Resources */ = {
|
|
764
|
+
isa = PBXResourcesBuildPhase;
|
|
765
|
+
buildActionMask = 2147483647;
|
|
766
|
+
files = (
|
|
767
|
+
0D884E832117012F0066C765 /* resources in Resources */,
|
|
768
|
+
0D884E87211708900066C765 /* Info.plist in Resources */,
|
|
769
|
+
);
|
|
770
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
771
|
+
};
|
|
772
|
+
C0C01EB01E3911D50056E6CB /* Resources */ = {
|
|
773
|
+
isa = PBXResourcesBuildPhase;
|
|
774
|
+
buildActionMask = 2147483647;
|
|
775
|
+
files = (
|
|
776
|
+
);
|
|
777
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
778
|
+
};
|
|
779
|
+
/* End PBXResourcesBuildPhase section */
|
|
780
|
+
|
|
781
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
782
|
+
712FCE3ADEDCD33CFACE5587 /* [CP] Check Pods Manifest.lock */ = {
|
|
783
|
+
isa = PBXShellScriptBuildPhase;
|
|
784
|
+
buildActionMask = 2147483647;
|
|
785
|
+
files = (
|
|
786
|
+
);
|
|
787
|
+
inputPaths = (
|
|
788
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
789
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
790
|
+
);
|
|
791
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
792
|
+
outputPaths = (
|
|
793
|
+
"$(DERIVED_FILE_DIR)/Pods-SitumCordovaPlugin-checkManifestLockResult.txt",
|
|
794
|
+
);
|
|
795
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
796
|
+
shellPath = /bin/sh;
|
|
797
|
+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
798
|
+
showEnvVarsInLog = 0;
|
|
799
|
+
};
|
|
800
|
+
DF7CE5352F475FBC1C87C1F3 /* [CP] Copy Pods Resources */ = {
|
|
801
|
+
isa = PBXShellScriptBuildPhase;
|
|
802
|
+
buildActionMask = 2147483647;
|
|
803
|
+
files = (
|
|
804
|
+
);
|
|
805
|
+
inputPaths = (
|
|
806
|
+
);
|
|
807
|
+
name = "[CP] Copy Pods Resources";
|
|
808
|
+
outputPaths = (
|
|
809
|
+
);
|
|
810
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
811
|
+
shellPath = /bin/sh;
|
|
812
|
+
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-SitumCordovaPlugin/Pods-SitumCordovaPlugin-resources.sh\"\n";
|
|
813
|
+
showEnvVarsInLog = 0;
|
|
814
|
+
};
|
|
815
|
+
/* End PBXShellScriptBuildPhase section */
|
|
816
|
+
|
|
817
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
818
|
+
0D884A0A21145F820066C765 /* Sources */ = {
|
|
819
|
+
isa = PBXSourcesBuildPhase;
|
|
820
|
+
buildActionMask = 2147483647;
|
|
821
|
+
files = (
|
|
822
|
+
0D5CFD52212C275E00C6E436 /* CDVGestureHandler.m in Sources */,
|
|
823
|
+
0D5CFD5D212C275E00C6E436 /* CDVLocalStorage.m in Sources */,
|
|
824
|
+
957695E1217DA8960082E679 /* LocationRequestTest.m in Sources */,
|
|
825
|
+
0D884A222114634E0066C765 /* TestingHelper.m in Sources */,
|
|
826
|
+
95B14A3F214A4AED0073A9E1 /* LocationTests.m in Sources */,
|
|
827
|
+
95B14A43214A4E550073A9E1 /* NavigationProgressTests.m in Sources */,
|
|
828
|
+
0D5CFD67212C275E00C6E436 /* CDVUIWebViewEngine.m in Sources */,
|
|
829
|
+
95B14A3D214A49B30073A9E1 /* indicationTests.m in Sources */,
|
|
830
|
+
95B14A2D214A44800073A9E1 /* AngleTests.m in Sources */,
|
|
831
|
+
0D5CFD64212C275E00C6E436 /* CDVUIWebViewNavigationDelegate.m in Sources */,
|
|
832
|
+
95B14A37214A47D20073A9E1 /* DimensionTests.m in Sources */,
|
|
833
|
+
95B14A41214A4CF20073A9E1 /* LocationStatusTests.m in Sources */,
|
|
834
|
+
954995F8214FACD8007F3C28 /* PoiCategoryIconTests.m in Sources */,
|
|
835
|
+
954995F2214F8BBB007F3C28 /* Constants.m in Sources */,
|
|
836
|
+
95B14A35214A476B0073A9E1 /* CoordinateTests.m in Sources */,
|
|
837
|
+
952D03B021B160DE000C6530 /* DirectionsRequestTest.m in Sources */,
|
|
838
|
+
95B14A49214A535A0073A9E1 /* RouteStepTests.m in Sources */,
|
|
839
|
+
3A4011392153B24400AC3BD5 /* InputLocationTests.m in Sources */,
|
|
840
|
+
95B14A4D214A56CE0073A9E1 /* BuildingTests.m in Sources */,
|
|
841
|
+
95F6FF5E2153B5E700AE30B5 /* InputFloorTests.m in Sources */,
|
|
842
|
+
0D5CFD58212C275E00C6E436 /* CDVHandleOpenURL.m in Sources */,
|
|
843
|
+
95B14A39214A488F0073A9E1 /* EventTests.m in Sources */,
|
|
844
|
+
95D33B49214B9680000E073E /* PoiTests.m in Sources */,
|
|
845
|
+
95B14A2F214A45B10073A9E1 /* BoundTests.m in Sources */,
|
|
846
|
+
3A40113D2153CBA800AC3BD5 /* InputIndicationTests.m in Sources */,
|
|
847
|
+
95B14A47214A51BA0073A9E1 /* RouteTests.m in Sources */,
|
|
848
|
+
0D5CFD61212C275E00C6E436 /* CDVUIWebViewDelegate.m in Sources */,
|
|
849
|
+
95B14A33214A46E20073A9E1 /* CartesianCoordinateTests.m in Sources */,
|
|
850
|
+
3A4011372153B0D500AC3BD5 /* InputCoordinateTests.m in Sources */,
|
|
851
|
+
95B14A4B214A54CA0073A9E1 /* ConversionAreaTests.m in Sources */,
|
|
852
|
+
3A40113B2153C4CB00AC3BD5 /* InputPoiCategoryTests.m in Sources */,
|
|
853
|
+
95B14A2B214A402E0073A9E1 /* PointTests.m in Sources */,
|
|
854
|
+
3A4D721B215276660038ED55 /* InputCartesianCoordinateTests.m in Sources */,
|
|
855
|
+
0D884A202114634E0066C765 /* SitumCreatorTests.m in Sources */,
|
|
856
|
+
3A4D721721525B970038ED55 /* InputPointTests.m in Sources */,
|
|
857
|
+
95B14A3B214A48F80073A9E1 /* FloorTests.m in Sources */,
|
|
858
|
+
0D5CFD54212C275E00C6E436 /* CDVIntentAndNavigationFilter.m in Sources */,
|
|
859
|
+
95B14A45214A50E60073A9E1 /* PoiCategoryTests.m in Sources */,
|
|
860
|
+
0D5CFD5B212C275E00C6E436 /* CDVLogger.m in Sources */,
|
|
861
|
+
);
|
|
862
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
863
|
+
};
|
|
864
|
+
C0C01EAD1E3911D50056E6CB /* Sources */ = {
|
|
865
|
+
isa = PBXSourcesBuildPhase;
|
|
866
|
+
buildActionMask = 2147483647;
|
|
867
|
+
files = (
|
|
868
|
+
);
|
|
869
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
870
|
+
};
|
|
871
|
+
D2AAC07B0554694100DB518D /* Sources */ = {
|
|
872
|
+
isa = PBXSourcesBuildPhase;
|
|
873
|
+
buildActionMask = 2147483647;
|
|
874
|
+
files = (
|
|
875
|
+
0D5CFD60212C275E00C6E436 /* CDVUIWebViewDelegate.m in Sources */,
|
|
876
|
+
0DF4AB1921143D5800D81A31 /* main.m in Sources */,
|
|
877
|
+
0D5CFD57212C275E00C6E436 /* CDVHandleOpenURL.m in Sources */,
|
|
878
|
+
0D5CFD53212C275E00C6E436 /* CDVIntentAndNavigationFilter.m in Sources */,
|
|
879
|
+
954995F1214F8BBB007F3C28 /* Constants.m in Sources */,
|
|
880
|
+
7ED95D511AB9029B008C4574 /* CDVViewController.m in Sources */,
|
|
881
|
+
7ED95D581AB9029B008C4574 /* NSDictionary+CordovaPreferences.m in Sources */,
|
|
882
|
+
7ED95D371AB9029B008C4574 /* CDVAppDelegate.m in Sources */,
|
|
883
|
+
0DF4AB1C21143D5800D81A31 /* SitumLocationWrapper.m in Sources */,
|
|
884
|
+
7ED95D3C1AB9029B008C4574 /* CDVCommandDelegateImpl.m in Sources */,
|
|
885
|
+
7ED95D041AB9028C008C4574 /* CDVJSON_private.m in Sources */,
|
|
886
|
+
7ED95D541AB9029B008C4574 /* CDVWhitelist.m in Sources */,
|
|
887
|
+
7ED95D421AB9029B008C4574 /* CDVInvokedUrlCommand.m in Sources */,
|
|
888
|
+
7ED95D4B1AB9029B008C4574 /* CDVTimer.m in Sources */,
|
|
889
|
+
0D5CFD66212C275E00C6E436 /* CDVUIWebViewEngine.m in Sources */,
|
|
890
|
+
0DF4AB1A21143D5800D81A31 /* situmcordovaplugin.xcdatamodeld in Sources */,
|
|
891
|
+
0D5CFD5A212C275E00C6E436 /* CDVLogger.m in Sources */,
|
|
892
|
+
0D5CFD51212C275E00C6E436 /* CDVGestureHandler.m in Sources */,
|
|
893
|
+
0D5CFD63212C275E00C6E436 /* CDVUIWebViewNavigationDelegate.m in Sources */,
|
|
894
|
+
7ED95D4F1AB9029B008C4574 /* CDVUserAgentUtil.m in Sources */,
|
|
895
|
+
7ED95D401AB9029B008C4574 /* CDVConfigParser.m in Sources */,
|
|
896
|
+
0D5CFD5C212C275E00C6E436 /* CDVLocalStorage.m in Sources */,
|
|
897
|
+
7ED95D5A1AB9029B008C4574 /* NSMutableArray+QueueAdditions.m in Sources */,
|
|
898
|
+
7ED95D3E1AB9029B008C4574 /* CDVCommandQueue.m in Sources */,
|
|
899
|
+
7ED95D481AB9029B008C4574 /* CDVPluginResult.m in Sources */,
|
|
900
|
+
7ED95D441AB9029B008C4574 /* CDVPlugin+Resources.m in Sources */,
|
|
901
|
+
7ED95D4D1AB9029B008C4574 /* CDVURLProtocol.m in Sources */,
|
|
902
|
+
0DF4AB1E21143D5800D81A31 /* SitumPlugin.m in Sources */,
|
|
903
|
+
0DF4AB1821143D5800D81A31 /* AppDelegate.m in Sources */,
|
|
904
|
+
0DF4AB2021143D5800D81A31 /* ViewController.m in Sources */,
|
|
905
|
+
7ED95D461AB9029B008C4574 /* CDVPlugin.m in Sources */,
|
|
906
|
+
);
|
|
907
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
908
|
+
};
|
|
909
|
+
/* End PBXSourcesBuildPhase section */
|
|
910
|
+
|
|
911
|
+
/* Begin PBXTargetDependency section */
|
|
912
|
+
0D884A1521145F820066C765 /* PBXTargetDependency */ = {
|
|
913
|
+
isa = PBXTargetDependency;
|
|
914
|
+
target = D2AAC07D0554694100DB518D /* SitumCordovaPlugin */;
|
|
915
|
+
targetProxy = 0D884A1421145F820066C765 /* PBXContainerItemProxy */;
|
|
916
|
+
};
|
|
917
|
+
C0C01ED21E39137C0056E6CB /* PBXTargetDependency */ = {
|
|
918
|
+
isa = PBXTargetDependency;
|
|
919
|
+
target = D2AAC07D0554694100DB518D /* SitumCordovaPlugin */;
|
|
920
|
+
targetProxy = C0C01ED11E39137C0056E6CB /* PBXContainerItemProxy */;
|
|
921
|
+
};
|
|
922
|
+
/* End PBXTargetDependency section */
|
|
923
|
+
|
|
924
|
+
/* Begin PBXVariantGroup section */
|
|
925
|
+
0DF4AB0921143D5700D81A31 /* LaunchScreen.storyboard */ = {
|
|
926
|
+
isa = PBXVariantGroup;
|
|
927
|
+
children = (
|
|
928
|
+
0DF4AB0A21143D5700D81A31 /* Base */,
|
|
929
|
+
);
|
|
930
|
+
name = LaunchScreen.storyboard;
|
|
931
|
+
sourceTree = "<group>";
|
|
932
|
+
};
|
|
933
|
+
0DF4AB0B21143D5700D81A31 /* Main.storyboard */ = {
|
|
934
|
+
isa = PBXVariantGroup;
|
|
935
|
+
children = (
|
|
936
|
+
0DF4AB0C21143D5700D81A31 /* Base */,
|
|
937
|
+
);
|
|
938
|
+
name = Main.storyboard;
|
|
939
|
+
sourceTree = "<group>";
|
|
940
|
+
};
|
|
941
|
+
/* End PBXVariantGroup section */
|
|
942
|
+
|
|
943
|
+
/* Begin XCBuildConfiguration section */
|
|
944
|
+
0D884A1721145F820066C765 /* Debug */ = {
|
|
945
|
+
isa = XCBuildConfiguration;
|
|
946
|
+
buildSettings = {
|
|
947
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
948
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
949
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
950
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
951
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
952
|
+
CLANG_ENABLE_MODULES = YES;
|
|
953
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
954
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
955
|
+
CLANG_WARN_COMMA = YES;
|
|
956
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
957
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
958
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
959
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
960
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
961
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
962
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
963
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
964
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
965
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
966
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
967
|
+
CODE_SIGN_IDENTITY = "iPhone Developer";
|
|
968
|
+
CODE_SIGN_STYLE = Automatic;
|
|
969
|
+
COPY_PHASE_STRIP = NO;
|
|
970
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
971
|
+
DEVELOPMENT_TEAM = ACLL2M4T26;
|
|
972
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
973
|
+
FRAMEWORK_SEARCH_PATHS = (
|
|
974
|
+
"$(inherited)",
|
|
975
|
+
"$(PROJECT_DIR)/Frameworks",
|
|
976
|
+
"$(PROJECT_DIR)/Pods/SitumSDK",
|
|
977
|
+
);
|
|
978
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
979
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
980
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
981
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
982
|
+
"DEBUG=1",
|
|
983
|
+
"$(inherited)",
|
|
984
|
+
);
|
|
985
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
986
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
987
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
988
|
+
INFOPLIST_FILE = situmcordovaplugintests/Info.plist;
|
|
989
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.2;
|
|
990
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
991
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
992
|
+
PRODUCT_BUNDLE_IDENTIFIER = es.situm.situmcordovaplugintests;
|
|
993
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
994
|
+
SDKROOT = iphoneos;
|
|
995
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
996
|
+
};
|
|
997
|
+
name = Debug;
|
|
998
|
+
};
|
|
999
|
+
0D884A1821145F820066C765 /* Release */ = {
|
|
1000
|
+
isa = XCBuildConfiguration;
|
|
1001
|
+
buildSettings = {
|
|
1002
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
1003
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
1004
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
1005
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
1006
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
1007
|
+
CLANG_ENABLE_MODULES = YES;
|
|
1008
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
1009
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
1010
|
+
CLANG_WARN_COMMA = YES;
|
|
1011
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
1012
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
1013
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
1014
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
1015
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
1016
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
1017
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
1018
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
1019
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
1020
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
1021
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
1022
|
+
CODE_SIGN_IDENTITY = "iPhone Developer";
|
|
1023
|
+
CODE_SIGN_STYLE = Automatic;
|
|
1024
|
+
COPY_PHASE_STRIP = NO;
|
|
1025
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
1026
|
+
DEVELOPMENT_TEAM = ACLL2M4T26;
|
|
1027
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
1028
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
1029
|
+
FRAMEWORK_SEARCH_PATHS = (
|
|
1030
|
+
"$(inherited)",
|
|
1031
|
+
"$(PROJECT_DIR)/Frameworks",
|
|
1032
|
+
"$(PROJECT_DIR)/Pods/SitumSDK",
|
|
1033
|
+
);
|
|
1034
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
1035
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
1036
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
1037
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
1038
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
1039
|
+
INFOPLIST_FILE = situmcordovaplugintests/Info.plist;
|
|
1040
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.2;
|
|
1041
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1042
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
1043
|
+
PRODUCT_BUNDLE_IDENTIFIER = es.situm.situmcordovaplugintests;
|
|
1044
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
1045
|
+
SDKROOT = iphoneos;
|
|
1046
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1047
|
+
VALIDATE_PRODUCT = YES;
|
|
1048
|
+
};
|
|
1049
|
+
name = Release;
|
|
1050
|
+
};
|
|
1051
|
+
1DEB921F08733DC00010E9CD /* Debug */ = {
|
|
1052
|
+
isa = XCBuildConfiguration;
|
|
1053
|
+
baseConfigurationReference = 46C0027AC4E47712B8F99B92 /* Pods-SitumCordovaPlugin.debug.xcconfig */;
|
|
1054
|
+
buildSettings = {
|
|
1055
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
1056
|
+
CLANG_ENABLE_MODULES = YES;
|
|
1057
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
1058
|
+
COPY_PHASE_STRIP = NO;
|
|
1059
|
+
DSTROOT = "/tmp/$(PROJECT_NAME).dst";
|
|
1060
|
+
FRAMEWORK_SEARCH_PATHS = (
|
|
1061
|
+
"$(inherited)",
|
|
1062
|
+
"$(PROJECT_DIR)",
|
|
1063
|
+
"$(PROJECT_DIR)/Frameworks",
|
|
1064
|
+
"$(PROJECT_DIR)/situmcordovaplugin",
|
|
1065
|
+
"$(PROJECT_DIR)/situmcordovaplugin/Frameworks",
|
|
1066
|
+
);
|
|
1067
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
1068
|
+
GCC_MODEL_TUNING = G5;
|
|
1069
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
1070
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
|
1071
|
+
GCC_PREFIX_HEADER = SitumCordovaPlugin_Prefix.pch;
|
|
1072
|
+
GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
|
|
1073
|
+
GCC_THUMB_SUPPORT = NO;
|
|
1074
|
+
GCC_VERSION = "";
|
|
1075
|
+
INSTALL_PATH = /usr/local/lib;
|
|
1076
|
+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
|
1077
|
+
PRODUCT_NAME = Cordova;
|
|
1078
|
+
PUBLIC_HEADERS_FOLDER_PATH = include/Cordova;
|
|
1079
|
+
SKIP_INSTALL = YES;
|
|
1080
|
+
};
|
|
1081
|
+
name = Debug;
|
|
1082
|
+
};
|
|
1083
|
+
1DEB922008733DC00010E9CD /* Release */ = {
|
|
1084
|
+
isa = XCBuildConfiguration;
|
|
1085
|
+
baseConfigurationReference = 62F273CAF5F251313DF70561 /* Pods-SitumCordovaPlugin.release.xcconfig */;
|
|
1086
|
+
buildSettings = {
|
|
1087
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
1088
|
+
CLANG_ENABLE_MODULES = YES;
|
|
1089
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
1090
|
+
DSTROOT = "/tmp/$(PROJECT_NAME).dst";
|
|
1091
|
+
FRAMEWORK_SEARCH_PATHS = (
|
|
1092
|
+
"$(inherited)",
|
|
1093
|
+
"$(PROJECT_DIR)",
|
|
1094
|
+
"$(PROJECT_DIR)/Frameworks",
|
|
1095
|
+
"$(PROJECT_DIR)/situmcordovaplugin",
|
|
1096
|
+
"$(PROJECT_DIR)/situmcordovaplugin/Frameworks",
|
|
1097
|
+
);
|
|
1098
|
+
GCC_MODEL_TUNING = G5;
|
|
1099
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
|
1100
|
+
GCC_PREFIX_HEADER = SitumCordovaPlugin_Prefix.pch;
|
|
1101
|
+
GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
|
|
1102
|
+
GCC_THUMB_SUPPORT = NO;
|
|
1103
|
+
GCC_VERSION = "";
|
|
1104
|
+
INSTALL_PATH = /usr/local/lib;
|
|
1105
|
+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
|
1106
|
+
PRODUCT_NAME = Cordova;
|
|
1107
|
+
PUBLIC_HEADERS_FOLDER_PATH = include/Cordova;
|
|
1108
|
+
SKIP_INSTALL = YES;
|
|
1109
|
+
};
|
|
1110
|
+
name = Release;
|
|
1111
|
+
};
|
|
1112
|
+
1DEB922308733DC00010E9CD /* Debug */ = {
|
|
1113
|
+
isa = XCBuildConfiguration;
|
|
1114
|
+
buildSettings = {
|
|
1115
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
1116
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
1117
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
1118
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
1119
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
1120
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
1121
|
+
ENABLE_TESTABILITY = YES;
|
|
1122
|
+
GCC_C_LANGUAGE_STANDARD = c99;
|
|
1123
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
1124
|
+
GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
|
|
1125
|
+
GCC_THUMB_SUPPORT = NO;
|
|
1126
|
+
GCC_VERSION = "";
|
|
1127
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
|
1128
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
1129
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
|
1130
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
1131
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
1132
|
+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
|
1133
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
1134
|
+
OTHER_CFLAGS = "-DDEBUG";
|
|
1135
|
+
PUBLIC_HEADERS_FOLDER_PATH = include/Cordova;
|
|
1136
|
+
SDKROOT = iphoneos;
|
|
1137
|
+
SKIP_INSTALL = YES;
|
|
1138
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1139
|
+
USER_HEADER_SEARCH_PATHS = "";
|
|
1140
|
+
};
|
|
1141
|
+
name = Debug;
|
|
1142
|
+
};
|
|
1143
|
+
1DEB922408733DC00010E9CD /* Release */ = {
|
|
1144
|
+
isa = XCBuildConfiguration;
|
|
1145
|
+
buildSettings = {
|
|
1146
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
1147
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
1148
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
1149
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
1150
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
1151
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
1152
|
+
GCC_C_LANGUAGE_STANDARD = c99;
|
|
1153
|
+
GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
|
|
1154
|
+
GCC_THUMB_SUPPORT = NO;
|
|
1155
|
+
GCC_VERSION = "";
|
|
1156
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
|
1157
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
1158
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
|
1159
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
1160
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
1161
|
+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
|
1162
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
1163
|
+
PUBLIC_HEADERS_FOLDER_PATH = include/Cordova;
|
|
1164
|
+
SDKROOT = iphoneos;
|
|
1165
|
+
SKIP_INSTALL = YES;
|
|
1166
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1167
|
+
};
|
|
1168
|
+
name = Release;
|
|
1169
|
+
};
|
|
1170
|
+
C0C01EB71E3911D50056E6CB /* Debug */ = {
|
|
1171
|
+
isa = XCBuildConfiguration;
|
|
1172
|
+
buildSettings = {
|
|
1173
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
1174
|
+
ARCHS = "$(ARCHS_STANDARD)";
|
|
1175
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
1176
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
1177
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
1178
|
+
CLANG_ENABLE_MODULES = YES;
|
|
1179
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
1180
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
1181
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
1182
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
1183
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
1184
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
1185
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
1186
|
+
CODE_SIGN_IDENTITY = "";
|
|
1187
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
1188
|
+
COPY_PHASE_STRIP = NO;
|
|
1189
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1190
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
1191
|
+
DEFINES_MODULE = YES;
|
|
1192
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1193
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1194
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1195
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
1196
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
1197
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
1198
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
1199
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
1200
|
+
"DEBUG=1",
|
|
1201
|
+
"$(inherited)",
|
|
1202
|
+
);
|
|
1203
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
1204
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
1205
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
1206
|
+
INFOPLIST_FILE = Cordova/Info.plist;
|
|
1207
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1208
|
+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
|
1209
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1210
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
1211
|
+
OTHER_LDFLAGS = "-all_load";
|
|
1212
|
+
PRODUCT_BUNDLE_IDENTIFIER = org.apache.cordova.Cordova;
|
|
1213
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
1214
|
+
PUBLIC_HEADERS_FOLDER_PATH = "$(CONTENTS_FOLDER_PATH)/Headers";
|
|
1215
|
+
SKIP_INSTALL = YES;
|
|
1216
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1217
|
+
VERSION_INFO_PREFIX = "";
|
|
1218
|
+
};
|
|
1219
|
+
name = Debug;
|
|
1220
|
+
};
|
|
1221
|
+
C0C01EB81E3911D50056E6CB /* Release */ = {
|
|
1222
|
+
isa = XCBuildConfiguration;
|
|
1223
|
+
buildSettings = {
|
|
1224
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
1225
|
+
ARCHS = "$(ARCHS_STANDARD)";
|
|
1226
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
1227
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
1228
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
1229
|
+
CLANG_ENABLE_MODULES = YES;
|
|
1230
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
1231
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
1232
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
1233
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
1234
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
1235
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
1236
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
1237
|
+
CODE_SIGN_IDENTITY = "";
|
|
1238
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
1239
|
+
COPY_PHASE_STRIP = NO;
|
|
1240
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1241
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
1242
|
+
DEFINES_MODULE = YES;
|
|
1243
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1244
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1245
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1246
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
1247
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
1248
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
1249
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
1250
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
1251
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
1252
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
1253
|
+
INFOPLIST_FILE = Cordova/Info.plist;
|
|
1254
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1255
|
+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
|
1256
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1257
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
1258
|
+
OTHER_LDFLAGS = "-all_load";
|
|
1259
|
+
PRODUCT_BUNDLE_IDENTIFIER = org.apache.cordova.Cordova;
|
|
1260
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
1261
|
+
PUBLIC_HEADERS_FOLDER_PATH = "$(CONTENTS_FOLDER_PATH)/Headers";
|
|
1262
|
+
SKIP_INSTALL = YES;
|
|
1263
|
+
VALIDATE_PRODUCT = YES;
|
|
1264
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1265
|
+
VERSION_INFO_PREFIX = "";
|
|
1266
|
+
};
|
|
1267
|
+
name = Release;
|
|
1268
|
+
};
|
|
1269
|
+
/* End XCBuildConfiguration section */
|
|
1270
|
+
|
|
1271
|
+
/* Begin XCConfigurationList section */
|
|
1272
|
+
0D884A1621145F820066C765 /* Build configuration list for PBXNativeTarget "situmcordovaplugintests" */ = {
|
|
1273
|
+
isa = XCConfigurationList;
|
|
1274
|
+
buildConfigurations = (
|
|
1275
|
+
0D884A1721145F820066C765 /* Debug */,
|
|
1276
|
+
0D884A1821145F820066C765 /* Release */,
|
|
1277
|
+
);
|
|
1278
|
+
defaultConfigurationIsVisible = 0;
|
|
1279
|
+
defaultConfigurationName = Release;
|
|
1280
|
+
};
|
|
1281
|
+
1DEB921E08733DC00010E9CD /* Build configuration list for PBXNativeTarget "SitumCordovaPlugin" */ = {
|
|
1282
|
+
isa = XCConfigurationList;
|
|
1283
|
+
buildConfigurations = (
|
|
1284
|
+
1DEB921F08733DC00010E9CD /* Debug */,
|
|
1285
|
+
1DEB922008733DC00010E9CD /* Release */,
|
|
1286
|
+
);
|
|
1287
|
+
defaultConfigurationIsVisible = 0;
|
|
1288
|
+
defaultConfigurationName = Release;
|
|
1289
|
+
};
|
|
1290
|
+
1DEB922208733DC00010E9CD /* Build configuration list for PBXProject "SitumCordovaPlugin" */ = {
|
|
1291
|
+
isa = XCConfigurationList;
|
|
1292
|
+
buildConfigurations = (
|
|
1293
|
+
1DEB922308733DC00010E9CD /* Debug */,
|
|
1294
|
+
1DEB922408733DC00010E9CD /* Release */,
|
|
1295
|
+
);
|
|
1296
|
+
defaultConfigurationIsVisible = 0;
|
|
1297
|
+
defaultConfigurationName = Release;
|
|
1298
|
+
};
|
|
1299
|
+
C0C01EB91E3911D50056E6CB /* Build configuration list for PBXNativeTarget "Cordova" */ = {
|
|
1300
|
+
isa = XCConfigurationList;
|
|
1301
|
+
buildConfigurations = (
|
|
1302
|
+
C0C01EB71E3911D50056E6CB /* Debug */,
|
|
1303
|
+
C0C01EB81E3911D50056E6CB /* Release */,
|
|
1304
|
+
);
|
|
1305
|
+
defaultConfigurationIsVisible = 0;
|
|
1306
|
+
defaultConfigurationName = Release;
|
|
1307
|
+
};
|
|
1308
|
+
/* End XCConfigurationList section */
|
|
1309
|
+
|
|
1310
|
+
/* Begin XCVersionGroup section */
|
|
1311
|
+
0DF4AB0F21143D5700D81A31 /* situmcordovaplugin.xcdatamodeld */ = {
|
|
1312
|
+
isa = XCVersionGroup;
|
|
1313
|
+
children = (
|
|
1314
|
+
0DF4AB1021143D5700D81A31 /* situmcordovaplugin.xcdatamodel */,
|
|
1315
|
+
);
|
|
1316
|
+
currentVersion = 0DF4AB1021143D5700D81A31 /* situmcordovaplugin.xcdatamodel */;
|
|
1317
|
+
path = situmcordovaplugin.xcdatamodeld;
|
|
1318
|
+
sourceTree = "<group>";
|
|
1319
|
+
versionGroupType = wrapper.xcdatamodel;
|
|
1320
|
+
};
|
|
1321
|
+
/* End XCVersionGroup section */
|
|
1322
|
+
};
|
|
1323
|
+
rootObject = 0867D690FE84028FC02AAC07 /* Project object */;
|
|
1324
|
+
}
|