expo-modules-test-core 0.10.0 → 0.11.0
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
CHANGED
|
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
|
|
|
3
3
|
apply plugin: 'maven-publish'
|
|
4
4
|
|
|
5
5
|
group = 'org.unimodules'
|
|
6
|
-
version = '0.
|
|
6
|
+
version = '0.11.0'
|
|
7
7
|
|
|
8
8
|
buildscript {
|
|
9
9
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
@@ -59,7 +59,7 @@ afterEvaluate {
|
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
android {
|
|
62
|
-
compileSdkVersion safeExtGet("compileSdkVersion",
|
|
62
|
+
compileSdkVersion safeExtGet("compileSdkVersion", 33)
|
|
63
63
|
|
|
64
64
|
compileOptions {
|
|
65
65
|
sourceCompatibility JavaVersion.VERSION_11
|
|
@@ -72,9 +72,9 @@ android {
|
|
|
72
72
|
|
|
73
73
|
defaultConfig {
|
|
74
74
|
minSdkVersion safeExtGet("minSdkVersion", 21)
|
|
75
|
-
targetSdkVersion safeExtGet("targetSdkVersion",
|
|
75
|
+
targetSdkVersion safeExtGet("targetSdkVersion", 33)
|
|
76
76
|
versionCode 3
|
|
77
|
-
versionName '0.
|
|
77
|
+
versionName '0.11.0'
|
|
78
78
|
}
|
|
79
79
|
lintOptions {
|
|
80
80
|
abortOnError false
|
|
@@ -21,4 +21,12 @@ Pod::Spec.new do |s|
|
|
|
21
21
|
s.dependency 'ExpoModulesCore'
|
|
22
22
|
s.dependency 'Quick', '~> 5.0.0'
|
|
23
23
|
s.dependency 'Nimble', '~> 9.2.0'
|
|
24
|
+
|
|
25
|
+
# react_native_pods.rb will add the ENV['USE_HERMES'],
|
|
26
|
+
# we could use this to check current js runtime.
|
|
27
|
+
if ENV['USE_HERMES'] == '0'
|
|
28
|
+
s.dependency 'React-jsc'
|
|
29
|
+
else
|
|
30
|
+
s.dependency 'React-hermes'
|
|
31
|
+
end
|
|
24
32
|
end
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-modules-test-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"main": "./app.plugin.js",
|
|
5
5
|
"description": "Module providing native testing utilities for testing Expo modules",
|
|
6
6
|
"keywords": [
|
|
@@ -21,5 +21,5 @@
|
|
|
21
21
|
"author": "650 Industries, Inc.",
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"homepage": "https://github.com/expo/expo/tree/main/packages/expo-modules-test-core",
|
|
24
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "1815e2eaad8c753588c7b1eb74420174a28e01f4"
|
|
25
25
|
}
|