expo-modules-core 2.3.7 → 2.3.8
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
|
@@ -2,28 +2,22 @@ import expo.modules.plugin.gradle.ExpoModuleExtension
|
|
|
2
2
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
3
3
|
|
|
4
4
|
buildscript {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
repositories {
|
|
9
|
-
mavenCentral()
|
|
10
|
-
}
|
|
5
|
+
repositories {
|
|
6
|
+
mavenCentral()
|
|
7
|
+
}
|
|
11
8
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
}
|
|
9
|
+
dependencies {
|
|
10
|
+
classpath("org.jetbrains.kotlin.plugin.compose:org.jetbrains.kotlin.plugin.compose.gradle.plugin:${kotlinVersion}")
|
|
15
11
|
}
|
|
16
12
|
}
|
|
17
13
|
|
|
18
14
|
apply plugin: 'com.android.library'
|
|
19
15
|
apply plugin: 'expo-module-gradle-plugin'
|
|
16
|
+
apply plugin: 'org.jetbrains.kotlin.plugin.compose'
|
|
20
17
|
|
|
21
|
-
if (KOTLIN_MAJOR_VERSION >= 2) {
|
|
22
|
-
apply plugin: 'org.jetbrains.kotlin.plugin.compose'
|
|
23
|
-
}
|
|
24
18
|
|
|
25
19
|
group = 'host.exp.exponent'
|
|
26
|
-
version = '2.3.
|
|
20
|
+
version = '2.3.8'
|
|
27
21
|
|
|
28
22
|
// List of features that are required by linked modules
|
|
29
23
|
def coreFeatures = project.findProperty("coreFeatures") ?: []
|
|
@@ -76,7 +70,7 @@ android {
|
|
|
76
70
|
defaultConfig {
|
|
77
71
|
consumerProguardFiles 'proguard-rules.pro'
|
|
78
72
|
versionCode 1
|
|
79
|
-
versionName "2.3.
|
|
73
|
+
versionName "2.3.8"
|
|
80
74
|
buildConfigField "String", "EXPO_MODULES_CORE_VERSION", "\"${versionName}\""
|
|
81
75
|
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled.toString()
|
|
82
76
|
|
|
@@ -107,12 +101,6 @@ android {
|
|
|
107
101
|
compose true
|
|
108
102
|
}
|
|
109
103
|
|
|
110
|
-
if (KOTLIN_MAJOR_VERSION < 2) {
|
|
111
|
-
composeOptions {
|
|
112
|
-
kotlinCompilerExtensionVersion = "1.5.14"
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
|
|
116
104
|
packagingOptions {
|
|
117
105
|
// Gradle will add cmake target dependencies into packaging.
|
|
118
106
|
// Theses files are intermediated linking files to build modules-core and should not be in final package.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
public protocol ReactNativeFactoryProvider: AnyObject {
|
|
2
2
|
/**
|
|
3
3
|
To decouple RCTAppDelegate dependency from expo-modules-core,
|
|
4
|
-
expo-modules-core
|
|
4
|
+
expo-modules-core doesn't include the concrete `RCTReactNativeFactory` type and let the callsite to include the type
|
|
5
5
|
*/
|
|
6
6
|
associatedtype ReactNativeFactoryType
|
|
7
7
|
var reactNativeFactory: ReactNativeFactoryType? { get }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-modules-core",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.8",
|
|
4
4
|
"description": "The core of Expo Modules architecture",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@testing-library/react-native": "^13.1.0",
|
|
45
|
-
"expo-module-scripts": "^4.1.
|
|
45
|
+
"expo-module-scripts": "^4.1.4"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "dd4ea2ac865a2b0c1f4ea3fc5879d90679099862"
|
|
48
48
|
}
|