react-native-spike-sdk 4.3.143-beta.2 → 4.3.143-beta.3
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/app.plugin.js +0 -7
- package/lib/commonjs/version.js +1 -1
- package/lib/module/version.js +1 -1
- package/lib/typescript/version.d.ts +1 -1
- package/package.json +2 -1
- package/src/version.ts +1 -1
package/app.plugin.js
CHANGED
|
@@ -208,13 +208,6 @@ function withCustomAndroidManifest(config, { isBackgroundDeliveryEnabled = true,
|
|
|
208
208
|
|
|
209
209
|
const application = manifest.application[0];
|
|
210
210
|
|
|
211
|
-
// Add tools:replace attribute for dataExtractionRules and fullBackupContent
|
|
212
|
-
application['$']['tools:replace'] = 'android:dataExtractionRules, android:fullBackupContent';
|
|
213
|
-
|
|
214
|
-
// Set dataExtractionRules and fullBackupContent as attributes within <application>
|
|
215
|
-
application['$']['android:dataExtractionRules'] = '@xml/secure_store_data_extraction_rules';
|
|
216
|
-
application['$']['android:fullBackupContent'] = '@xml/secure_store_backup_rules';
|
|
217
|
-
|
|
218
211
|
// Find the main activity and add the intent filter for permissions rationale
|
|
219
212
|
if (application.activity) {
|
|
220
213
|
for (const activity of application.activity) {
|
package/lib/commonjs/version.js
CHANGED
|
@@ -5,5 +5,5 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.SPIKE_SDK_VERSION = void 0;
|
|
7
7
|
// This file is auto-generated. Do not edit manually.
|
|
8
|
-
const SPIKE_SDK_VERSION = exports.SPIKE_SDK_VERSION = "4.3.143-beta.
|
|
8
|
+
const SPIKE_SDK_VERSION = exports.SPIKE_SDK_VERSION = "4.3.143-beta.3";
|
|
9
9
|
//# sourceMappingURL=version.js.map
|
package/lib/module/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const SPIKE_SDK_VERSION = "4.3.143-beta.
|
|
1
|
+
export declare const SPIKE_SDK_VERSION = "4.3.143-beta.3";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-spike-sdk",
|
|
3
|
-
"version": "4.3.143-beta.
|
|
3
|
+
"version": "4.3.143-beta.3",
|
|
4
4
|
"iosVersion": "4.3.101",
|
|
5
5
|
"description": "Spike API for health and productivity data from wearables and IoT devices",
|
|
6
6
|
"main": "lib/commonjs/index",
|
|
@@ -61,6 +61,7 @@
|
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@babel/core": "^7.8.0",
|
|
63
63
|
"@babel/preset-env": "^7.1.6",
|
|
64
|
+
"@react-native/babel-preset": "^0.79.0",
|
|
64
65
|
"@react-native/typescript-config": "^0.76.0",
|
|
65
66
|
"@types/jest": "^28.1.2",
|
|
66
67
|
"@types/react": "~18.2.6",
|
package/src/version.ts
CHANGED