expo-updates 0.28.8 → 0.28.9
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
|
@@ -39,7 +39,7 @@ expoModule {
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
group = 'host.exp.exponent'
|
|
42
|
-
version = '0.28.
|
|
42
|
+
version = '0.28.9'
|
|
43
43
|
|
|
44
44
|
// Utility method to derive boolean values from the environment or from Java properties,
|
|
45
45
|
// and return them as strings to be used in BuildConfig fields
|
|
@@ -85,7 +85,7 @@ android {
|
|
|
85
85
|
namespace "expo.modules.updates"
|
|
86
86
|
defaultConfig {
|
|
87
87
|
versionCode 31
|
|
88
|
-
versionName '0.28.
|
|
88
|
+
versionName '0.28.9'
|
|
89
89
|
consumerProguardFiles("proguard-rules.pro")
|
|
90
90
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
91
91
|
|
|
@@ -29,6 +29,10 @@ class AppDelegate: ExpoAppDelegate {
|
|
|
29
29
|
var launchOptions: [UIApplication.LaunchOptionsKey: Any]?
|
|
30
30
|
// AppDelegate keeps a nullable reference to the updates controller
|
|
31
31
|
var updatesController: (any InternalAppControllerInterface)?
|
|
32
|
+
var window: UIWindow?
|
|
33
|
+
|
|
34
|
+
var reactNativeDelegate: ExpoReactNativeFactoryDelegate?
|
|
35
|
+
var reactNativeFactory: RCTReactNativeFactory?
|
|
32
36
|
|
|
33
37
|
static func shared() -> AppDelegate {
|
|
34
38
|
guard let delegate = UIApplication.shared.delegate as? AppDelegate else {
|
|
@@ -50,8 +54,9 @@ class AppDelegate: ExpoAppDelegate {
|
|
|
50
54
|
let factory = ExpoReactNativeFactory(delegate: delegate)
|
|
51
55
|
delegate.dependencyProvider = RCTAppDependencyProvider()
|
|
52
56
|
|
|
53
|
-
|
|
57
|
+
reactNativeDelegate = delegate
|
|
54
58
|
reactNativeFactory = factory
|
|
59
|
+
bindReactNativeFactory(factory)
|
|
55
60
|
|
|
56
61
|
// AppController instance must always be created first.
|
|
57
62
|
// expo-updates creates a different type of controller
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-updates",
|
|
3
|
-
"version": "0.28.
|
|
3
|
+
"version": "0.28.9",
|
|
4
4
|
"description": "Fetches and manages remotely-hosted assets and updates to your app's JS bundle.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"expo": "*",
|
|
73
73
|
"react": "*"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "45bd8a319fb2d6abadac8dcb0c821a55a1f0caa3"
|
|
76
76
|
}
|