expo-manifests 0.9.0 → 0.11.0
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 +11 -0
- package/android/build.gradle +42 -27
- package/ios/EXManifests.podspec +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -10,11 +10,22 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 0.11.0 — 2023-10-17
|
|
14
|
+
|
|
15
|
+
_This version does not introduce any user-facing changes._
|
|
16
|
+
|
|
17
|
+
## 0.10.0 — 2023-09-15
|
|
18
|
+
|
|
19
|
+
### 🎉 New features
|
|
20
|
+
|
|
21
|
+
- Added support for Apple tvOS. ([#24329](https://github.com/expo/expo/pull/24329) by [@douglowder](https://github.com/douglowder))
|
|
22
|
+
|
|
13
23
|
## 0.9.0 — 2023-09-04
|
|
14
24
|
|
|
15
25
|
### 🛠 Breaking changes
|
|
16
26
|
|
|
17
27
|
- Remove classic manifest types. ([#24053](https://github.com/expo/expo/pull/24053) by [@wschurman](https://github.com/wschurman))
|
|
28
|
+
- Dropped support for Android SDK 21 and 22. ([#24201](https://github.com/expo/expo/pull/24201) by [@behenate](https://github.com/behenate))
|
|
18
29
|
|
|
19
30
|
### 🎉 New features
|
|
20
31
|
|
package/android/build.gradle
CHANGED
|
@@ -3,15 +3,19 @@ apply plugin: 'kotlin-android'
|
|
|
3
3
|
apply plugin: 'maven-publish'
|
|
4
4
|
|
|
5
5
|
group = 'host.exp.exponent'
|
|
6
|
-
version = '0.
|
|
6
|
+
version = '0.11.0'
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
8
|
+
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
9
|
+
if (expoModulesCorePlugin.exists()) {
|
|
10
|
+
apply from: expoModulesCorePlugin
|
|
11
|
+
applyKotlinExpoModulesCorePlugin()
|
|
12
|
+
// Remove this check, but keep the contents after SDK49 support is dropped
|
|
13
|
+
if (safeExtGet("expoProvidesDefaultConfig", false)) {
|
|
14
|
+
useExpoPublishing()
|
|
13
15
|
}
|
|
16
|
+
}
|
|
14
17
|
|
|
18
|
+
buildscript {
|
|
15
19
|
// Simple helper that allows the root project to override versions declared by this library.
|
|
16
20
|
ext.safeExtGet = { prop, fallback ->
|
|
17
21
|
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
|
|
@@ -35,23 +39,44 @@ buildscript {
|
|
|
35
39
|
}
|
|
36
40
|
}
|
|
37
41
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
42
|
+
// Remove this if and it's contents, when support for SDK49 is dropped
|
|
43
|
+
if (!safeExtGet("expoProvidesDefaultConfig", false)) {
|
|
44
|
+
afterEvaluate {
|
|
45
|
+
publishing {
|
|
46
|
+
publications {
|
|
47
|
+
release(MavenPublication) {
|
|
48
|
+
from components.release
|
|
49
|
+
}
|
|
43
50
|
}
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
51
|
+
repositories {
|
|
52
|
+
maven {
|
|
53
|
+
url = mavenLocal().url
|
|
54
|
+
}
|
|
48
55
|
}
|
|
49
56
|
}
|
|
50
57
|
}
|
|
51
58
|
}
|
|
52
59
|
|
|
53
60
|
android {
|
|
54
|
-
|
|
61
|
+
// Remove this if and it's contents, when support for SDK49 is dropped
|
|
62
|
+
if (!safeExtGet("expoProvidesDefaultConfig", false)) {
|
|
63
|
+
compileSdkVersion safeExtGet("compileSdkVersion", 33)
|
|
64
|
+
|
|
65
|
+
defaultConfig {
|
|
66
|
+
minSdkVersion safeExtGet("minSdkVersion", 23)
|
|
67
|
+
targetSdkVersion safeExtGet("targetSdkVersion", 33)
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
publishing {
|
|
71
|
+
singleVariant("release") {
|
|
72
|
+
withSourcesJar()
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
lintOptions {
|
|
77
|
+
abortOnError false
|
|
78
|
+
}
|
|
79
|
+
}
|
|
55
80
|
|
|
56
81
|
def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION
|
|
57
82
|
if (agpVersion.tokenize('.')[0].toInteger() < 8) {
|
|
@@ -67,26 +92,16 @@ android {
|
|
|
67
92
|
|
|
68
93
|
namespace "expo.modules.manifests"
|
|
69
94
|
defaultConfig {
|
|
70
|
-
minSdkVersion safeExtGet("minSdkVersion", 21)
|
|
71
|
-
targetSdkVersion safeExtGet("targetSdkVersion", 33)
|
|
72
95
|
versionCode 31
|
|
73
|
-
versionName '0.
|
|
96
|
+
versionName '0.11.0'
|
|
74
97
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
75
98
|
}
|
|
76
|
-
lintOptions {
|
|
77
|
-
abortOnError false
|
|
78
|
-
}
|
|
79
99
|
testOptions {
|
|
80
100
|
unitTests.includeAndroidResources = true
|
|
81
101
|
}
|
|
82
102
|
sourceSets {
|
|
83
103
|
androidTest.assets.srcDirs += files("$projectDir/src/androidTest/schemas".toString())
|
|
84
104
|
}
|
|
85
|
-
publishing {
|
|
86
|
-
singleVariant("release") {
|
|
87
|
-
withSourcesJar()
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
105
|
}
|
|
91
106
|
|
|
92
107
|
dependencies {
|
package/ios/EXManifests.podspec
CHANGED
|
@@ -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.
|
|
13
|
+
s.platforms = { :ios => '13.0', :tvos => '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-manifests",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
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",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"preset": "expo-module-scripts"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"expo-json-utils": "~0.
|
|
38
|
-
"@expo/config": "~8.
|
|
37
|
+
"expo-json-utils": "~0.11.0",
|
|
38
|
+
"@expo/config": "~8.4.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"expo-module-scripts": "^3.0.0"
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"expo": "*"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "da25937e2a99661cbe5eb60ca1d8d6245fc96a50"
|
|
47
47
|
}
|