expo-modules-test-core 0.9.0 → 0.9.2
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.9.
|
|
6
|
+
version = '0.9.2'
|
|
7
7
|
|
|
8
8
|
buildscript {
|
|
9
9
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
@@ -74,7 +74,7 @@ android {
|
|
|
74
74
|
minSdkVersion safeExtGet("minSdkVersion", 21)
|
|
75
75
|
targetSdkVersion safeExtGet("targetSdkVersion", 31)
|
|
76
76
|
versionCode 3
|
|
77
|
-
versionName '0.9.
|
|
77
|
+
versionName '0.9.2'
|
|
78
78
|
}
|
|
79
79
|
lintOptions {
|
|
80
80
|
abortOnError false
|
|
@@ -127,7 +127,7 @@ private fun prepareMockAppContext(customAppContext: AppContext?): AppContext {
|
|
|
127
127
|
// we need to override it to return actual strong reference (held by mockk internals)
|
|
128
128
|
val appContextSpy = convertToSpy(appContext)
|
|
129
129
|
every { appContextSpy getProperty "reactContext" } returns reactContext
|
|
130
|
-
|
|
130
|
+
every { appContextSpy getProperty "hasActiveReactInstance" } returns true
|
|
131
131
|
return appContextSpy
|
|
132
132
|
}
|
|
133
133
|
|
|
@@ -10,7 +10,7 @@ Pod::Spec.new do |s|
|
|
|
10
10
|
s.license = package['license']
|
|
11
11
|
s.author = package['author']
|
|
12
12
|
s.homepage = package['homepage']
|
|
13
|
-
s.platform = :ios, '
|
|
13
|
+
s.platform = :ios, '13.0'
|
|
14
14
|
s.swift_version = '5.4'
|
|
15
15
|
s.source = { git: 'https://github.com/expo/expo.git' }
|
|
16
16
|
s.static_framework = true
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-modules-test-core",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
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": "779ad6af070d07a14f371e3106f02ddd1b093538"
|
|
25
25
|
}
|