expo-modules-test-core 1.0.1-canary-20251015-a6a1272 → 1.0.1-canary-20251031-b135dff
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 +2 -2
- package/ios/ExpoSpec.swift +5 -3
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -4,7 +4,7 @@ plugins {
|
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
group = 'org.unimodules'
|
|
7
|
-
version = '1.0.1-canary-
|
|
7
|
+
version = '1.0.1-canary-20251031-b135dff'
|
|
8
8
|
|
|
9
9
|
expoModule {
|
|
10
10
|
canBePublished false
|
|
@@ -14,7 +14,7 @@ android {
|
|
|
14
14
|
namespace "org.unimodules.test.core"
|
|
15
15
|
defaultConfig {
|
|
16
16
|
versionCode 3
|
|
17
|
-
versionName '1.0.1-canary-
|
|
17
|
+
versionName '1.0.1-canary-20251031-b135dff'
|
|
18
18
|
}
|
|
19
19
|
packagingOptions {
|
|
20
20
|
resources {
|
package/ios/ExpoSpec.swift
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
// Copyright 2022-present 650 Industries. All rights reserved.
|
|
2
2
|
|
|
3
3
|
#if DEBUG
|
|
4
|
-
@_exported import Quick
|
|
5
|
-
@_exported import Nimble
|
|
6
|
-
@_exported @testable import ExpoModulesCore
|
|
4
|
+
@_exported @preconcurrency import Quick
|
|
5
|
+
@_exported @preconcurrency import Nimble
|
|
6
|
+
@_exported @testable @preconcurrency import ExpoModulesCore
|
|
7
7
|
|
|
8
|
+
@MainActor
|
|
9
|
+
@preconcurrency
|
|
8
10
|
open class ExpoSpec: QuickSpec {}
|
|
9
11
|
#endif
|
package/package.json
CHANGED