expo-json-utils 0.14.1-canary-20250124-42fe332 → 0.14.1-canary-20250207-8bc5146
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
package/android/build.gradle
CHANGED
|
@@ -1,15 +1,27 @@
|
|
|
1
1
|
apply plugin: 'com.android.library'
|
|
2
2
|
|
|
3
|
+
def useLegacyExpoModulesCorePlugin = {
|
|
4
|
+
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
5
|
+
apply from: expoModulesCorePlugin
|
|
6
|
+
applyKotlinExpoModulesCorePlugin()
|
|
7
|
+
useCoreDependencies()
|
|
8
|
+
useDefaultAndroidSdkVersions()
|
|
9
|
+
useExpoPublishing()
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
try {
|
|
13
|
+
apply plugin: 'expo-module-gradle-plugin'
|
|
14
|
+
} catch (e) {
|
|
15
|
+
if (!e instanceof UnknownPluginException) {
|
|
16
|
+
throw e
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
useLegacyExpoModulesCorePlugin()
|
|
20
|
+
}
|
|
21
|
+
|
|
3
22
|
group = 'host.exp.exponent'
|
|
4
23
|
version = '0.14.0'
|
|
5
24
|
|
|
6
|
-
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
7
|
-
apply from: expoModulesCorePlugin
|
|
8
|
-
applyKotlinExpoModulesCorePlugin()
|
|
9
|
-
useCoreDependencies()
|
|
10
|
-
useDefaultAndroidSdkVersions()
|
|
11
|
-
useExpoPublishing()
|
|
12
|
-
|
|
13
25
|
android {
|
|
14
26
|
namespace "expo.modules.jsonutils"
|
|
15
27
|
defaultConfig {
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-json-utils",
|
|
3
|
-
"version": "0.14.1-canary-
|
|
3
|
+
"version": "0.14.1-canary-20250207-8bc5146",
|
|
4
4
|
"description": "Utilities for reading JSONObjects (Android) and NSDictionaries (iOS).",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"keywords": [
|
|
@@ -23,5 +23,5 @@
|
|
|
23
23
|
"author": "650 Industries, Inc.",
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"homepage": "https://docs.expo.dev",
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "8bc5146852ccd7033138bac9ef8d3c41ae85a211"
|
|
27
27
|
}
|
|
Binary file
|