@sentiance-react-native/legacy 6.25.0-alpha.1 → 6.25.0-alpha.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/android/build.gradle +6 -0
- package/package.json +2 -2
package/android/build.gradle
CHANGED
|
@@ -11,6 +11,9 @@ if (findProject(':core')) {
|
|
|
11
11
|
} else if (findProject(':@sentiance-react-native_core')) {
|
|
12
12
|
// On RN 0.60, the @ sign is not stripped from project names
|
|
13
13
|
coreProj = project(':@sentiance-react-native_core')
|
|
14
|
+
} else if (findProject(':sentiance-react-native-core')) {
|
|
15
|
+
// Expo autolinking strips @ and replaces non-word characters with hyphens
|
|
16
|
+
coreProj = project(':sentiance-react-native-core')
|
|
14
17
|
} else {
|
|
15
18
|
throw new GradleException('Could not find the @sentiance-react-native/core package, have you installed it?')
|
|
16
19
|
}
|
|
@@ -24,6 +27,9 @@ if (findProject(':crash-detection')) {
|
|
|
24
27
|
} else if (findProject(':@sentiance-react-native_crash-detection')) {
|
|
25
28
|
// On RN 0.60, the @ sign is not stripped from project names
|
|
26
29
|
crashDetectionProj = project(':@sentiance-react-native_crash-detection')
|
|
30
|
+
} else if (findProject(':sentiance-react-native-crash-detection')) {
|
|
31
|
+
// Expo autolinking strips @ and replaces non-word characters with hyphens
|
|
32
|
+
crashDetectionProj = project(':sentiance-react-native-crash-detection')
|
|
27
33
|
} else {
|
|
28
34
|
throw new GradleException('Could not find the @sentiance-react-native/crash-detection package, have you installed it?')
|
|
29
35
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentiance-react-native/legacy",
|
|
3
|
-
"version": "6.25.0-alpha.
|
|
3
|
+
"version": "6.25.0-alpha.3",
|
|
4
4
|
"description": "The Sentiance Legacy library",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"typings": "lib/index.d.ts",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"sentiance"
|
|
11
11
|
],
|
|
12
12
|
"peerDependencies": {
|
|
13
|
-
"@sentiance-react-native/crash-detection": "6.25.0-alpha.
|
|
13
|
+
"@sentiance-react-native/crash-detection": "6.25.0-alpha.3"
|
|
14
14
|
},
|
|
15
15
|
"author": "",
|
|
16
16
|
"license": "",
|