expo-manifests 56.0.3 → 56.0.4
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 +4 -0
- package/android/build.gradle +2 -2
- package/ios/EXManifests/Manifest.swift +4 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/android/build.gradle
CHANGED
|
@@ -4,7 +4,7 @@ plugins {
|
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
group = 'host.exp.exponent'
|
|
7
|
-
version = '56.0.
|
|
7
|
+
version = '56.0.4'
|
|
8
8
|
|
|
9
9
|
expoModule {
|
|
10
10
|
canBePublished false
|
|
@@ -14,7 +14,7 @@ android {
|
|
|
14
14
|
namespace "expo.modules.manifests"
|
|
15
15
|
defaultConfig {
|
|
16
16
|
versionCode 31
|
|
17
|
-
versionName '56.0.
|
|
17
|
+
versionName '56.0.4'
|
|
18
18
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
19
19
|
}
|
|
20
20
|
testOptions {
|
|
@@ -198,6 +198,10 @@ public class Manifest: NSObject {
|
|
|
198
198
|
return expoClientConfigRootObject()?.optionalValue(forKey: "experiments")
|
|
199
199
|
}
|
|
200
200
|
|
|
201
|
+
public func expoGoUsername() -> String? {
|
|
202
|
+
return expoGoConfigRootObject()?.optionalValue(forKey: "username")
|
|
203
|
+
}
|
|
204
|
+
|
|
201
205
|
public func developer() -> [String: Any]? {
|
|
202
206
|
return expoGoConfigRootObject()?.optionalValue(forKey: "developer")
|
|
203
207
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-manifests",
|
|
3
|
-
"version": "56.0.
|
|
3
|
+
"version": "56.0.4",
|
|
4
4
|
"description": "Code to parse and use Expo and Expo Updates manifests.",
|
|
5
5
|
"main": "build/Manifests.js",
|
|
6
6
|
"types": "build/Manifests.d.ts",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"expo-json-utils": "~56.0.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"expo": "56.0.0-preview.
|
|
31
|
+
"expo": "56.0.0-preview.13",
|
|
32
32
|
"expo-module-scripts": "56.0.2"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"expo": "*"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "290368bc41026449a05a4ebf991b85c3a2fb0e3a",
|
|
38
38
|
"scripts": {
|
|
39
39
|
"build": "expo-module build",
|
|
40
40
|
"clean": "expo-module clean",
|