react-native-background-geolocation 4.16.5 → 4.16.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/.idea/compiler.xml +22 -0
- package/android/.idea/copyright/profiles_settings.xml +3 -0
- package/android/.idea/encodings.xml +6 -0
- package/android/.idea/gradle.xml +12 -0
- package/android/.idea/misc.xml +4 -0
- package/android/.idea/modules.xml +8 -0
- package/android/.idea/runConfigurations.xml +12 -0
- package/expo/plugin/build/androidPlugin.js +11 -2
- package/expo/plugin/build/androidPlugin.js.map +1 -1
- package/ios/RNBackgroundGeolocation.xcodeproj/project.xcworkspace/xcshareddata/RNBackgroundGeolocation.xccheckout +41 -0
- package/ios/RNBackgroundGeolocation.xcodeproj/project.xcworkspace/xcuserdata/chris.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/RNBackgroundGeolocation.xcodeproj/xcuserdata/chris.xcuserdatad/xcschemes/Build.xcscheme +80 -0
- package/ios/RNBackgroundGeolocation.xcodeproj/xcuserdata/chris.xcuserdatad/xcschemes/RNBackgroundGeolocation.xcscheme +113 -0
- package/ios/RNBackgroundGeolocation.xcodeproj/xcuserdata/chris.xcuserdatad/xcschemes/xcschememanagement.plist +37 -0
- package/package.json +1 -1
- package/CHANGELOG.md +0 -1454
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="CompilerConfiguration">
|
|
4
|
+
<resourceExtensions />
|
|
5
|
+
<wildcardResourcePatterns>
|
|
6
|
+
<entry name="!?*.java" />
|
|
7
|
+
<entry name="!?*.form" />
|
|
8
|
+
<entry name="!?*.class" />
|
|
9
|
+
<entry name="!?*.groovy" />
|
|
10
|
+
<entry name="!?*.scala" />
|
|
11
|
+
<entry name="!?*.flex" />
|
|
12
|
+
<entry name="!?*.kt" />
|
|
13
|
+
<entry name="!?*.clj" />
|
|
14
|
+
<entry name="!?*.aj" />
|
|
15
|
+
</wildcardResourcePatterns>
|
|
16
|
+
<annotationProcessing>
|
|
17
|
+
<profile default="true" name="Default" enabled="false">
|
|
18
|
+
<processorPath useClasspath="true" />
|
|
19
|
+
</profile>
|
|
20
|
+
</annotationProcessing>
|
|
21
|
+
</component>
|
|
22
|
+
</project>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="GradleSettings">
|
|
4
|
+
<option name="linkedExternalProjectsSettings">
|
|
5
|
+
<GradleProjectSettings>
|
|
6
|
+
<option name="distributionType" value="DEFAULT_WRAPPED" />
|
|
7
|
+
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
|
8
|
+
<option name="resolveModulePerSourceSet" value="false" />
|
|
9
|
+
</GradleProjectSettings>
|
|
10
|
+
</option>
|
|
11
|
+
</component>
|
|
12
|
+
</project>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="RunConfigurationProducerService">
|
|
4
|
+
<option name="ignoredProducers">
|
|
5
|
+
<set>
|
|
6
|
+
<option value="org.jetbrains.plugins.gradle.execution.test.runner.AllInPackageGradleConfigurationProducer" />
|
|
7
|
+
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestClassGradleConfigurationProducer" />
|
|
8
|
+
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestMethodGradleConfigurationProducer" />
|
|
9
|
+
</set>
|
|
10
|
+
</option>
|
|
11
|
+
</component>
|
|
12
|
+
</project>
|
|
@@ -32,7 +32,7 @@ if (!MODULE_NAME) {
|
|
|
32
32
|
console.error(`Could not find neither '${PUBLIC_MODULE}' or '${PRIVATE_MODULE}' in node_modules`);
|
|
33
33
|
process.exit(1);
|
|
34
34
|
}
|
|
35
|
-
const { addMetaDataItemToMainApplication, getMainApplicationOrThrow } = config_plugins_1.AndroidConfig.Manifest;
|
|
35
|
+
const { addMetaDataItemToMainApplication, removeMetaDataItemFromMainApplication, getMainApplicationOrThrow } = config_plugins_1.AndroidConfig.Manifest;
|
|
36
36
|
const androidPlugin = (config, props = {}) => {
|
|
37
37
|
config = (0, config_plugins_1.withProjectBuildGradle)(config, ({ modResults, ...subConfig }) => {
|
|
38
38
|
if (modResults.language !== 'groovy') {
|
|
@@ -51,12 +51,21 @@ const androidPlugin = (config, props = {}) => {
|
|
|
51
51
|
return { modResults, ...subConfig };
|
|
52
52
|
});
|
|
53
53
|
config = (0, config_plugins_1.withAndroidManifest)(config, async (config) => {
|
|
54
|
+
console.log("[react-native-background-geolocation] Adding license-keys to AndroidManifest:", props);
|
|
54
55
|
const mainApplication = getMainApplicationOrThrow(config.modResults);
|
|
55
56
|
addMetaDataItemToMainApplication(mainApplication, META_LICENSE_KEY, props.license || "UNDEFINED");
|
|
56
|
-
|
|
57
|
+
if (props.hmsLicense) {
|
|
58
|
+
addMetaDataItemToMainApplication(mainApplication, META_HMS_LICENSE_KEY, props.hmsLicense);
|
|
59
|
+
}
|
|
60
|
+
else {
|
|
61
|
+
removeMetaDataItemFromMainApplication(mainApplication, META_HMS_LICENSE_KEY);
|
|
62
|
+
}
|
|
57
63
|
if (props.polygonLicense) {
|
|
58
64
|
addMetaDataItemToMainApplication(mainApplication, META_POLYGON_LICENSE_KEY, props.polygonLicense);
|
|
59
65
|
}
|
|
66
|
+
else {
|
|
67
|
+
removeMetaDataItemFromMainApplication(mainApplication, META_POLYGON_LICENSE_KEY);
|
|
68
|
+
}
|
|
60
69
|
return config;
|
|
61
70
|
});
|
|
62
71
|
return config;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"androidPlugin.js","sourceRoot":"","sources":["../src/androidPlugin.ts"],"names":[],"mappings":";;;;;AAAA,yDAQ8B;AAE9B,gFAGuD;AASvD,gDAAwB;AACxB,4CAAoB;AAEpB,MAAM,aAAa,GAAG,qCAAqC,CAAC;AAC5D,MAAM,cAAc,GAAG,aAAa,GAAG,UAAU,CAAC;AAElD,MAAM,gBAAgB,GAAG,4CAA4C,CAAC;AACtE,MAAM,oBAAoB,GAAG,gDAAgD,CAAC;AAC9E,MAAM,wBAAwB,GAAG,oDAAoD,CAAC;AAEtF,MAAM,qBAAqB,GAAG,CAAC,GAAW,EAAiB,EAAE;IAC3D,MAAM,WAAW,GAAG,cAAI,CAAC,OAAO,CAAC,GAAG,EAAE,cAAc,CAAC,CAAC;IACtD,IAAI,YAAE,CAAC,UAAU,CAAC,cAAI,CAAC,IAAI,CAAC,WAAW,EAAE,aAAa,CAAC,CAAC,EAAE;QACxD,OAAO,aAAa,CAAC;KACtB;IACD,IAAI,YAAE,CAAC,UAAU,CAAC,cAAI,CAAC,IAAI,CAAC,WAAW,EAAE,cAAc,CAAC,CAAC,EAAE;QACzD,OAAO,cAAc,CAAC;KACvB;IAED,MAAM,MAAM,GAAG,cAAI,CAAC,OAAO,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;IACvC,IAAI,MAAM,KAAK,GAAG,EAAE;QAClB,2DAA2D;QAC3D,OAAO,IAAI,CAAC;KACb;IAED,OAAO,qBAAqB,CAAC,MAAM,CAAC,CAAC;AACvC,CAAC,CAAC;AACF,MAAM,WAAW,GAAG,qBAAqB,CAAC,cAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC;AAC7D,IAAI,CAAC,WAAW,EAAE;IAChB,OAAO,CAAC,KAAK,CAAC,2BAA2B,aAAa,SAAS,cAAc,mBAAmB,CAAC,CAAC;IAClG,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;CACjB;AAED,MAAM,
|
|
1
|
+
{"version":3,"file":"androidPlugin.js","sourceRoot":"","sources":["../src/androidPlugin.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>IDESourceControlProjectFavoriteDictionaryKey</key>
|
|
6
|
+
<false/>
|
|
7
|
+
<key>IDESourceControlProjectIdentifier</key>
|
|
8
|
+
<string>4A7DE3DE-54D9-4AE9-B27F-9EB2BA435688</string>
|
|
9
|
+
<key>IDESourceControlProjectName</key>
|
|
10
|
+
<string>RNBackgroundGeolocation</string>
|
|
11
|
+
<key>IDESourceControlProjectOriginsDictionary</key>
|
|
12
|
+
<dict>
|
|
13
|
+
<key>696C980427008B088C59F77220A0BC747AEED9B8</key>
|
|
14
|
+
<string>github.com:christocracy/react-native-background-geolocation.git</string>
|
|
15
|
+
</dict>
|
|
16
|
+
<key>IDESourceControlProjectPath</key>
|
|
17
|
+
<string>RNBackgroundGeolocation.xcodeproj</string>
|
|
18
|
+
<key>IDESourceControlProjectRelativeInstallPathDictionary</key>
|
|
19
|
+
<dict>
|
|
20
|
+
<key>696C980427008B088C59F77220A0BC747AEED9B8</key>
|
|
21
|
+
<string>../..</string>
|
|
22
|
+
</dict>
|
|
23
|
+
<key>IDESourceControlProjectURL</key>
|
|
24
|
+
<string>github.com:christocracy/react-native-background-geolocation.git</string>
|
|
25
|
+
<key>IDESourceControlProjectVersion</key>
|
|
26
|
+
<integer>111</integer>
|
|
27
|
+
<key>IDESourceControlProjectWCCIdentifier</key>
|
|
28
|
+
<string>696C980427008B088C59F77220A0BC747AEED9B8</string>
|
|
29
|
+
<key>IDESourceControlProjectWCConfigurations</key>
|
|
30
|
+
<array>
|
|
31
|
+
<dict>
|
|
32
|
+
<key>IDESourceControlRepositoryExtensionIdentifierKey</key>
|
|
33
|
+
<string>public.vcs.git</string>
|
|
34
|
+
<key>IDESourceControlWCCIdentifierKey</key>
|
|
35
|
+
<string>696C980427008B088C59F77220A0BC747AEED9B8</string>
|
|
36
|
+
<key>IDESourceControlWCCName</key>
|
|
37
|
+
<string>react-native-background-geolocation</string>
|
|
38
|
+
</dict>
|
|
39
|
+
</array>
|
|
40
|
+
</dict>
|
|
41
|
+
</plist>
|
|
Binary file
|
package/ios/RNBackgroundGeolocation.xcodeproj/xcuserdata/chris.xcuserdatad/xcschemes/Build.xcscheme
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Scheme
|
|
3
|
+
LastUpgradeVersion = "0940"
|
|
4
|
+
version = "1.3">
|
|
5
|
+
<BuildAction
|
|
6
|
+
parallelizeBuildables = "YES"
|
|
7
|
+
buildImplicitDependencies = "YES">
|
|
8
|
+
<BuildActionEntries>
|
|
9
|
+
<BuildActionEntry
|
|
10
|
+
buildForTesting = "YES"
|
|
11
|
+
buildForRunning = "YES"
|
|
12
|
+
buildForProfiling = "YES"
|
|
13
|
+
buildForArchiving = "YES"
|
|
14
|
+
buildForAnalyzing = "YES">
|
|
15
|
+
<BuildableReference
|
|
16
|
+
BuildableIdentifier = "primary"
|
|
17
|
+
BlueprintIdentifier = "831FD2901DCA883300F8F62A"
|
|
18
|
+
BuildableName = "Build"
|
|
19
|
+
BlueprintName = "Build"
|
|
20
|
+
ReferencedContainer = "container:RNBackgroundGeolocation.xcodeproj">
|
|
21
|
+
</BuildableReference>
|
|
22
|
+
</BuildActionEntry>
|
|
23
|
+
</BuildActionEntries>
|
|
24
|
+
</BuildAction>
|
|
25
|
+
<TestAction
|
|
26
|
+
buildConfiguration = "Debug"
|
|
27
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
28
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
29
|
+
shouldUseLaunchSchemeArgsEnv = "YES">
|
|
30
|
+
<Testables>
|
|
31
|
+
</Testables>
|
|
32
|
+
<AdditionalOptions>
|
|
33
|
+
</AdditionalOptions>
|
|
34
|
+
</TestAction>
|
|
35
|
+
<LaunchAction
|
|
36
|
+
buildConfiguration = "Debug"
|
|
37
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
38
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
39
|
+
launchStyle = "0"
|
|
40
|
+
useCustomWorkingDirectory = "NO"
|
|
41
|
+
ignoresPersistentStateOnLaunch = "NO"
|
|
42
|
+
debugDocumentVersioning = "YES"
|
|
43
|
+
debugServiceExtension = "internal"
|
|
44
|
+
allowLocationSimulation = "YES">
|
|
45
|
+
<MacroExpansion>
|
|
46
|
+
<BuildableReference
|
|
47
|
+
BuildableIdentifier = "primary"
|
|
48
|
+
BlueprintIdentifier = "831FD2901DCA883300F8F62A"
|
|
49
|
+
BuildableName = "Build"
|
|
50
|
+
BlueprintName = "Build"
|
|
51
|
+
ReferencedContainer = "container:RNBackgroundGeolocation.xcodeproj">
|
|
52
|
+
</BuildableReference>
|
|
53
|
+
</MacroExpansion>
|
|
54
|
+
<AdditionalOptions>
|
|
55
|
+
</AdditionalOptions>
|
|
56
|
+
</LaunchAction>
|
|
57
|
+
<ProfileAction
|
|
58
|
+
buildConfiguration = "Release"
|
|
59
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
60
|
+
savedToolIdentifier = ""
|
|
61
|
+
useCustomWorkingDirectory = "NO"
|
|
62
|
+
debugDocumentVersioning = "YES">
|
|
63
|
+
<MacroExpansion>
|
|
64
|
+
<BuildableReference
|
|
65
|
+
BuildableIdentifier = "primary"
|
|
66
|
+
BlueprintIdentifier = "831FD2901DCA883300F8F62A"
|
|
67
|
+
BuildableName = "Build"
|
|
68
|
+
BlueprintName = "Build"
|
|
69
|
+
ReferencedContainer = "container:RNBackgroundGeolocation.xcodeproj">
|
|
70
|
+
</BuildableReference>
|
|
71
|
+
</MacroExpansion>
|
|
72
|
+
</ProfileAction>
|
|
73
|
+
<AnalyzeAction
|
|
74
|
+
buildConfiguration = "Debug">
|
|
75
|
+
</AnalyzeAction>
|
|
76
|
+
<ArchiveAction
|
|
77
|
+
buildConfiguration = "Release"
|
|
78
|
+
revealArchiveInOrganizer = "YES">
|
|
79
|
+
</ArchiveAction>
|
|
80
|
+
</Scheme>
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Scheme
|
|
3
|
+
LastUpgradeVersion = "0940"
|
|
4
|
+
version = "1.3">
|
|
5
|
+
<BuildAction
|
|
6
|
+
parallelizeBuildables = "YES"
|
|
7
|
+
buildImplicitDependencies = "YES">
|
|
8
|
+
<BuildActionEntries>
|
|
9
|
+
<BuildActionEntry
|
|
10
|
+
buildForTesting = "YES"
|
|
11
|
+
buildForRunning = "YES"
|
|
12
|
+
buildForProfiling = "YES"
|
|
13
|
+
buildForArchiving = "YES"
|
|
14
|
+
buildForAnalyzing = "YES">
|
|
15
|
+
<BuildableReference
|
|
16
|
+
BuildableIdentifier = "primary"
|
|
17
|
+
BlueprintIdentifier = "83FF5F841AFD0D2B0016A13E"
|
|
18
|
+
BuildableName = "libRNBackgroundGeolocation.a"
|
|
19
|
+
BlueprintName = "RNBackgroundGeolocation"
|
|
20
|
+
ReferencedContainer = "container:RNBackgroundGeolocation.xcodeproj">
|
|
21
|
+
</BuildableReference>
|
|
22
|
+
</BuildActionEntry>
|
|
23
|
+
<BuildActionEntry
|
|
24
|
+
buildForTesting = "YES"
|
|
25
|
+
buildForRunning = "YES"
|
|
26
|
+
buildForProfiling = "NO"
|
|
27
|
+
buildForArchiving = "NO"
|
|
28
|
+
buildForAnalyzing = "YES">
|
|
29
|
+
<BuildableReference
|
|
30
|
+
BuildableIdentifier = "primary"
|
|
31
|
+
BlueprintIdentifier = "83FF5F8F1AFD0D2B0016A13E"
|
|
32
|
+
BuildableName = "RNBackgroundGeolocationTests.xctest"
|
|
33
|
+
BlueprintName = "RNBackgroundGeolocationTests"
|
|
34
|
+
ReferencedContainer = "container:RNBackgroundGeolocation.xcodeproj">
|
|
35
|
+
</BuildableReference>
|
|
36
|
+
</BuildActionEntry>
|
|
37
|
+
</BuildActionEntries>
|
|
38
|
+
</BuildAction>
|
|
39
|
+
<TestAction
|
|
40
|
+
buildConfiguration = "Debug"
|
|
41
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
42
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
43
|
+
shouldUseLaunchSchemeArgsEnv = "YES">
|
|
44
|
+
<Testables>
|
|
45
|
+
<TestableReference
|
|
46
|
+
skipped = "NO">
|
|
47
|
+
<BuildableReference
|
|
48
|
+
BuildableIdentifier = "primary"
|
|
49
|
+
BlueprintIdentifier = "83FF5F8F1AFD0D2B0016A13E"
|
|
50
|
+
BuildableName = "RNBackgroundGeolocationTests.xctest"
|
|
51
|
+
BlueprintName = "RNBackgroundGeolocationTests"
|
|
52
|
+
ReferencedContainer = "container:RNBackgroundGeolocation.xcodeproj">
|
|
53
|
+
</BuildableReference>
|
|
54
|
+
</TestableReference>
|
|
55
|
+
</Testables>
|
|
56
|
+
<MacroExpansion>
|
|
57
|
+
<BuildableReference
|
|
58
|
+
BuildableIdentifier = "primary"
|
|
59
|
+
BlueprintIdentifier = "83FF5F841AFD0D2B0016A13E"
|
|
60
|
+
BuildableName = "libRNBackgroundGeolocation.a"
|
|
61
|
+
BlueprintName = "RNBackgroundGeolocation"
|
|
62
|
+
ReferencedContainer = "container:RNBackgroundGeolocation.xcodeproj">
|
|
63
|
+
</BuildableReference>
|
|
64
|
+
</MacroExpansion>
|
|
65
|
+
<AdditionalOptions>
|
|
66
|
+
</AdditionalOptions>
|
|
67
|
+
</TestAction>
|
|
68
|
+
<LaunchAction
|
|
69
|
+
buildConfiguration = "Debug"
|
|
70
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
71
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
72
|
+
launchStyle = "0"
|
|
73
|
+
useCustomWorkingDirectory = "NO"
|
|
74
|
+
ignoresPersistentStateOnLaunch = "NO"
|
|
75
|
+
debugDocumentVersioning = "YES"
|
|
76
|
+
debugServiceExtension = "internal"
|
|
77
|
+
allowLocationSimulation = "YES">
|
|
78
|
+
<MacroExpansion>
|
|
79
|
+
<BuildableReference
|
|
80
|
+
BuildableIdentifier = "primary"
|
|
81
|
+
BlueprintIdentifier = "83FF5F841AFD0D2B0016A13E"
|
|
82
|
+
BuildableName = "libRNBackgroundGeolocation.a"
|
|
83
|
+
BlueprintName = "RNBackgroundGeolocation"
|
|
84
|
+
ReferencedContainer = "container:RNBackgroundGeolocation.xcodeproj">
|
|
85
|
+
</BuildableReference>
|
|
86
|
+
</MacroExpansion>
|
|
87
|
+
<AdditionalOptions>
|
|
88
|
+
</AdditionalOptions>
|
|
89
|
+
</LaunchAction>
|
|
90
|
+
<ProfileAction
|
|
91
|
+
buildConfiguration = "Release"
|
|
92
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
93
|
+
savedToolIdentifier = ""
|
|
94
|
+
useCustomWorkingDirectory = "NO"
|
|
95
|
+
debugDocumentVersioning = "YES">
|
|
96
|
+
<MacroExpansion>
|
|
97
|
+
<BuildableReference
|
|
98
|
+
BuildableIdentifier = "primary"
|
|
99
|
+
BlueprintIdentifier = "83FF5F841AFD0D2B0016A13E"
|
|
100
|
+
BuildableName = "libRNBackgroundGeolocation.a"
|
|
101
|
+
BlueprintName = "RNBackgroundGeolocation"
|
|
102
|
+
ReferencedContainer = "container:RNBackgroundGeolocation.xcodeproj">
|
|
103
|
+
</BuildableReference>
|
|
104
|
+
</MacroExpansion>
|
|
105
|
+
</ProfileAction>
|
|
106
|
+
<AnalyzeAction
|
|
107
|
+
buildConfiguration = "Debug">
|
|
108
|
+
</AnalyzeAction>
|
|
109
|
+
<ArchiveAction
|
|
110
|
+
buildConfiguration = "Release"
|
|
111
|
+
revealArchiveInOrganizer = "YES">
|
|
112
|
+
</ArchiveAction>
|
|
113
|
+
</Scheme>
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>SchemeUserState</key>
|
|
6
|
+
<dict>
|
|
7
|
+
<key>Build.xcscheme</key>
|
|
8
|
+
<dict>
|
|
9
|
+
<key>orderHint</key>
|
|
10
|
+
<integer>4</integer>
|
|
11
|
+
</dict>
|
|
12
|
+
<key>RNBackgroundGeolocation.xcscheme</key>
|
|
13
|
+
<dict>
|
|
14
|
+
<key>orderHint</key>
|
|
15
|
+
<integer>3</integer>
|
|
16
|
+
</dict>
|
|
17
|
+
</dict>
|
|
18
|
+
<key>SuppressBuildableAutocreation</key>
|
|
19
|
+
<dict>
|
|
20
|
+
<key>831FD2901DCA883300F8F62A</key>
|
|
21
|
+
<dict>
|
|
22
|
+
<key>primary</key>
|
|
23
|
+
<true/>
|
|
24
|
+
</dict>
|
|
25
|
+
<key>83FF5F841AFD0D2B0016A13E</key>
|
|
26
|
+
<dict>
|
|
27
|
+
<key>primary</key>
|
|
28
|
+
<true/>
|
|
29
|
+
</dict>
|
|
30
|
+
<key>83FF5F8F1AFD0D2B0016A13E</key>
|
|
31
|
+
<dict>
|
|
32
|
+
<key>primary</key>
|
|
33
|
+
<true/>
|
|
34
|
+
</dict>
|
|
35
|
+
</dict>
|
|
36
|
+
</dict>
|
|
37
|
+
</plist>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-background-geolocation",
|
|
3
|
-
"version": "4.16.
|
|
3
|
+
"version": "4.16.6",
|
|
4
4
|
"description": "The most sophisticated cross-platform background location-tracking & geofencing module with battery-conscious motion-detection intelligence",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn run build:expo",
|