expo-modules-test-core 0.18.1-canary-20240912-1059f85 → 0.18.2-canary-20240927-ab8a962
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
|
@@ -16,19 +16,40 @@ android {
|
|
|
16
16
|
versionCode 3
|
|
17
17
|
versionName '0.18.0'
|
|
18
18
|
}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
19
|
+
packagingOptions {
|
|
20
|
+
resources {
|
|
21
|
+
excludes += [
|
|
22
|
+
'META-INF/LICENSE.md',
|
|
23
|
+
'META-INF/LICENSE-notice.md',
|
|
24
|
+
]
|
|
25
|
+
}
|
|
22
26
|
}
|
|
23
27
|
}
|
|
24
28
|
|
|
25
29
|
dependencies {
|
|
26
|
-
api 'androidx.test:core:1.
|
|
30
|
+
api 'androidx.test:core:1.6.1'
|
|
27
31
|
api 'junit:junit:4.13.2'
|
|
28
|
-
api
|
|
29
|
-
|
|
32
|
+
api('io.mockk:mockk:1.13.5') {
|
|
33
|
+
// jupiter is junit 5 which we don't use
|
|
34
|
+
exclude group: 'org.junit.jupiter'
|
|
35
|
+
}
|
|
36
|
+
api ("org.robolectric:robolectric:4.11.1") {
|
|
37
|
+
// Duplicate class bcprov-jdk15to18-1.78.1.jar and bcprov-jdk18on-1.78.1.jar
|
|
38
|
+
// Exclude the conflicting jdk18on version, so that jdk15to18 is used
|
|
39
|
+
exclude group: 'org.bouncycastle', module: 'bcprov-jdk18on'
|
|
40
|
+
}
|
|
41
|
+
// specify a version of Bouncy Castle - used in robolectric and androidx.room (expo-updates)
|
|
42
|
+
implementation 'org.bouncycastle:bcprov-jdk15to18:1.78.1'
|
|
43
|
+
testImplementation 'org.bouncycastle:bcprov-jdk15to18:1.78.1'
|
|
30
44
|
|
|
31
45
|
implementation 'com.facebook.react:react-android'
|
|
32
46
|
|
|
33
47
|
implementation "org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion()}"
|
|
48
|
+
|
|
49
|
+
// instrumented testing dependencies
|
|
50
|
+
api 'androidx.test.ext:junit:1.2.1'
|
|
51
|
+
api 'androidx.test:runner:1.6.2'
|
|
52
|
+
api 'androidx.test:rules:1.6.1'
|
|
53
|
+
api "com.google.truth:truth:1.1.2"
|
|
54
|
+
api "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.0"
|
|
34
55
|
}
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-modules-test-core",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.2-canary-20240927-ab8a962",
|
|
4
4
|
"main": "./app.plugin.js",
|
|
5
5
|
"description": "Module providing native testing utilities for testing Expo modules",
|
|
6
6
|
"keywords": [
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"xml-js": "^1.6.11",
|
|
35
35
|
"yaml": "^2.3.2"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "ab8a962d2c3dddbda124a6bd88d24475831dae00"
|
|
38
38
|
}
|
|
Binary file
|