@josuelmm/cordova-background-geolocation 2.3.5
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/.npmignore +23 -0
- package/CHANGELOG.md +787 -0
- package/CONTRIBUTORS.md +15 -0
- package/HISTORY.md +734 -0
- package/LICENSE +191 -0
- package/README.md +125 -0
- package/RELEASE.MD +5 -0
- package/android/CDVBackgroundGeolocation/src/main/AndroidManifest.xml +23 -0
- package/android/CDVBackgroundGeolocation/src/main/java/com/evgenii/jsevaluator/HandlerWrapper.java +18 -0
- package/android/CDVBackgroundGeolocation/src/main/java/com/evgenii/jsevaluator/JavaScriptInterface.java +22 -0
- package/android/CDVBackgroundGeolocation/src/main/java/com/evgenii/jsevaluator/JsEvaluator.java +133 -0
- package/android/CDVBackgroundGeolocation/src/main/java/com/evgenii/jsevaluator/JsFunctionCallFormatter.java +37 -0
- package/android/CDVBackgroundGeolocation/src/main/java/com/evgenii/jsevaluator/WebViewWrapper.java +71 -0
- package/android/CDVBackgroundGeolocation/src/main/java/com/evgenii/jsevaluator/interfaces/CallJavaResultInterface.java +8 -0
- package/android/CDVBackgroundGeolocation/src/main/java/com/evgenii/jsevaluator/interfaces/HandlerWrapperInterface.java +5 -0
- package/android/CDVBackgroundGeolocation/src/main/java/com/evgenii/jsevaluator/interfaces/JsCallback.java +10 -0
- package/android/CDVBackgroundGeolocation/src/main/java/com/evgenii/jsevaluator/interfaces/JsEvaluatorInterface.java +18 -0
- package/android/CDVBackgroundGeolocation/src/main/java/com/evgenii/jsevaluator/interfaces/WebViewWrapperInterface.java +14 -0
- package/android/CDVBackgroundGeolocation/src/main/java/com/marianhello/bgloc/cordova/ConfigMapper.java +148 -0
- package/android/CDVBackgroundGeolocation/src/main/java/com/marianhello/bgloc/cordova/PluginRegistry.java +25 -0
- package/android/CDVBackgroundGeolocation/src/main/java/com/marianhello/bgloc/cordova/headless/JsEvaluatorTaskRunner.java +53 -0
- package/android/CDVBackgroundGeolocation/src/main/java/com/tenforwardconsulting/bgloc/cordova/BackgroundGeolocationPlugin.java +603 -0
- package/android/CDVBackgroundGeolocation/src/main/res/values/strings.xml +4 -0
- package/android/CDVBackgroundGeolocation/src/test/java/com/marianhello/ConfigMapperTest.java +208 -0
- package/android/common/src/androidTest/java/com/marianhello/bgloc/BackgroundGeolocationFacadeTest.java +45 -0
- package/android/common/src/androidTest/java/com/marianhello/bgloc/BatchManagerTest.java +570 -0
- package/android/common/src/androidTest/java/com/marianhello/bgloc/ConfigTest.java +76 -0
- package/android/common/src/androidTest/java/com/marianhello/bgloc/ContentProviderLocationDAOTest.java +437 -0
- package/android/common/src/androidTest/java/com/marianhello/bgloc/DBLogReaderTest.java +95 -0
- package/android/common/src/androidTest/java/com/marianhello/bgloc/LocationContentProviderTest.java +159 -0
- package/android/common/src/androidTest/java/com/marianhello/bgloc/LocationServiceProxyTest.java +161 -0
- package/android/common/src/androidTest/java/com/marianhello/bgloc/LocationServiceTest.java +247 -0
- package/android/common/src/androidTest/java/com/marianhello/bgloc/SQLiteConfigurationDAOTest.java +200 -0
- package/android/common/src/androidTest/java/com/marianhello/bgloc/SQLiteLocationDAOTest.java +457 -0
- package/android/common/src/androidTest/java/com/marianhello/bgloc/SQLiteLocationDAOThreadTest.java +96 -0
- package/android/common/src/androidTest/java/com/marianhello/bgloc/SQLiteOpenHelperTest.java +225 -0
- package/android/common/src/androidTest/java/com/marianhello/bgloc/TestPluginDelegate.java +46 -0
- package/android/common/src/androidTest/java/com/marianhello/bgloc/TestResourceResolver.java +14 -0
- package/android/common/src/androidTest/java/com/marianhello/bgloc/provider/MockLocationProvider.java +50 -0
- package/android/common/src/androidTest/java/com/marianhello/bgloc/provider/TestLocationProviderFactory.java +17 -0
- package/android/common/src/androidTest/java/com/marianhello/bgloc/sqlite/SQLiteOpenHelper10.java +92 -0
- package/android/common/src/androidTest/java/com/marianhello/bgloc/test/LocationProviderTestCase.java +107 -0
- package/android/common/src/androidTest/java/com/marianhello/bgloc/test/TestConstants.java +5 -0
- package/android/common/src/main/AndroidManifest.xml +72 -0
- package/android/common/src/main/java/com/marianhello/bgloc/BackgroundGeolocationFacade.java +523 -0
- package/android/common/src/main/java/com/marianhello/bgloc/BootCompletedReceiver.java +59 -0
- package/android/common/src/main/java/com/marianhello/bgloc/Config.java +652 -0
- package/android/common/src/main/java/com/marianhello/bgloc/ConnectivityListener.java +5 -0
- package/android/common/src/main/java/com/marianhello/bgloc/HttpPostService.java +224 -0
- package/android/common/src/main/java/com/marianhello/bgloc/LocationManager.java +138 -0
- package/android/common/src/main/java/com/marianhello/bgloc/PluginDelegate.java +19 -0
- package/android/common/src/main/java/com/marianhello/bgloc/PluginException.java +38 -0
- package/android/common/src/main/java/com/marianhello/bgloc/PostLocationTask.java +188 -0
- package/android/common/src/main/java/com/marianhello/bgloc/ResourceResolver.java +55 -0
- package/android/common/src/main/java/com/marianhello/bgloc/data/AbstractLocationTemplate.java +69 -0
- package/android/common/src/main/java/com/marianhello/bgloc/data/ArrayListLocationTemplate.java +88 -0
- package/android/common/src/main/java/com/marianhello/bgloc/data/BackgroundActivity.java +108 -0
- package/android/common/src/main/java/com/marianhello/bgloc/data/BackgroundLocation.java +994 -0
- package/android/common/src/main/java/com/marianhello/bgloc/data/ConfigurationDAO.java +13 -0
- package/android/common/src/main/java/com/marianhello/bgloc/data/DAOFactory.java +17 -0
- package/android/common/src/main/java/com/marianhello/bgloc/data/HashMapLocationTemplate.java +82 -0
- package/android/common/src/main/java/com/marianhello/bgloc/data/LocationDAO.java +22 -0
- package/android/common/src/main/java/com/marianhello/bgloc/data/LocationTemplate.java +12 -0
- package/android/common/src/main/java/com/marianhello/bgloc/data/LocationTemplateFactory.java +65 -0
- package/android/common/src/main/java/com/marianhello/bgloc/data/LocationTransform.java +19 -0
- package/android/common/src/main/java/com/marianhello/bgloc/data/provider/ContentProviderLocationDAO.java +395 -0
- package/android/common/src/main/java/com/marianhello/bgloc/data/provider/LocationContentProvider.java +321 -0
- package/android/common/src/main/java/com/marianhello/bgloc/data/sqlite/SQLiteConfigurationContract.java +76 -0
- package/android/common/src/main/java/com/marianhello/bgloc/data/sqlite/SQLiteConfigurationDAO.java +160 -0
- package/android/common/src/main/java/com/marianhello/bgloc/data/sqlite/SQLiteLocationContract.java +112 -0
- package/android/common/src/main/java/com/marianhello/bgloc/data/sqlite/SQLiteLocationDAO.java +506 -0
- package/android/common/src/main/java/com/marianhello/bgloc/data/sqlite/SQLiteOpenHelper.java +151 -0
- package/android/common/src/main/java/com/marianhello/bgloc/headless/AbstractTaskRunner.java +15 -0
- package/android/common/src/main/java/com/marianhello/bgloc/headless/ActivityTask.java +48 -0
- package/android/common/src/main/java/com/marianhello/bgloc/headless/JsCallback.java +10 -0
- package/android/common/src/main/java/com/marianhello/bgloc/headless/LocationTask.java +60 -0
- package/android/common/src/main/java/com/marianhello/bgloc/headless/StationaryTask.java +25 -0
- package/android/common/src/main/java/com/marianhello/bgloc/headless/Task.java +8 -0
- package/android/common/src/main/java/com/marianhello/bgloc/headless/TaskRunner.java +5 -0
- package/android/common/src/main/java/com/marianhello/bgloc/headless/TaskRunnerFactory.java +8 -0
- package/android/common/src/main/java/com/marianhello/bgloc/provider/AbstractLocationProvider.java +171 -0
- package/android/common/src/main/java/com/marianhello/bgloc/provider/ActivityRecognitionLocationProvider.java +282 -0
- package/android/common/src/main/java/com/marianhello/bgloc/provider/DistanceFilterLocationProvider.java +610 -0
- package/android/common/src/main/java/com/marianhello/bgloc/provider/LocationProvider.java +32 -0
- package/android/common/src/main/java/com/marianhello/bgloc/provider/LocationProviderFactory.java +47 -0
- package/android/common/src/main/java/com/marianhello/bgloc/provider/ProviderDelegate.java +12 -0
- package/android/common/src/main/java/com/marianhello/bgloc/provider/RawLocationProvider.java +145 -0
- package/android/common/src/main/java/com/marianhello/bgloc/service/LocationService.java +16 -0
- package/android/common/src/main/java/com/marianhello/bgloc/service/LocationServiceImpl.java +749 -0
- package/android/common/src/main/java/com/marianhello/bgloc/service/LocationServiceInfo.java +6 -0
- package/android/common/src/main/java/com/marianhello/bgloc/service/LocationServiceInfoImpl.java +41 -0
- package/android/common/src/main/java/com/marianhello/bgloc/service/LocationServiceIntentBuilder.java +203 -0
- package/android/common/src/main/java/com/marianhello/bgloc/service/LocationServiceProxy.java +130 -0
- package/android/common/src/main/java/com/marianhello/bgloc/sync/AccountHelper.java +39 -0
- package/android/common/src/main/java/com/marianhello/bgloc/sync/Authenticator.java +68 -0
- package/android/common/src/main/java/com/marianhello/bgloc/sync/AuthenticatorService.java +28 -0
- package/android/common/src/main/java/com/marianhello/bgloc/sync/BatchManager.java +278 -0
- package/android/common/src/main/java/com/marianhello/bgloc/sync/NotificationHelper.java +148 -0
- package/android/common/src/main/java/com/marianhello/bgloc/sync/SyncAdapter.java +249 -0
- package/android/common/src/main/java/com/marianhello/bgloc/sync/SyncService.java +68 -0
- package/android/common/src/main/java/com/marianhello/logging/DBLogReader.java +203 -0
- package/android/common/src/main/java/com/marianhello/logging/LogEntry.java +99 -0
- package/android/common/src/main/java/com/marianhello/logging/LoggerManager.java +70 -0
- package/android/common/src/main/java/com/marianhello/logging/UncaughtExceptionLogger.java +36 -0
- package/android/common/src/main/java/com/marianhello/utils/CloneHelper.java +22 -0
- package/android/common/src/main/java/com/marianhello/utils/Convert.java +56 -0
- package/android/common/src/main/java/com/marianhello/utils/TextUtils.java +72 -0
- package/android/common/src/main/java/com/marianhello/utils/ToneGenerator.java +68 -0
- package/android/common/src/main/java/org/apache/commons/io/Charsets.java +153 -0
- package/android/common/src/main/java/org/apache/commons/io/input/ReversedLinesFileReader.java +344 -0
- package/android/common/src/main/java/org/chromium/content/browser/ThreadUtils.java +134 -0
- package/android/common/src/main/java/ru/andremoniy/sqlbuilder/SqlExpression.java +398 -0
- package/android/common/src/main/java/ru/andremoniy/sqlbuilder/SqlSelectStatement.java +671 -0
- package/android/common/src/main/java/ru/andremoniy/sqlbuilder/SqlStatement.java +29 -0
- package/android/common/src/main/java/ru/andremoniy/utils/TextUtils.java +61 -0
- package/android/common/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/android/common/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/android/common/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/android/common/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/android/common/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/android/common/src/main/res/values/strings.xml +4 -0
- package/android/common/src/main/res/xml/authenticator.xml +7 -0
- package/android/common/src/main/res/xml/syncadapter.xml +9 -0
- package/android/common/src/test/java/com/marianhello/backgroundgeolocation/ArrayListLocationTemplateTest.java +82 -0
- package/android/common/src/test/java/com/marianhello/backgroundgeolocation/BackgroundLocationTest.java +128 -0
- package/android/common/src/test/java/com/marianhello/backgroundgeolocation/ConfigTest.java +191 -0
- package/android/common/src/test/java/com/marianhello/backgroundgeolocation/DBLogReaderTest.java +37 -0
- package/android/common/src/test/java/com/marianhello/backgroundgeolocation/HashMapLocationTemplateTest.java +216 -0
- package/android/common/src/test/java/com/marianhello/backgroundgeolocation/HttpPostServiceTest.java +223 -0
- package/android/common/src/test/java/com/marianhello/backgroundgeolocation/LocationTemplateFactoryTest.java +50 -0
- package/android/common/src/test/java/com/marianhello/backgroundgeolocation/PostLocationTaskTest.java +180 -0
- package/android/common/src/test/java/com/marianhello/backgroundgeolocation/TestHelper.java +16 -0
- package/android/dependencies.gradle +13 -0
- package/ios/CDVBackgroundGeolocation/CDVBackgroundGeolocation.h +41 -0
- package/ios/CDVBackgroundGeolocation/CDVBackgroundGeolocation.m +526 -0
- package/ios/common/BackgroundGeolocation/CocoaLumberjack.h +1945 -0
- package/ios/common/BackgroundGeolocation/CocoaLumberjack.m +5255 -0
- package/ios/common/BackgroundGeolocation/FMDB.h +2357 -0
- package/ios/common/BackgroundGeolocation/FMDB.m +2672 -0
- package/ios/common/BackgroundGeolocation/FMDBLogger.h +42 -0
- package/ios/common/BackgroundGeolocation/FMDBLogger.m +264 -0
- package/ios/common/BackgroundGeolocation/INTULocationManager/INTUHeadingRequest.h +41 -0
- package/ios/common/BackgroundGeolocation/INTULocationManager/INTUHeadingRequest.m +68 -0
- package/ios/common/BackgroundGeolocation/INTULocationManager/INTULocationManager+Internal.h +33 -0
- package/ios/common/BackgroundGeolocation/INTULocationManager/INTULocationManager.h +178 -0
- package/ios/common/BackgroundGeolocation/INTULocationManager/INTULocationManager.m +1025 -0
- package/ios/common/BackgroundGeolocation/INTULocationManager/INTULocationRequest.h +103 -0
- package/ios/common/BackgroundGeolocation/INTULocationManager/INTULocationRequest.m +238 -0
- package/ios/common/BackgroundGeolocation/INTULocationManager/INTULocationRequestDefines.h +163 -0
- package/ios/common/BackgroundGeolocation/INTULocationManager/INTURequestIDGenerator.h +39 -0
- package/ios/common/BackgroundGeolocation/INTULocationManager/INTURequestIDGenerator.m +37 -0
- package/ios/common/BackgroundGeolocation/MAURAbstractLocationProvider.h +51 -0
- package/ios/common/BackgroundGeolocation/MAURAbstractLocationProvider.m +53 -0
- package/ios/common/BackgroundGeolocation/MAURActivity.h +23 -0
- package/ios/common/BackgroundGeolocation/MAURActivity.m +52 -0
- package/ios/common/BackgroundGeolocation/MAURActivityLocationProvider.h +18 -0
- package/ios/common/BackgroundGeolocation/MAURActivityLocationProvider.m +202 -0
- package/ios/common/BackgroundGeolocation/MAURBackgroundGeolocationFacade.h +60 -0
- package/ios/common/BackgroundGeolocation/MAURBackgroundGeolocationFacade.m +638 -0
- package/ios/common/BackgroundGeolocation/MAURBackgroundSync.h +34 -0
- package/ios/common/BackgroundGeolocation/MAURBackgroundSync.m +185 -0
- package/ios/common/BackgroundGeolocation/MAURBackgroundTaskManager.h +25 -0
- package/ios/common/BackgroundGeolocation/MAURBackgroundTaskManager.m +105 -0
- package/ios/common/BackgroundGeolocation/MAURConfig.h +74 -0
- package/ios/common/BackgroundGeolocation/MAURConfig.m +485 -0
- package/ios/common/BackgroundGeolocation/MAURConfigurationContract.h +49 -0
- package/ios/common/BackgroundGeolocation/MAURConfigurationContract.m +51 -0
- package/ios/common/BackgroundGeolocation/MAURDistanceFilterLocationProvider.h +20 -0
- package/ios/common/BackgroundGeolocation/MAURDistanceFilterLocationProvider.m +514 -0
- package/ios/common/BackgroundGeolocation/MAURGeolocationOpenHelper.h +17 -0
- package/ios/common/BackgroundGeolocation/MAURGeolocationOpenHelper.m +97 -0
- package/ios/common/BackgroundGeolocation/MAURLocation.h +59 -0
- package/ios/common/BackgroundGeolocation/MAURLocation.m +349 -0
- package/ios/common/BackgroundGeolocation/MAURLocationContract.h +34 -0
- package/ios/common/BackgroundGeolocation/MAURLocationContract.m +35 -0
- package/ios/common/BackgroundGeolocation/MAURLocationManager.h +53 -0
- package/ios/common/BackgroundGeolocation/MAURLocationManager.m +287 -0
- package/ios/common/BackgroundGeolocation/MAURLogReader.h +26 -0
- package/ios/common/BackgroundGeolocation/MAURLogReader.m +122 -0
- package/ios/common/BackgroundGeolocation/MAURLogging.h +19 -0
- package/ios/common/BackgroundGeolocation/MAURPostLocationTask.h +40 -0
- package/ios/common/BackgroundGeolocation/MAURPostLocationTask.m +250 -0
- package/ios/common/BackgroundGeolocation/MAURProviderDelegate.h +52 -0
- package/ios/common/BackgroundGeolocation/MAURRawLocationProvider.h +18 -0
- package/ios/common/BackgroundGeolocation/MAURRawLocationProvider.m +129 -0
- package/ios/common/BackgroundGeolocation/MAURSQLiteConfigurationDAO.h +26 -0
- package/ios/common/BackgroundGeolocation/MAURSQLiteConfigurationDAO.m +278 -0
- package/ios/common/BackgroundGeolocation/MAURSQLiteHelper.h +57 -0
- package/ios/common/BackgroundGeolocation/MAURSQLiteHelper.m +93 -0
- package/ios/common/BackgroundGeolocation/MAURSQLiteLocationDAO.h +38 -0
- package/ios/common/BackgroundGeolocation/MAURSQLiteLocationDAO.m +380 -0
- package/ios/common/BackgroundGeolocation/MAURSQLiteOpenHelper.h +32 -0
- package/ios/common/BackgroundGeolocation/MAURSQLiteOpenHelper.m +276 -0
- package/ios/common/BackgroundGeolocation/MAURUncaughtExceptionLogger.h +20 -0
- package/ios/common/BackgroundGeolocation/MAURUncaughtExceptionLogger.m +62 -0
- package/ios/common/BackgroundGeolocation/Reachability.h +102 -0
- package/ios/common/BackgroundGeolocation/Reachability.m +475 -0
- package/ios/common/BackgroundGeolocation/SOMotionDetector/CHANGELOG.md +2 -0
- package/ios/common/BackgroundGeolocation/SOMotionDetector/LICENSE +21 -0
- package/ios/common/BackgroundGeolocation/SOMotionDetector/README.md +135 -0
- package/ios/common/BackgroundGeolocation/SOMotionDetector/SOLocationManager.h +80 -0
- package/ios/common/BackgroundGeolocation/SOMotionDetector/SOLocationManager.m +147 -0
- package/ios/common/BackgroundGeolocation/SOMotionDetector/SOMotionActivity.h +30 -0
- package/ios/common/BackgroundGeolocation/SOMotionDetector/SOMotionActivity.m +42 -0
- package/ios/common/BackgroundGeolocation/SOMotionDetector/SOMotionDetector.h +99 -0
- package/ios/common/BackgroundGeolocation/SOMotionDetector/SOMotionDetector.m +327 -0
- package/ios/common/BackgroundGeolocation/SOMotionDetector/SOStepDetector.h +44 -0
- package/ios/common/BackgroundGeolocation/SOMotionDetector/SOStepDetector.m +94 -0
- package/ios/common/BackgroundGeolocation/SQLQueryBuilder/README.md +170 -0
- package/ios/common/BackgroundGeolocation/SQLQueryBuilder/ext/NSString+ZIMString.h +55 -0
- package/ios/common/BackgroundGeolocation/SQLQueryBuilder/ext/NSString+ZIMString.m +47 -0
- package/ios/common/BackgroundGeolocation/SQLQueryBuilder/sql/ZIMSqlDataManipulationCommand.h +27 -0
- package/ios/common/BackgroundGeolocation/SQLQueryBuilder/sql/ZIMSqlExpression.h +250 -0
- package/ios/common/BackgroundGeolocation/SQLQueryBuilder/sql/ZIMSqlExpression.m +259 -0
- package/ios/common/BackgroundGeolocation/SQLQueryBuilder/sql/ZIMSqlSelectStatement.h +360 -0
- package/ios/common/BackgroundGeolocation/SQLQueryBuilder/sql/ZIMSqlSelectStatement.m +427 -0
- package/ios/common/BackgroundGeolocation/SQLQueryBuilder/sql/ZIMSqlStatement.h +37 -0
- package/ios/common/BackgroundGeolocation.xcodeproj/project.pbxproj +760 -0
- package/ios/common/BackgroundGeolocationTests/Info.plist +24 -0
- package/ios/common/BackgroundGeolocationTests/MAURBackgroundLocationTest.m +185 -0
- package/ios/common/BackgroundGeolocationTests/MAURConfigTest.m +161 -0
- package/ios/common/BackgroundGeolocationTests/MAURGeolocationOpenHelperTest.m +102 -0
- package/ios/common/BackgroundGeolocationTests/MAURLocationTest.m +216 -0
- package/ios/common/BackgroundGeolocationTests/MAURLocationUploaderTest.m +55 -0
- package/ios/common/BackgroundGeolocationTests/MAURLogReaderTest.m +43 -0
- package/ios/common/BackgroundGeolocationTests/MAURSQLiteConfigurationDAOTest.m +102 -0
- package/ios/common/BackgroundGeolocationTests/MAURSQLiteHelperTest.m +41 -0
- package/ios/common/BackgroundGeolocationTests/MAURSQLiteLocationDAOTests.m +240 -0
- package/ios/common/BackgroundGeolocationTests/MAURSQLiteLocationDAOThreadTest.m +84 -0
- package/ios/common/BackgroundGeolocationTests/MAURSQLiteOpenHelperTest.m +144 -0
- package/ios/common/CONTRIBUTORS.md +10 -0
- package/ios/common/LICENSE +191 -0
- package/ios/common/README.md +7 -0
- package/ios/common/scripts/xcode-refactor.js +184 -0
- package/package.json +44 -0
- package/plugin.xml +355 -0
- package/www/BackgroundGeolocation.d.ts +910 -0
- package/www/BackgroundGeolocation.js +247 -0
- package/www/radio.js +177 -0
|
@@ -0,0 +1,760 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 46;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
412123D6207F582400D23929 /* MAURUncaughtExceptionLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 412123D5207F582400D23929 /* MAURUncaughtExceptionLogger.m */; };
|
|
11
|
+
412123D8207F5C4700D23929 /* MAURUncaughtExceptionLogger.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 412123D4207E9AD600D23929 /* MAURUncaughtExceptionLogger.h */; };
|
|
12
|
+
412428C71FB5AD2B00B21101 /* MAURBackgroundGeolocationFacade.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 41E82E761D5E351900F65575 /* MAURBackgroundGeolocationFacade.h */; };
|
|
13
|
+
412428C81FB5AD3E00B21101 /* MAURLogReader.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 41E82E7A1D5E351900F65575 /* MAURLogReader.h */; };
|
|
14
|
+
412428C91FB5ADDA00B21101 /* MAURLocation.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 41E82E721D5E351900F65575 /* MAURLocation.h */; };
|
|
15
|
+
412428CA1FB5AE4B00B21101 /* MAURProviderDelegate.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 41399A081D941BC7005D6B5D /* MAURProviderDelegate.h */; };
|
|
16
|
+
412428CC1FB5B04300B21101 /* MAURConfig.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 41E82E6A1D5E351900F65575 /* MAURConfig.h */; };
|
|
17
|
+
412428D01FB5B43B00B21101 /* MAURBackgroundTaskManager.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 41E82E641D5E351900F65575 /* MAURBackgroundTaskManager.h */; };
|
|
18
|
+
41369C212080F23D00EB449C /* NSString+ZIMString.m in Sources */ = {isa = PBXBuildFile; fileRef = 41369C172080F23D00EB449C /* NSString+ZIMString.m */; };
|
|
19
|
+
41369C222080F23D00EB449C /* ZIMSqlExpression.m in Sources */ = {isa = PBXBuildFile; fileRef = 41369C1B2080F23D00EB449C /* ZIMSqlExpression.m */; };
|
|
20
|
+
41369C232080F23D00EB449C /* ZIMSqlSelectStatement.m in Sources */ = {isa = PBXBuildFile; fileRef = 41369C1C2080F23D00EB449C /* ZIMSqlSelectStatement.m */; };
|
|
21
|
+
41369C252080F27800EB449C /* MAURLogReaderTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 41369C242080F27800EB449C /* MAURLogReaderTest.m */; };
|
|
22
|
+
41369C262080F2A100EB449C /* NSString+ZIMString.m in Sources */ = {isa = PBXBuildFile; fileRef = 41369C172080F23D00EB449C /* NSString+ZIMString.m */; };
|
|
23
|
+
4148982B1FB593B900323454 /* libBackgroundGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 418F75461D02DC3D0045FEA0 /* libBackgroundGeolocation.a */; };
|
|
24
|
+
414898381FB593E300323454 /* MAURSQLiteHelperTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 414898311FB593E200323454 /* MAURSQLiteHelperTest.m */; };
|
|
25
|
+
414898391FB593E300323454 /* MAURLocationUploaderTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 414898321FB593E300323454 /* MAURLocationUploaderTest.m */; };
|
|
26
|
+
4148983A1FB593E300323454 /* MAURSQLiteLocationDAOThreadTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 414898331FB593E300323454 /* MAURSQLiteLocationDAOThreadTest.m */; };
|
|
27
|
+
4148983B1FB593E300323454 /* MAURSQLiteLocationDAOTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 414898341FB593E300323454 /* MAURSQLiteLocationDAOTests.m */; };
|
|
28
|
+
4148983C1FB593E300323454 /* MAURGeolocationOpenHelperTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 414898351FB593E300323454 /* MAURGeolocationOpenHelperTest.m */; };
|
|
29
|
+
4148983D1FB593E300323454 /* MAURSQLiteOpenHelperTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 414898361FB593E300323454 /* MAURSQLiteOpenHelperTest.m */; };
|
|
30
|
+
4148983E1FB593E300323454 /* MAURBackgroundLocationTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 414898371FB593E300323454 /* MAURBackgroundLocationTest.m */; };
|
|
31
|
+
4152F1B82094F8EA00BFE338 /* MAURPostLocationTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 4152F1B62094F8EA00BFE338 /* MAURPostLocationTask.m */; };
|
|
32
|
+
4185A96C1FE79636008515B4 /* MAURActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 4185A96A1FE79635008515B4 /* MAURActivity.m */; };
|
|
33
|
+
418E0B6E1FD84D6200E24CB0 /* MAURLocationTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 418E0B6D1FD84D6200E24CB0 /* MAURLocationTest.m */; };
|
|
34
|
+
41973E9520AECC4A00A7BE7D /* INTURequestIDGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 41973E8C20AECC4A00A7BE7D /* INTURequestIDGenerator.m */; };
|
|
35
|
+
41973E9620AECC4A00A7BE7D /* INTULocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 41973E8D20AECC4A00A7BE7D /* INTULocationManager.m */; };
|
|
36
|
+
41973E9720AECC4A00A7BE7D /* INTULocationRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 41973E9220AECC4A00A7BE7D /* INTULocationRequest.m */; };
|
|
37
|
+
41973E9820AECC4A00A7BE7D /* INTUHeadingRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 41973E9420AECC4A00A7BE7D /* INTUHeadingRequest.m */; };
|
|
38
|
+
41B1803B1FD1D8B200951D67 /* MAURSQLiteConfigurationDAOTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 41B1803A1FD1D8B200951D67 /* MAURSQLiteConfigurationDAOTest.m */; };
|
|
39
|
+
41B1803D1FD2952400951D67 /* MAURConfigTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 41B1803C1FD2952400951D67 /* MAURConfigTest.m */; };
|
|
40
|
+
41B180451FD2E05C00951D67 /* MAURGeolocationOpenHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 41E82E711D5E351900F65575 /* MAURGeolocationOpenHelper.m */; };
|
|
41
|
+
41B180461FD2E05C00951D67 /* MAURConfigurationContract.m in Sources */ = {isa = PBXBuildFile; fileRef = 41B180351FD1B64F00951D67 /* MAURConfigurationContract.m */; };
|
|
42
|
+
41B180471FD2E05C00951D67 /* MAURLocationContract.m in Sources */ = {isa = PBXBuildFile; fileRef = 41E82E751D5E351900F65575 /* MAURLocationContract.m */; };
|
|
43
|
+
41B180481FD2E05C00951D67 /* MAURSQLiteHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 41E82E7F1D5E351900F65575 /* MAURSQLiteHelper.m */; };
|
|
44
|
+
41B180491FD2E05C00951D67 /* MAURSQLiteOpenHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 41E82E831D5E351900F65575 /* MAURSQLiteOpenHelper.m */; };
|
|
45
|
+
41B1804A1FD2E05C00951D67 /* MAURSQLiteLocationDAO.m in Sources */ = {isa = PBXBuildFile; fileRef = 41E82E811D5E351900F65575 /* MAURSQLiteLocationDAO.m */; };
|
|
46
|
+
41B1804B1FD2E05C00951D67 /* MAURSQLiteConfigurationDAO.m in Sources */ = {isa = PBXBuildFile; fileRef = 41B180381FD1BD4600951D67 /* MAURSQLiteConfigurationDAO.m */; };
|
|
47
|
+
41B1804C1FD2E05C00951D67 /* MAURAbstractLocationProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 41399A0A1D941BC7005D6B5D /* MAURAbstractLocationProvider.m */; };
|
|
48
|
+
41B1804D1FD2E05C00951D67 /* MAURActivityLocationProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 41399A051D941BC7005D6B5D /* MAURActivityLocationProvider.m */; };
|
|
49
|
+
41B1804E1FD2E05C00951D67 /* MAURDistanceFilterLocationProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 41399A071D941BC7005D6B5D /* MAURDistanceFilterLocationProvider.m */; };
|
|
50
|
+
41B1804F1FD2E05C00951D67 /* MAURRawLocationProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 4198B21D1FB08A2B00DCC96D /* MAURRawLocationProvider.m */; };
|
|
51
|
+
41B180501FD2E05C00951D67 /* MAURLogReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 41E82E7B1D5E351900F65575 /* MAURLogReader.m */; };
|
|
52
|
+
41B180511FD2E05C00951D67 /* CocoaLumberjack.m in Sources */ = {isa = PBXBuildFile; fileRef = 41E82E691D5E351900F65575 /* CocoaLumberjack.m */; };
|
|
53
|
+
41B180521FD2E05C00951D67 /* FMDBLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 41E82E6F1D5E351900F65575 /* FMDBLogger.m */; };
|
|
54
|
+
41B180531FD2E05C00951D67 /* FMDB.m in Sources */ = {isa = PBXBuildFile; fileRef = 41E82E6D1D5E351900F65575 /* FMDB.m */; };
|
|
55
|
+
41B180551FD2E05C00951D67 /* MAURBackgroundTaskManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 41E82E651D5E351900F65575 /* MAURBackgroundTaskManager.m */; };
|
|
56
|
+
41B180561FD2E05C00951D67 /* MAURBackgroundSync.m in Sources */ = {isa = PBXBuildFile; fileRef = 41E82E791D5E351900F65575 /* MAURBackgroundSync.m */; };
|
|
57
|
+
41B180571FD2E05C00951D67 /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 41E82E7D1D5E351900F65575 /* Reachability.m */; };
|
|
58
|
+
41B180581FD2E05C00951D67 /* MAURConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 41E82E6B1D5E351900F65575 /* MAURConfig.m */; };
|
|
59
|
+
41B180591FD2E05C00951D67 /* MAURLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 41E82E731D5E351900F65575 /* MAURLocation.m */; };
|
|
60
|
+
41B1805A1FD2E05C00951D67 /* MAURLocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4198B2201FB08D7700DCC96D /* MAURLocationManager.m */; };
|
|
61
|
+
41B1805B1FD2E05C00951D67 /* MAURBackgroundGeolocationFacade.m in Sources */ = {isa = PBXBuildFile; fileRef = 41E82E771D5E351900F65575 /* MAURBackgroundGeolocationFacade.m */; };
|
|
62
|
+
41BCFA421FE19B3000D4000E /* SOMotionActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 41BCFA411FE19B3000D4000E /* SOMotionActivity.m */; };
|
|
63
|
+
41BCFA5A1FE19ED300D4000E /* SOMotionDetector.m in Sources */ = {isa = PBXBuildFile; fileRef = 41BCFA511FE19ED300D4000E /* SOMotionDetector.m */; };
|
|
64
|
+
41BCFA5B1FE19ED300D4000E /* SOLocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 41BCFA521FE19ED300D4000E /* SOLocationManager.m */; };
|
|
65
|
+
41BCFA5C1FE19ED300D4000E /* SOStepDetector.m in Sources */ = {isa = PBXBuildFile; fileRef = 41BCFA591FE19ED300D4000E /* SOStepDetector.m */; };
|
|
66
|
+
/* End PBXBuildFile section */
|
|
67
|
+
|
|
68
|
+
/* Begin PBXContainerItemProxy section */
|
|
69
|
+
4148982C1FB593B900323454 /* PBXContainerItemProxy */ = {
|
|
70
|
+
isa = PBXContainerItemProxy;
|
|
71
|
+
containerPortal = 418F753E1D02DC3D0045FEA0 /* Project object */;
|
|
72
|
+
proxyType = 1;
|
|
73
|
+
remoteGlobalIDString = 418F75451D02DC3D0045FEA0;
|
|
74
|
+
remoteInfo = RCTBackgroundGeolocation;
|
|
75
|
+
};
|
|
76
|
+
/* End PBXContainerItemProxy section */
|
|
77
|
+
|
|
78
|
+
/* Begin PBXCopyFilesBuildPhase section */
|
|
79
|
+
418F75441D02DC3D0045FEA0 /* CopyFiles */ = {
|
|
80
|
+
isa = PBXCopyFilesBuildPhase;
|
|
81
|
+
buildActionMask = 2147483647;
|
|
82
|
+
dstPath = "include/$(PRODUCT_NAME)";
|
|
83
|
+
dstSubfolderSpec = 16;
|
|
84
|
+
files = (
|
|
85
|
+
412123D8207F5C4700D23929 /* MAURUncaughtExceptionLogger.h in CopyFiles */,
|
|
86
|
+
412428D01FB5B43B00B21101 /* MAURBackgroundTaskManager.h in CopyFiles */,
|
|
87
|
+
412428CC1FB5B04300B21101 /* MAURConfig.h in CopyFiles */,
|
|
88
|
+
412428CA1FB5AE4B00B21101 /* MAURProviderDelegate.h in CopyFiles */,
|
|
89
|
+
412428C91FB5ADDA00B21101 /* MAURLocation.h in CopyFiles */,
|
|
90
|
+
412428C81FB5AD3E00B21101 /* MAURLogReader.h in CopyFiles */,
|
|
91
|
+
412428C71FB5AD2B00B21101 /* MAURBackgroundGeolocationFacade.h in CopyFiles */,
|
|
92
|
+
);
|
|
93
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
94
|
+
};
|
|
95
|
+
/* End PBXCopyFilesBuildPhase section */
|
|
96
|
+
|
|
97
|
+
/* Begin PBXFileReference section */
|
|
98
|
+
412123D4207E9AD600D23929 /* MAURUncaughtExceptionLogger.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MAURUncaughtExceptionLogger.h; sourceTree = "<group>"; };
|
|
99
|
+
412123D5207F582400D23929 /* MAURUncaughtExceptionLogger.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MAURUncaughtExceptionLogger.m; sourceTree = "<group>"; };
|
|
100
|
+
412428CD1FB5B15D00B21101 /* MAURLogging.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MAURLogging.h; sourceTree = "<group>"; };
|
|
101
|
+
41369C172080F23D00EB449C /* NSString+ZIMString.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+ZIMString.m"; sourceTree = "<group>"; };
|
|
102
|
+
41369C182080F23D00EB449C /* NSString+ZIMString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+ZIMString.h"; sourceTree = "<group>"; };
|
|
103
|
+
41369C192080F23D00EB449C /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
|
|
104
|
+
41369C1B2080F23D00EB449C /* ZIMSqlExpression.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZIMSqlExpression.m; sourceTree = "<group>"; };
|
|
105
|
+
41369C1C2080F23D00EB449C /* ZIMSqlSelectStatement.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZIMSqlSelectStatement.m; sourceTree = "<group>"; };
|
|
106
|
+
41369C1D2080F23D00EB449C /* ZIMSqlDataManipulationCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZIMSqlDataManipulationCommand.h; sourceTree = "<group>"; };
|
|
107
|
+
41369C1E2080F23D00EB449C /* ZIMSqlExpression.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZIMSqlExpression.h; sourceTree = "<group>"; };
|
|
108
|
+
41369C1F2080F23D00EB449C /* ZIMSqlSelectStatement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZIMSqlSelectStatement.h; sourceTree = "<group>"; };
|
|
109
|
+
41369C202080F23D00EB449C /* ZIMSqlStatement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZIMSqlStatement.h; sourceTree = "<group>"; };
|
|
110
|
+
41369C242080F27800EB449C /* MAURLogReaderTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURLogReaderTest.m; sourceTree = "<group>"; };
|
|
111
|
+
41399A041D941BC7005D6B5D /* MAURActivityLocationProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MAURActivityLocationProvider.h; sourceTree = "<group>"; };
|
|
112
|
+
41399A051D941BC7005D6B5D /* MAURActivityLocationProvider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURActivityLocationProvider.m; sourceTree = "<group>"; };
|
|
113
|
+
41399A061D941BC7005D6B5D /* MAURDistanceFilterLocationProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MAURDistanceFilterLocationProvider.h; sourceTree = "<group>"; };
|
|
114
|
+
41399A071D941BC7005D6B5D /* MAURDistanceFilterLocationProvider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURDistanceFilterLocationProvider.m; sourceTree = "<group>"; };
|
|
115
|
+
41399A081D941BC7005D6B5D /* MAURProviderDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MAURProviderDelegate.h; sourceTree = "<group>"; };
|
|
116
|
+
41399A091D941BC7005D6B5D /* MAURAbstractLocationProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MAURAbstractLocationProvider.h; sourceTree = "<group>"; };
|
|
117
|
+
41399A0A1D941BC7005D6B5D /* MAURAbstractLocationProvider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURAbstractLocationProvider.m; sourceTree = "<group>"; };
|
|
118
|
+
414898261FB593B900323454 /* BackgroundGeolocationTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BackgroundGeolocationTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
119
|
+
4148982A1FB593B900323454 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
120
|
+
414898311FB593E200323454 /* MAURSQLiteHelperTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURSQLiteHelperTest.m; sourceTree = "<group>"; };
|
|
121
|
+
414898321FB593E300323454 /* MAURLocationUploaderTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURLocationUploaderTest.m; sourceTree = "<group>"; };
|
|
122
|
+
414898331FB593E300323454 /* MAURSQLiteLocationDAOThreadTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURSQLiteLocationDAOThreadTest.m; sourceTree = "<group>"; };
|
|
123
|
+
414898341FB593E300323454 /* MAURSQLiteLocationDAOTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURSQLiteLocationDAOTests.m; sourceTree = "<group>"; };
|
|
124
|
+
414898351FB593E300323454 /* MAURGeolocationOpenHelperTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURGeolocationOpenHelperTest.m; sourceTree = "<group>"; };
|
|
125
|
+
414898361FB593E300323454 /* MAURSQLiteOpenHelperTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURSQLiteOpenHelperTest.m; sourceTree = "<group>"; };
|
|
126
|
+
414898371FB593E300323454 /* MAURBackgroundLocationTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURBackgroundLocationTest.m; sourceTree = "<group>"; };
|
|
127
|
+
4152F1B62094F8EA00BFE338 /* MAURPostLocationTask.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURPostLocationTask.m; sourceTree = "<group>"; };
|
|
128
|
+
4152F1B72094F8EA00BFE338 /* MAURPostLocationTask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MAURPostLocationTask.h; sourceTree = "<group>"; };
|
|
129
|
+
4185A96A1FE79635008515B4 /* MAURActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURActivity.m; sourceTree = "<group>"; };
|
|
130
|
+
4185A96B1FE79635008515B4 /* MAURActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MAURActivity.h; sourceTree = "<group>"; };
|
|
131
|
+
418E0B6D1FD84D6200E24CB0 /* MAURLocationTest.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MAURLocationTest.m; sourceTree = "<group>"; };
|
|
132
|
+
418F75461D02DC3D0045FEA0 /* libBackgroundGeolocation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libBackgroundGeolocation.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
133
|
+
41973E8B20AECC4A00A7BE7D /* INTULocationRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = INTULocationRequest.h; sourceTree = "<group>"; };
|
|
134
|
+
41973E8C20AECC4A00A7BE7D /* INTURequestIDGenerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = INTURequestIDGenerator.m; sourceTree = "<group>"; };
|
|
135
|
+
41973E8D20AECC4A00A7BE7D /* INTULocationManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = INTULocationManager.m; sourceTree = "<group>"; };
|
|
136
|
+
41973E8E20AECC4A00A7BE7D /* INTUHeadingRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = INTUHeadingRequest.h; sourceTree = "<group>"; };
|
|
137
|
+
41973E8F20AECC4A00A7BE7D /* INTULocationRequestDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = INTULocationRequestDefines.h; sourceTree = "<group>"; };
|
|
138
|
+
41973E9020AECC4A00A7BE7D /* INTULocationManager+Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "INTULocationManager+Internal.h"; sourceTree = "<group>"; };
|
|
139
|
+
41973E9120AECC4A00A7BE7D /* INTURequestIDGenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = INTURequestIDGenerator.h; sourceTree = "<group>"; };
|
|
140
|
+
41973E9220AECC4A00A7BE7D /* INTULocationRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = INTULocationRequest.m; sourceTree = "<group>"; };
|
|
141
|
+
41973E9320AECC4A00A7BE7D /* INTULocationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = INTULocationManager.h; sourceTree = "<group>"; };
|
|
142
|
+
41973E9420AECC4A00A7BE7D /* INTUHeadingRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = INTUHeadingRequest.m; sourceTree = "<group>"; };
|
|
143
|
+
4198B21C1FB089C900DCC96D /* MAURRawLocationProvider.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MAURRawLocationProvider.h; sourceTree = "<group>"; };
|
|
144
|
+
4198B21D1FB08A2B00DCC96D /* MAURRawLocationProvider.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MAURRawLocationProvider.m; sourceTree = "<group>"; };
|
|
145
|
+
4198B21F1FB08D7700DCC96D /* MAURLocationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MAURLocationManager.h; sourceTree = "<group>"; };
|
|
146
|
+
4198B2201FB08D7700DCC96D /* MAURLocationManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURLocationManager.m; sourceTree = "<group>"; };
|
|
147
|
+
41B180341FD1B4EB00951D67 /* MAURConfigurationContract.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MAURConfigurationContract.h; sourceTree = "<group>"; };
|
|
148
|
+
41B180351FD1B64F00951D67 /* MAURConfigurationContract.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MAURConfigurationContract.m; sourceTree = "<group>"; };
|
|
149
|
+
41B180371FD1BD1300951D67 /* MAURSQLiteConfigurationDAO.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MAURSQLiteConfigurationDAO.h; sourceTree = "<group>"; };
|
|
150
|
+
41B180381FD1BD4600951D67 /* MAURSQLiteConfigurationDAO.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MAURSQLiteConfigurationDAO.m; sourceTree = "<group>"; };
|
|
151
|
+
41B1803A1FD1D8B200951D67 /* MAURSQLiteConfigurationDAOTest.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MAURSQLiteConfigurationDAOTest.m; sourceTree = "<group>"; };
|
|
152
|
+
41B1803C1FD2952400951D67 /* MAURConfigTest.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MAURConfigTest.m; sourceTree = "<group>"; };
|
|
153
|
+
41BCFA401FE1991800D4000E /* SOMotionActivity.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SOMotionActivity.h; sourceTree = "<group>"; };
|
|
154
|
+
41BCFA411FE19B3000D4000E /* SOMotionActivity.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SOMotionActivity.m; sourceTree = "<group>"; };
|
|
155
|
+
41BCFA511FE19ED300D4000E /* SOMotionDetector.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SOMotionDetector.m; sourceTree = "<group>"; };
|
|
156
|
+
41BCFA521FE19ED300D4000E /* SOLocationManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SOLocationManager.m; sourceTree = "<group>"; };
|
|
157
|
+
41BCFA531FE19ED300D4000E /* SOStepDetector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SOStepDetector.h; sourceTree = "<group>"; };
|
|
158
|
+
41BCFA541FE19ED300D4000E /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
|
|
159
|
+
41BCFA551FE19ED300D4000E /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
|
|
160
|
+
41BCFA561FE19ED300D4000E /* SOLocationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SOLocationManager.h; sourceTree = "<group>"; };
|
|
161
|
+
41BCFA571FE19ED300D4000E /* SOMotionDetector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SOMotionDetector.h; sourceTree = "<group>"; };
|
|
162
|
+
41BCFA581FE19ED300D4000E /* CHANGELOG.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = CHANGELOG.md; sourceTree = "<group>"; };
|
|
163
|
+
41BCFA591FE19ED300D4000E /* SOStepDetector.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SOStepDetector.m; sourceTree = "<group>"; };
|
|
164
|
+
41E82E641D5E351900F65575 /* MAURBackgroundTaskManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MAURBackgroundTaskManager.h; sourceTree = "<group>"; };
|
|
165
|
+
41E82E651D5E351900F65575 /* MAURBackgroundTaskManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURBackgroundTaskManager.m; sourceTree = "<group>"; };
|
|
166
|
+
41E82E681D5E351900F65575 /* CocoaLumberjack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CocoaLumberjack.h; sourceTree = "<group>"; };
|
|
167
|
+
41E82E691D5E351900F65575 /* CocoaLumberjack.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CocoaLumberjack.m; sourceTree = "<group>"; };
|
|
168
|
+
41E82E6A1D5E351900F65575 /* MAURConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MAURConfig.h; sourceTree = "<group>"; };
|
|
169
|
+
41E82E6B1D5E351900F65575 /* MAURConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURConfig.m; sourceTree = "<group>"; };
|
|
170
|
+
41E82E6C1D5E351900F65575 /* FMDB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMDB.h; sourceTree = "<group>"; };
|
|
171
|
+
41E82E6D1D5E351900F65575 /* FMDB.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMDB.m; sourceTree = "<group>"; };
|
|
172
|
+
41E82E6E1D5E351900F65575 /* FMDBLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMDBLogger.h; sourceTree = "<group>"; };
|
|
173
|
+
41E82E6F1D5E351900F65575 /* FMDBLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMDBLogger.m; sourceTree = "<group>"; };
|
|
174
|
+
41E82E701D5E351900F65575 /* MAURGeolocationOpenHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MAURGeolocationOpenHelper.h; sourceTree = "<group>"; };
|
|
175
|
+
41E82E711D5E351900F65575 /* MAURGeolocationOpenHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURGeolocationOpenHelper.m; sourceTree = "<group>"; };
|
|
176
|
+
41E82E721D5E351900F65575 /* MAURLocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MAURLocation.h; sourceTree = "<group>"; };
|
|
177
|
+
41E82E731D5E351900F65575 /* MAURLocation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURLocation.m; sourceTree = "<group>"; };
|
|
178
|
+
41E82E741D5E351900F65575 /* MAURLocationContract.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MAURLocationContract.h; sourceTree = "<group>"; };
|
|
179
|
+
41E82E751D5E351900F65575 /* MAURLocationContract.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURLocationContract.m; sourceTree = "<group>"; };
|
|
180
|
+
41E82E761D5E351900F65575 /* MAURBackgroundGeolocationFacade.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MAURBackgroundGeolocationFacade.h; sourceTree = "<group>"; };
|
|
181
|
+
41E82E771D5E351900F65575 /* MAURBackgroundGeolocationFacade.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURBackgroundGeolocationFacade.m; sourceTree = "<group>"; };
|
|
182
|
+
41E82E781D5E351900F65575 /* MAURBackgroundSync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MAURBackgroundSync.h; sourceTree = "<group>"; };
|
|
183
|
+
41E82E791D5E351900F65575 /* MAURBackgroundSync.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURBackgroundSync.m; sourceTree = "<group>"; };
|
|
184
|
+
41E82E7A1D5E351900F65575 /* MAURLogReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MAURLogReader.h; sourceTree = "<group>"; };
|
|
185
|
+
41E82E7B1D5E351900F65575 /* MAURLogReader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURLogReader.m; sourceTree = "<group>"; };
|
|
186
|
+
41E82E7C1D5E351900F65575 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = "<group>"; };
|
|
187
|
+
41E82E7D1D5E351900F65575 /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = "<group>"; };
|
|
188
|
+
41E82E7E1D5E351900F65575 /* MAURSQLiteHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MAURSQLiteHelper.h; sourceTree = "<group>"; };
|
|
189
|
+
41E82E7F1D5E351900F65575 /* MAURSQLiteHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURSQLiteHelper.m; sourceTree = "<group>"; };
|
|
190
|
+
41E82E801D5E351900F65575 /* MAURSQLiteLocationDAO.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MAURSQLiteLocationDAO.h; sourceTree = "<group>"; };
|
|
191
|
+
41E82E811D5E351900F65575 /* MAURSQLiteLocationDAO.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURSQLiteLocationDAO.m; sourceTree = "<group>"; };
|
|
192
|
+
41E82E821D5E351900F65575 /* MAURSQLiteOpenHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MAURSQLiteOpenHelper.h; sourceTree = "<group>"; };
|
|
193
|
+
41E82E831D5E351900F65575 /* MAURSQLiteOpenHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MAURSQLiteOpenHelper.m; sourceTree = "<group>"; };
|
|
194
|
+
/* End PBXFileReference section */
|
|
195
|
+
|
|
196
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
197
|
+
414898231FB593B900323454 /* Frameworks */ = {
|
|
198
|
+
isa = PBXFrameworksBuildPhase;
|
|
199
|
+
buildActionMask = 2147483647;
|
|
200
|
+
files = (
|
|
201
|
+
4148982B1FB593B900323454 /* libBackgroundGeolocation.a in Frameworks */,
|
|
202
|
+
);
|
|
203
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
204
|
+
};
|
|
205
|
+
418F75431D02DC3D0045FEA0 /* Frameworks */ = {
|
|
206
|
+
isa = PBXFrameworksBuildPhase;
|
|
207
|
+
buildActionMask = 2147483647;
|
|
208
|
+
files = (
|
|
209
|
+
);
|
|
210
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
211
|
+
};
|
|
212
|
+
/* End PBXFrameworksBuildPhase section */
|
|
213
|
+
|
|
214
|
+
/* Begin PBXGroup section */
|
|
215
|
+
41369C152080F23D00EB449C /* SQLQueryBuilder */ = {
|
|
216
|
+
isa = PBXGroup;
|
|
217
|
+
children = (
|
|
218
|
+
41369C162080F23D00EB449C /* ext */,
|
|
219
|
+
41369C192080F23D00EB449C /* README.md */,
|
|
220
|
+
41369C1A2080F23D00EB449C /* sql */,
|
|
221
|
+
);
|
|
222
|
+
path = SQLQueryBuilder;
|
|
223
|
+
sourceTree = "<group>";
|
|
224
|
+
};
|
|
225
|
+
41369C162080F23D00EB449C /* ext */ = {
|
|
226
|
+
isa = PBXGroup;
|
|
227
|
+
children = (
|
|
228
|
+
41369C172080F23D00EB449C /* NSString+ZIMString.m */,
|
|
229
|
+
41369C182080F23D00EB449C /* NSString+ZIMString.h */,
|
|
230
|
+
);
|
|
231
|
+
path = ext;
|
|
232
|
+
sourceTree = "<group>";
|
|
233
|
+
};
|
|
234
|
+
41369C1A2080F23D00EB449C /* sql */ = {
|
|
235
|
+
isa = PBXGroup;
|
|
236
|
+
children = (
|
|
237
|
+
41369C1B2080F23D00EB449C /* ZIMSqlExpression.m */,
|
|
238
|
+
41369C1C2080F23D00EB449C /* ZIMSqlSelectStatement.m */,
|
|
239
|
+
41369C1D2080F23D00EB449C /* ZIMSqlDataManipulationCommand.h */,
|
|
240
|
+
41369C1E2080F23D00EB449C /* ZIMSqlExpression.h */,
|
|
241
|
+
41369C1F2080F23D00EB449C /* ZIMSqlSelectStatement.h */,
|
|
242
|
+
41369C202080F23D00EB449C /* ZIMSqlStatement.h */,
|
|
243
|
+
);
|
|
244
|
+
path = sql;
|
|
245
|
+
sourceTree = "<group>";
|
|
246
|
+
};
|
|
247
|
+
414898271FB593B900323454 /* BackgroundGeolocationTests */ = {
|
|
248
|
+
isa = PBXGroup;
|
|
249
|
+
children = (
|
|
250
|
+
41369C242080F27800EB449C /* MAURLogReaderTest.m */,
|
|
251
|
+
41B1803C1FD2952400951D67 /* MAURConfigTest.m */,
|
|
252
|
+
418E0B6D1FD84D6200E24CB0 /* MAURLocationTest.m */,
|
|
253
|
+
414898371FB593E300323454 /* MAURBackgroundLocationTest.m */,
|
|
254
|
+
414898351FB593E300323454 /* MAURGeolocationOpenHelperTest.m */,
|
|
255
|
+
414898321FB593E300323454 /* MAURLocationUploaderTest.m */,
|
|
256
|
+
414898311FB593E200323454 /* MAURSQLiteHelperTest.m */,
|
|
257
|
+
414898341FB593E300323454 /* MAURSQLiteLocationDAOTests.m */,
|
|
258
|
+
414898331FB593E300323454 /* MAURSQLiteLocationDAOThreadTest.m */,
|
|
259
|
+
41B1803A1FD1D8B200951D67 /* MAURSQLiteConfigurationDAOTest.m */,
|
|
260
|
+
414898361FB593E300323454 /* MAURSQLiteOpenHelperTest.m */,
|
|
261
|
+
4148982A1FB593B900323454 /* Info.plist */,
|
|
262
|
+
);
|
|
263
|
+
path = BackgroundGeolocationTests;
|
|
264
|
+
sourceTree = "<group>";
|
|
265
|
+
};
|
|
266
|
+
418F753D1D02DC3D0045FEA0 = {
|
|
267
|
+
isa = PBXGroup;
|
|
268
|
+
children = (
|
|
269
|
+
418F75481D02DC3D0045FEA0 /* BackgroundGeolocation */,
|
|
270
|
+
414898271FB593B900323454 /* BackgroundGeolocationTests */,
|
|
271
|
+
418F75471D02DC3D0045FEA0 /* Products */,
|
|
272
|
+
);
|
|
273
|
+
sourceTree = "<group>";
|
|
274
|
+
};
|
|
275
|
+
418F75471D02DC3D0045FEA0 /* Products */ = {
|
|
276
|
+
isa = PBXGroup;
|
|
277
|
+
children = (
|
|
278
|
+
418F75461D02DC3D0045FEA0 /* libBackgroundGeolocation.a */,
|
|
279
|
+
414898261FB593B900323454 /* BackgroundGeolocationTests.xctest */,
|
|
280
|
+
);
|
|
281
|
+
name = Products;
|
|
282
|
+
sourceTree = "<group>";
|
|
283
|
+
};
|
|
284
|
+
418F75481D02DC3D0045FEA0 /* BackgroundGeolocation */ = {
|
|
285
|
+
isa = PBXGroup;
|
|
286
|
+
children = (
|
|
287
|
+
41973E8A20AECC4A00A7BE7D /* INTULocationManager */,
|
|
288
|
+
41369C152080F23D00EB449C /* SQLQueryBuilder */,
|
|
289
|
+
41BCFA501FE19ED300D4000E /* SOMotionDetector */,
|
|
290
|
+
41FE81251FB114F100E4FC65 /* SQLite */,
|
|
291
|
+
41FE81241FB114C900E4FC65 /* Providers */,
|
|
292
|
+
4198B26F1FB0FA0C00DCC96D /* Logger */,
|
|
293
|
+
4198B26E1FB0F9E400DCC96D /* FMDB */,
|
|
294
|
+
41E82E641D5E351900F65575 /* MAURBackgroundTaskManager.h */,
|
|
295
|
+
41E82E651D5E351900F65575 /* MAURBackgroundTaskManager.m */,
|
|
296
|
+
41E82E781D5E351900F65575 /* MAURBackgroundSync.h */,
|
|
297
|
+
41E82E791D5E351900F65575 /* MAURBackgroundSync.m */,
|
|
298
|
+
41E82E7C1D5E351900F65575 /* Reachability.h */,
|
|
299
|
+
41E82E7D1D5E351900F65575 /* Reachability.m */,
|
|
300
|
+
41E82E6A1D5E351900F65575 /* MAURConfig.h */,
|
|
301
|
+
41E82E6B1D5E351900F65575 /* MAURConfig.m */,
|
|
302
|
+
4185A96B1FE79635008515B4 /* MAURActivity.h */,
|
|
303
|
+
4185A96A1FE79635008515B4 /* MAURActivity.m */,
|
|
304
|
+
41E82E721D5E351900F65575 /* MAURLocation.h */,
|
|
305
|
+
41E82E731D5E351900F65575 /* MAURLocation.m */,
|
|
306
|
+
4198B21F1FB08D7700DCC96D /* MAURLocationManager.h */,
|
|
307
|
+
4198B2201FB08D7700DCC96D /* MAURLocationManager.m */,
|
|
308
|
+
4152F1B72094F8EA00BFE338 /* MAURPostLocationTask.h */,
|
|
309
|
+
4152F1B62094F8EA00BFE338 /* MAURPostLocationTask.m */,
|
|
310
|
+
41E82E761D5E351900F65575 /* MAURBackgroundGeolocationFacade.h */,
|
|
311
|
+
41E82E771D5E351900F65575 /* MAURBackgroundGeolocationFacade.m */,
|
|
312
|
+
);
|
|
313
|
+
path = BackgroundGeolocation;
|
|
314
|
+
sourceTree = "<group>";
|
|
315
|
+
};
|
|
316
|
+
41973E8A20AECC4A00A7BE7D /* INTULocationManager */ = {
|
|
317
|
+
isa = PBXGroup;
|
|
318
|
+
children = (
|
|
319
|
+
41973E8B20AECC4A00A7BE7D /* INTULocationRequest.h */,
|
|
320
|
+
41973E8C20AECC4A00A7BE7D /* INTURequestIDGenerator.m */,
|
|
321
|
+
41973E8D20AECC4A00A7BE7D /* INTULocationManager.m */,
|
|
322
|
+
41973E8E20AECC4A00A7BE7D /* INTUHeadingRequest.h */,
|
|
323
|
+
41973E8F20AECC4A00A7BE7D /* INTULocationRequestDefines.h */,
|
|
324
|
+
41973E9020AECC4A00A7BE7D /* INTULocationManager+Internal.h */,
|
|
325
|
+
41973E9120AECC4A00A7BE7D /* INTURequestIDGenerator.h */,
|
|
326
|
+
41973E9220AECC4A00A7BE7D /* INTULocationRequest.m */,
|
|
327
|
+
41973E9320AECC4A00A7BE7D /* INTULocationManager.h */,
|
|
328
|
+
41973E9420AECC4A00A7BE7D /* INTUHeadingRequest.m */,
|
|
329
|
+
);
|
|
330
|
+
path = INTULocationManager;
|
|
331
|
+
sourceTree = "<group>";
|
|
332
|
+
};
|
|
333
|
+
4198B26E1FB0F9E400DCC96D /* FMDB */ = {
|
|
334
|
+
isa = PBXGroup;
|
|
335
|
+
children = (
|
|
336
|
+
41E82E6C1D5E351900F65575 /* FMDB.h */,
|
|
337
|
+
41E82E6D1D5E351900F65575 /* FMDB.m */,
|
|
338
|
+
);
|
|
339
|
+
name = FMDB;
|
|
340
|
+
sourceTree = "<group>";
|
|
341
|
+
};
|
|
342
|
+
4198B26F1FB0FA0C00DCC96D /* Logger */ = {
|
|
343
|
+
isa = PBXGroup;
|
|
344
|
+
children = (
|
|
345
|
+
412428CD1FB5B15D00B21101 /* MAURLogging.h */,
|
|
346
|
+
41E82E7A1D5E351900F65575 /* MAURLogReader.h */,
|
|
347
|
+
41E82E7B1D5E351900F65575 /* MAURLogReader.m */,
|
|
348
|
+
41E82E681D5E351900F65575 /* CocoaLumberjack.h */,
|
|
349
|
+
41E82E691D5E351900F65575 /* CocoaLumberjack.m */,
|
|
350
|
+
41E82E6E1D5E351900F65575 /* FMDBLogger.h */,
|
|
351
|
+
41E82E6F1D5E351900F65575 /* FMDBLogger.m */,
|
|
352
|
+
412123D4207E9AD600D23929 /* MAURUncaughtExceptionLogger.h */,
|
|
353
|
+
412123D5207F582400D23929 /* MAURUncaughtExceptionLogger.m */,
|
|
354
|
+
);
|
|
355
|
+
name = Logger;
|
|
356
|
+
sourceTree = "<group>";
|
|
357
|
+
};
|
|
358
|
+
41BCFA501FE19ED300D4000E /* SOMotionDetector */ = {
|
|
359
|
+
isa = PBXGroup;
|
|
360
|
+
children = (
|
|
361
|
+
41BCFA401FE1991800D4000E /* SOMotionActivity.h */,
|
|
362
|
+
41BCFA411FE19B3000D4000E /* SOMotionActivity.m */,
|
|
363
|
+
41BCFA571FE19ED300D4000E /* SOMotionDetector.h */,
|
|
364
|
+
41BCFA511FE19ED300D4000E /* SOMotionDetector.m */,
|
|
365
|
+
41BCFA561FE19ED300D4000E /* SOLocationManager.h */,
|
|
366
|
+
41BCFA521FE19ED300D4000E /* SOLocationManager.m */,
|
|
367
|
+
41BCFA531FE19ED300D4000E /* SOStepDetector.h */,
|
|
368
|
+
41BCFA591FE19ED300D4000E /* SOStepDetector.m */,
|
|
369
|
+
41BCFA541FE19ED300D4000E /* LICENSE */,
|
|
370
|
+
41BCFA551FE19ED300D4000E /* README.md */,
|
|
371
|
+
41BCFA581FE19ED300D4000E /* CHANGELOG.md */,
|
|
372
|
+
);
|
|
373
|
+
path = SOMotionDetector;
|
|
374
|
+
sourceTree = "<group>";
|
|
375
|
+
};
|
|
376
|
+
41FE81241FB114C900E4FC65 /* Providers */ = {
|
|
377
|
+
isa = PBXGroup;
|
|
378
|
+
children = (
|
|
379
|
+
41399A081D941BC7005D6B5D /* MAURProviderDelegate.h */,
|
|
380
|
+
41399A091D941BC7005D6B5D /* MAURAbstractLocationProvider.h */,
|
|
381
|
+
41399A0A1D941BC7005D6B5D /* MAURAbstractLocationProvider.m */,
|
|
382
|
+
41399A041D941BC7005D6B5D /* MAURActivityLocationProvider.h */,
|
|
383
|
+
41399A051D941BC7005D6B5D /* MAURActivityLocationProvider.m */,
|
|
384
|
+
41399A061D941BC7005D6B5D /* MAURDistanceFilterLocationProvider.h */,
|
|
385
|
+
41399A071D941BC7005D6B5D /* MAURDistanceFilterLocationProvider.m */,
|
|
386
|
+
4198B21C1FB089C900DCC96D /* MAURRawLocationProvider.h */,
|
|
387
|
+
4198B21D1FB08A2B00DCC96D /* MAURRawLocationProvider.m */,
|
|
388
|
+
);
|
|
389
|
+
name = Providers;
|
|
390
|
+
sourceTree = "<group>";
|
|
391
|
+
};
|
|
392
|
+
41FE81251FB114F100E4FC65 /* SQLite */ = {
|
|
393
|
+
isa = PBXGroup;
|
|
394
|
+
children = (
|
|
395
|
+
41E82E701D5E351900F65575 /* MAURGeolocationOpenHelper.h */,
|
|
396
|
+
41E82E711D5E351900F65575 /* MAURGeolocationOpenHelper.m */,
|
|
397
|
+
41B180341FD1B4EB00951D67 /* MAURConfigurationContract.h */,
|
|
398
|
+
41B180351FD1B64F00951D67 /* MAURConfigurationContract.m */,
|
|
399
|
+
41E82E741D5E351900F65575 /* MAURLocationContract.h */,
|
|
400
|
+
41E82E751D5E351900F65575 /* MAURLocationContract.m */,
|
|
401
|
+
41E82E7E1D5E351900F65575 /* MAURSQLiteHelper.h */,
|
|
402
|
+
41E82E7F1D5E351900F65575 /* MAURSQLiteHelper.m */,
|
|
403
|
+
41E82E821D5E351900F65575 /* MAURSQLiteOpenHelper.h */,
|
|
404
|
+
41E82E831D5E351900F65575 /* MAURSQLiteOpenHelper.m */,
|
|
405
|
+
41E82E801D5E351900F65575 /* MAURSQLiteLocationDAO.h */,
|
|
406
|
+
41E82E811D5E351900F65575 /* MAURSQLiteLocationDAO.m */,
|
|
407
|
+
41B180371FD1BD1300951D67 /* MAURSQLiteConfigurationDAO.h */,
|
|
408
|
+
41B180381FD1BD4600951D67 /* MAURSQLiteConfigurationDAO.m */,
|
|
409
|
+
);
|
|
410
|
+
name = SQLite;
|
|
411
|
+
sourceTree = "<group>";
|
|
412
|
+
};
|
|
413
|
+
/* End PBXGroup section */
|
|
414
|
+
|
|
415
|
+
/* Begin PBXNativeTarget section */
|
|
416
|
+
414898251FB593B900323454 /* BackgroundGeolocationTests */ = {
|
|
417
|
+
isa = PBXNativeTarget;
|
|
418
|
+
buildConfigurationList = 414898301FB593B900323454 /* Build configuration list for PBXNativeTarget "BackgroundGeolocationTests" */;
|
|
419
|
+
buildPhases = (
|
|
420
|
+
414898221FB593B900323454 /* Sources */,
|
|
421
|
+
414898231FB593B900323454 /* Frameworks */,
|
|
422
|
+
414898241FB593B900323454 /* Resources */,
|
|
423
|
+
);
|
|
424
|
+
buildRules = (
|
|
425
|
+
);
|
|
426
|
+
dependencies = (
|
|
427
|
+
4148982D1FB593B900323454 /* PBXTargetDependency */,
|
|
428
|
+
);
|
|
429
|
+
name = BackgroundGeolocationTests;
|
|
430
|
+
productName = RCTBackgroundGeolocationTests;
|
|
431
|
+
productReference = 414898261FB593B900323454 /* BackgroundGeolocationTests.xctest */;
|
|
432
|
+
productType = "com.apple.product-type.bundle.unit-test";
|
|
433
|
+
};
|
|
434
|
+
418F75451D02DC3D0045FEA0 /* BackgroundGeolocation */ = {
|
|
435
|
+
isa = PBXNativeTarget;
|
|
436
|
+
buildConfigurationList = 418F754F1D02DC3D0045FEA0 /* Build configuration list for PBXNativeTarget "BackgroundGeolocation" */;
|
|
437
|
+
buildPhases = (
|
|
438
|
+
418F75421D02DC3D0045FEA0 /* Sources */,
|
|
439
|
+
418F75431D02DC3D0045FEA0 /* Frameworks */,
|
|
440
|
+
418F75441D02DC3D0045FEA0 /* CopyFiles */,
|
|
441
|
+
);
|
|
442
|
+
buildRules = (
|
|
443
|
+
);
|
|
444
|
+
dependencies = (
|
|
445
|
+
);
|
|
446
|
+
name = BackgroundGeolocation;
|
|
447
|
+
productName = RCTBackgroundGeolocation;
|
|
448
|
+
productReference = 418F75461D02DC3D0045FEA0 /* libBackgroundGeolocation.a */;
|
|
449
|
+
productType = "com.apple.product-type.library.static";
|
|
450
|
+
};
|
|
451
|
+
/* End PBXNativeTarget section */
|
|
452
|
+
|
|
453
|
+
/* Begin PBXProject section */
|
|
454
|
+
418F753E1D02DC3D0045FEA0 /* Project object */ = {
|
|
455
|
+
isa = PBXProject;
|
|
456
|
+
attributes = {
|
|
457
|
+
LastUpgradeCheck = 0730;
|
|
458
|
+
ORGANIZATIONNAME = plugin;
|
|
459
|
+
TargetAttributes = {
|
|
460
|
+
414898251FB593B900323454 = {
|
|
461
|
+
CreatedOnToolsVersion = 9.0;
|
|
462
|
+
ProvisioningStyle = Automatic;
|
|
463
|
+
};
|
|
464
|
+
418F75451D02DC3D0045FEA0 = {
|
|
465
|
+
CreatedOnToolsVersion = 7.3.1;
|
|
466
|
+
};
|
|
467
|
+
};
|
|
468
|
+
};
|
|
469
|
+
buildConfigurationList = 418F75411D02DC3D0045FEA0 /* Build configuration list for PBXProject "BackgroundGeolocation" */;
|
|
470
|
+
compatibilityVersion = "Xcode 3.2";
|
|
471
|
+
developmentRegion = English;
|
|
472
|
+
hasScannedForEncodings = 0;
|
|
473
|
+
knownRegions = (
|
|
474
|
+
en,
|
|
475
|
+
);
|
|
476
|
+
mainGroup = 418F753D1D02DC3D0045FEA0;
|
|
477
|
+
productRefGroup = 418F75471D02DC3D0045FEA0 /* Products */;
|
|
478
|
+
projectDirPath = "";
|
|
479
|
+
projectRoot = "";
|
|
480
|
+
targets = (
|
|
481
|
+
418F75451D02DC3D0045FEA0 /* BackgroundGeolocation */,
|
|
482
|
+
414898251FB593B900323454 /* BackgroundGeolocationTests */,
|
|
483
|
+
);
|
|
484
|
+
};
|
|
485
|
+
/* End PBXProject section */
|
|
486
|
+
|
|
487
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
488
|
+
414898241FB593B900323454 /* Resources */ = {
|
|
489
|
+
isa = PBXResourcesBuildPhase;
|
|
490
|
+
buildActionMask = 2147483647;
|
|
491
|
+
files = (
|
|
492
|
+
);
|
|
493
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
494
|
+
};
|
|
495
|
+
/* End PBXResourcesBuildPhase section */
|
|
496
|
+
|
|
497
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
498
|
+
414898221FB593B900323454 /* Sources */ = {
|
|
499
|
+
isa = PBXSourcesBuildPhase;
|
|
500
|
+
buildActionMask = 2147483647;
|
|
501
|
+
files = (
|
|
502
|
+
41369C262080F2A100EB449C /* NSString+ZIMString.m in Sources */,
|
|
503
|
+
41369C252080F27800EB449C /* MAURLogReaderTest.m in Sources */,
|
|
504
|
+
4148983E1FB593E300323454 /* MAURBackgroundLocationTest.m in Sources */,
|
|
505
|
+
41B1803B1FD1D8B200951D67 /* MAURSQLiteConfigurationDAOTest.m in Sources */,
|
|
506
|
+
418E0B6E1FD84D6200E24CB0 /* MAURLocationTest.m in Sources */,
|
|
507
|
+
4148983C1FB593E300323454 /* MAURGeolocationOpenHelperTest.m in Sources */,
|
|
508
|
+
414898391FB593E300323454 /* MAURLocationUploaderTest.m in Sources */,
|
|
509
|
+
41B1803D1FD2952400951D67 /* MAURConfigTest.m in Sources */,
|
|
510
|
+
414898381FB593E300323454 /* MAURSQLiteHelperTest.m in Sources */,
|
|
511
|
+
4148983B1FB593E300323454 /* MAURSQLiteLocationDAOTests.m in Sources */,
|
|
512
|
+
4148983D1FB593E300323454 /* MAURSQLiteOpenHelperTest.m in Sources */,
|
|
513
|
+
4148983A1FB593E300323454 /* MAURSQLiteLocationDAOThreadTest.m in Sources */,
|
|
514
|
+
);
|
|
515
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
516
|
+
};
|
|
517
|
+
418F75421D02DC3D0045FEA0 /* Sources */ = {
|
|
518
|
+
isa = PBXSourcesBuildPhase;
|
|
519
|
+
buildActionMask = 2147483647;
|
|
520
|
+
files = (
|
|
521
|
+
41B180451FD2E05C00951D67 /* MAURGeolocationOpenHelper.m in Sources */,
|
|
522
|
+
41B180461FD2E05C00951D67 /* MAURConfigurationContract.m in Sources */,
|
|
523
|
+
41B180471FD2E05C00951D67 /* MAURLocationContract.m in Sources */,
|
|
524
|
+
41973E9520AECC4A00A7BE7D /* INTURequestIDGenerator.m in Sources */,
|
|
525
|
+
41BCFA5C1FE19ED300D4000E /* SOStepDetector.m in Sources */,
|
|
526
|
+
41B180481FD2E05C00951D67 /* MAURSQLiteHelper.m in Sources */,
|
|
527
|
+
41B180491FD2E05C00951D67 /* MAURSQLiteOpenHelper.m in Sources */,
|
|
528
|
+
41B1804A1FD2E05C00951D67 /* MAURSQLiteLocationDAO.m in Sources */,
|
|
529
|
+
41B1804B1FD2E05C00951D67 /* MAURSQLiteConfigurationDAO.m in Sources */,
|
|
530
|
+
41B1804C1FD2E05C00951D67 /* MAURAbstractLocationProvider.m in Sources */,
|
|
531
|
+
41B1804D1FD2E05C00951D67 /* MAURActivityLocationProvider.m in Sources */,
|
|
532
|
+
412123D6207F582400D23929 /* MAURUncaughtExceptionLogger.m in Sources */,
|
|
533
|
+
41369C232080F23D00EB449C /* ZIMSqlSelectStatement.m in Sources */,
|
|
534
|
+
41B1804E1FD2E05C00951D67 /* MAURDistanceFilterLocationProvider.m in Sources */,
|
|
535
|
+
41B1804F1FD2E05C00951D67 /* MAURRawLocationProvider.m in Sources */,
|
|
536
|
+
41369C222080F23D00EB449C /* ZIMSqlExpression.m in Sources */,
|
|
537
|
+
41B180501FD2E05C00951D67 /* MAURLogReader.m in Sources */,
|
|
538
|
+
41B180511FD2E05C00951D67 /* CocoaLumberjack.m in Sources */,
|
|
539
|
+
41973E9720AECC4A00A7BE7D /* INTULocationRequest.m in Sources */,
|
|
540
|
+
41973E9620AECC4A00A7BE7D /* INTULocationManager.m in Sources */,
|
|
541
|
+
41B180521FD2E05C00951D67 /* FMDBLogger.m in Sources */,
|
|
542
|
+
41BCFA421FE19B3000D4000E /* SOMotionActivity.m in Sources */,
|
|
543
|
+
41369C212080F23D00EB449C /* NSString+ZIMString.m in Sources */,
|
|
544
|
+
41B180531FD2E05C00951D67 /* FMDB.m in Sources */,
|
|
545
|
+
41973E9820AECC4A00A7BE7D /* INTUHeadingRequest.m in Sources */,
|
|
546
|
+
41B180551FD2E05C00951D67 /* MAURBackgroundTaskManager.m in Sources */,
|
|
547
|
+
41B180561FD2E05C00951D67 /* MAURBackgroundSync.m in Sources */,
|
|
548
|
+
4185A96C1FE79636008515B4 /* MAURActivity.m in Sources */,
|
|
549
|
+
4152F1B82094F8EA00BFE338 /* MAURPostLocationTask.m in Sources */,
|
|
550
|
+
41B180571FD2E05C00951D67 /* Reachability.m in Sources */,
|
|
551
|
+
41B180581FD2E05C00951D67 /* MAURConfig.m in Sources */,
|
|
552
|
+
41B180591FD2E05C00951D67 /* MAURLocation.m in Sources */,
|
|
553
|
+
41B1805A1FD2E05C00951D67 /* MAURLocationManager.m in Sources */,
|
|
554
|
+
41B1805B1FD2E05C00951D67 /* MAURBackgroundGeolocationFacade.m in Sources */,
|
|
555
|
+
41BCFA5A1FE19ED300D4000E /* SOMotionDetector.m in Sources */,
|
|
556
|
+
41BCFA5B1FE19ED300D4000E /* SOLocationManager.m in Sources */,
|
|
557
|
+
);
|
|
558
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
559
|
+
};
|
|
560
|
+
/* End PBXSourcesBuildPhase section */
|
|
561
|
+
|
|
562
|
+
/* Begin PBXTargetDependency section */
|
|
563
|
+
4148982D1FB593B900323454 /* PBXTargetDependency */ = {
|
|
564
|
+
isa = PBXTargetDependency;
|
|
565
|
+
target = 418F75451D02DC3D0045FEA0 /* BackgroundGeolocation */;
|
|
566
|
+
targetProxy = 4148982C1FB593B900323454 /* PBXContainerItemProxy */;
|
|
567
|
+
};
|
|
568
|
+
/* End PBXTargetDependency section */
|
|
569
|
+
|
|
570
|
+
/* Begin XCBuildConfiguration section */
|
|
571
|
+
4148982E1FB593B900323454 /* Debug */ = {
|
|
572
|
+
isa = XCBuildConfiguration;
|
|
573
|
+
buildSettings = {
|
|
574
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
575
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
576
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
577
|
+
CLANG_WARN_COMMA = YES;
|
|
578
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
579
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
580
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
581
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
582
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
583
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
584
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
585
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
586
|
+
CODE_SIGN_IDENTITY = "iPhone Developer";
|
|
587
|
+
CODE_SIGN_STYLE = Automatic;
|
|
588
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
589
|
+
INFOPLIST_FILE = BackgroundGeolocationTests/Info.plist;
|
|
590
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
|
591
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
592
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.marianhello.RCTBackgroundGeolocationTests;
|
|
593
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
594
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
595
|
+
};
|
|
596
|
+
name = Debug;
|
|
597
|
+
};
|
|
598
|
+
4148982F1FB593B900323454 /* Release */ = {
|
|
599
|
+
isa = XCBuildConfiguration;
|
|
600
|
+
buildSettings = {
|
|
601
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
602
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
603
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
604
|
+
CLANG_WARN_COMMA = YES;
|
|
605
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
606
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
607
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
608
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
609
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
610
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
611
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
612
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
613
|
+
CODE_SIGN_IDENTITY = "iPhone Developer";
|
|
614
|
+
CODE_SIGN_STYLE = Automatic;
|
|
615
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
616
|
+
INFOPLIST_FILE = BackgroundGeolocationTests/Info.plist;
|
|
617
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
|
618
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
619
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.marianhello.RCTBackgroundGeolocationTests;
|
|
620
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
621
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
622
|
+
};
|
|
623
|
+
name = Release;
|
|
624
|
+
};
|
|
625
|
+
418F754D1D02DC3D0045FEA0 /* Debug */ = {
|
|
626
|
+
isa = XCBuildConfiguration;
|
|
627
|
+
buildSettings = {
|
|
628
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
629
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
630
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
631
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
632
|
+
CLANG_ENABLE_MODULES = YES;
|
|
633
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
634
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
635
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
636
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
637
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
638
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
639
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
640
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
641
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
642
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
643
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
644
|
+
COPY_PHASE_STRIP = NO;
|
|
645
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
646
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
647
|
+
ENABLE_TESTABILITY = YES;
|
|
648
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
649
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
650
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
651
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
652
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
653
|
+
"DEBUG=1",
|
|
654
|
+
"$(inherited)",
|
|
655
|
+
);
|
|
656
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
657
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
658
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
659
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
660
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
661
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
662
|
+
IPHONEOS_DEPLOYMENT_TARGET = 9.3;
|
|
663
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
664
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
665
|
+
SDKROOT = iphoneos;
|
|
666
|
+
};
|
|
667
|
+
name = Debug;
|
|
668
|
+
};
|
|
669
|
+
418F754E1D02DC3D0045FEA0 /* Release */ = {
|
|
670
|
+
isa = XCBuildConfiguration;
|
|
671
|
+
buildSettings = {
|
|
672
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
673
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
674
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
675
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
676
|
+
CLANG_ENABLE_MODULES = YES;
|
|
677
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
678
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
679
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
680
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
681
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
682
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
683
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
684
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
685
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
686
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
687
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
688
|
+
COPY_PHASE_STRIP = NO;
|
|
689
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
690
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
691
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
692
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
693
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
694
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
695
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
696
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
697
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
698
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
699
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
700
|
+
IPHONEOS_DEPLOYMENT_TARGET = 9.3;
|
|
701
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
702
|
+
SDKROOT = iphoneos;
|
|
703
|
+
VALIDATE_PRODUCT = YES;
|
|
704
|
+
};
|
|
705
|
+
name = Release;
|
|
706
|
+
};
|
|
707
|
+
418F75501D02DC3D0045FEA0 /* Debug */ = {
|
|
708
|
+
isa = XCBuildConfiguration;
|
|
709
|
+
buildSettings = {
|
|
710
|
+
HEADER_SEARCH_PATHS = "$(inherited)";
|
|
711
|
+
OTHER_LDFLAGS = "-ObjC";
|
|
712
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
713
|
+
SKIP_INSTALL = YES;
|
|
714
|
+
};
|
|
715
|
+
name = Debug;
|
|
716
|
+
};
|
|
717
|
+
418F75511D02DC3D0045FEA0 /* Release */ = {
|
|
718
|
+
isa = XCBuildConfiguration;
|
|
719
|
+
buildSettings = {
|
|
720
|
+
HEADER_SEARCH_PATHS = "$(inherited)";
|
|
721
|
+
OTHER_LDFLAGS = "-ObjC";
|
|
722
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
723
|
+
SKIP_INSTALL = YES;
|
|
724
|
+
};
|
|
725
|
+
name = Release;
|
|
726
|
+
};
|
|
727
|
+
/* End XCBuildConfiguration section */
|
|
728
|
+
|
|
729
|
+
/* Begin XCConfigurationList section */
|
|
730
|
+
414898301FB593B900323454 /* Build configuration list for PBXNativeTarget "BackgroundGeolocationTests" */ = {
|
|
731
|
+
isa = XCConfigurationList;
|
|
732
|
+
buildConfigurations = (
|
|
733
|
+
4148982E1FB593B900323454 /* Debug */,
|
|
734
|
+
4148982F1FB593B900323454 /* Release */,
|
|
735
|
+
);
|
|
736
|
+
defaultConfigurationIsVisible = 0;
|
|
737
|
+
defaultConfigurationName = Release;
|
|
738
|
+
};
|
|
739
|
+
418F75411D02DC3D0045FEA0 /* Build configuration list for PBXProject "BackgroundGeolocation" */ = {
|
|
740
|
+
isa = XCConfigurationList;
|
|
741
|
+
buildConfigurations = (
|
|
742
|
+
418F754D1D02DC3D0045FEA0 /* Debug */,
|
|
743
|
+
418F754E1D02DC3D0045FEA0 /* Release */,
|
|
744
|
+
);
|
|
745
|
+
defaultConfigurationIsVisible = 0;
|
|
746
|
+
defaultConfigurationName = Release;
|
|
747
|
+
};
|
|
748
|
+
418F754F1D02DC3D0045FEA0 /* Build configuration list for PBXNativeTarget "BackgroundGeolocation" */ = {
|
|
749
|
+
isa = XCConfigurationList;
|
|
750
|
+
buildConfigurations = (
|
|
751
|
+
418F75501D02DC3D0045FEA0 /* Debug */,
|
|
752
|
+
418F75511D02DC3D0045FEA0 /* Release */,
|
|
753
|
+
);
|
|
754
|
+
defaultConfigurationIsVisible = 0;
|
|
755
|
+
defaultConfigurationName = Release;
|
|
756
|
+
};
|
|
757
|
+
/* End XCConfigurationList section */
|
|
758
|
+
};
|
|
759
|
+
rootObject = 418F753E1D02DC3D0045FEA0 /* Project object */;
|
|
760
|
+
}
|