expo-updates-interface 0.3.0 → 0.5.1
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 +23 -0
- package/android/build.gradle +21 -20
- package/ios/EXUpdatesInterface/noop-file.m +1 -0
- package/ios/EXUpdatesInterface.podspec +6 -1
- package/package.json +6 -2
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,29 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 0.5.1 — 2022-02-01
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- Fix `Plugin with id 'maven' not found` build error from Android Gradle 7. ([#16080](https://github.com/expo/expo/pull/16080) by [@kudo](https://github.com/kudo))
|
|
18
|
+
|
|
19
|
+
## 0.5.0 — 2021-12-03
|
|
20
|
+
|
|
21
|
+
_This version does not introduce any user-facing changes._
|
|
22
|
+
|
|
23
|
+
## 0.4.0 — 2021-09-28
|
|
24
|
+
|
|
25
|
+
### 🐛 Bug fixes
|
|
26
|
+
|
|
27
|
+
- Removed unnecessary gradle dependency on expo-modules-core. ([#14464](https://github.com/expo/expo/pull/14464) by [@esamelson](https://github.com/esamelson))
|
|
28
|
+
- Fix building errors from use_frameworks! in Podfile. ([#14523](https://github.com/expo/expo/pull/14523) by [@kudo](https://github.com/kudo))
|
|
29
|
+
|
|
30
|
+
## 0.3.1 — 2021-09-16
|
|
31
|
+
|
|
32
|
+
### 🛠 Breaking changes
|
|
33
|
+
|
|
34
|
+
- Dropped support for iOS 11.0 ([#14383](https://github.com/expo/expo/pull/14383) by [@cruzach](https://github.com/cruzach))
|
|
35
|
+
|
|
13
36
|
## 0.3.0 — 2021-09-09
|
|
14
37
|
|
|
15
38
|
_This version does not introduce any user-facing changes._
|
package/android/build.gradle
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
apply plugin: 'com.android.library'
|
|
2
2
|
apply plugin: 'kotlin-android'
|
|
3
3
|
apply plugin: 'kotlin-android-extensions'
|
|
4
|
-
apply plugin: 'maven'
|
|
4
|
+
apply plugin: 'maven-publish'
|
|
5
5
|
|
|
6
6
|
group = 'host.exp.exponent'
|
|
7
|
-
version = '0.
|
|
7
|
+
version = '0.5.1'
|
|
8
8
|
|
|
9
9
|
buildscript {
|
|
10
10
|
// Simple helper that allows the root project to override versions declared by this library.
|
|
@@ -21,27 +21,25 @@ buildscript {
|
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
-
// Upload android library to maven with javadoc and android sources
|
|
25
|
-
configurations {
|
|
26
|
-
deployerJars
|
|
27
|
-
}
|
|
28
|
-
|
|
29
24
|
// Creating sources with comments
|
|
30
25
|
task androidSourcesJar(type: Jar) {
|
|
31
26
|
classifier = 'sources'
|
|
32
27
|
from android.sourceSets.main.java.srcDirs
|
|
33
28
|
}
|
|
34
29
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
30
|
+
afterEvaluate {
|
|
31
|
+
publishing {
|
|
32
|
+
publications {
|
|
33
|
+
release(MavenPublication) {
|
|
34
|
+
from components.release
|
|
35
|
+
// Add additional sourcesJar to artifacts
|
|
36
|
+
artifact(androidSourcesJar)
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
repositories {
|
|
40
|
+
maven {
|
|
41
|
+
url = mavenLocal().url
|
|
42
|
+
}
|
|
45
43
|
}
|
|
46
44
|
}
|
|
47
45
|
}
|
|
@@ -49,11 +47,16 @@ uploadArchives {
|
|
|
49
47
|
android {
|
|
50
48
|
compileSdkVersion safeExtGet("compileSdkVersion", 29)
|
|
51
49
|
|
|
50
|
+
compileOptions {
|
|
51
|
+
sourceCompatibility JavaVersion.VERSION_1_8
|
|
52
|
+
targetCompatibility JavaVersion.VERSION_1_8
|
|
53
|
+
}
|
|
54
|
+
|
|
52
55
|
defaultConfig {
|
|
53
56
|
minSdkVersion safeExtGet("minSdkVersion", 21)
|
|
54
57
|
targetSdkVersion safeExtGet("targetSdkVersion", 28)
|
|
55
58
|
versionCode 1
|
|
56
|
-
versionName '0.
|
|
59
|
+
versionName '0.5.1'
|
|
57
60
|
}
|
|
58
61
|
lintOptions {
|
|
59
62
|
abortOnError false
|
|
@@ -65,7 +68,5 @@ repositories {
|
|
|
65
68
|
}
|
|
66
69
|
|
|
67
70
|
dependencies {
|
|
68
|
-
implementation project(':expo-modules-core')
|
|
69
|
-
|
|
70
71
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${safeExtGet("kotlinVersion", "1.3.50")}"
|
|
71
72
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// noop file for cocoapods to generated modulemap file
|
|
@@ -10,9 +10,14 @@ 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.platform = :ios, '
|
|
13
|
+
s.platform = :ios, '12.0'
|
|
14
14
|
s.source = { git: 'https://github.com/expo/expo.git' }
|
|
15
|
+
s.static_framework = true
|
|
15
16
|
s.source_files = 'EXUpdatesInterface/**/*.{h,m}'
|
|
16
17
|
s.preserve_paths = 'EXUpdatesInterface/**/*.{h,m}'
|
|
17
18
|
s.requires_arc = true
|
|
19
|
+
|
|
20
|
+
s.pod_target_xcconfig = {
|
|
21
|
+
'DEFINES_MODULE' => 'YES',
|
|
22
|
+
}
|
|
18
23
|
end
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-updates-interface",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Native interface for modules that optionally depend on expo-updates, e.g. expo-dev-launcher.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"keywords": [
|
|
@@ -19,5 +19,9 @@
|
|
|
19
19
|
"author": "650 Industries, Inc.",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"homepage": "https://docs.expo.dev/versions/latest/sdk/module-template",
|
|
22
|
-
"
|
|
22
|
+
"dependencies": {},
|
|
23
|
+
"peerDependencies": {
|
|
24
|
+
"expo": "*"
|
|
25
|
+
},
|
|
26
|
+
"gitHead": "ba24eba18bf4f4d4b0d54828992d81a2bb18246a"
|
|
23
27
|
}
|