expo-dev-menu-interface 1.4.0 → 1.6.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/android/build.gradle
CHANGED
|
@@ -3,15 +3,15 @@ apply plugin: 'kotlin-android'
|
|
|
3
3
|
apply plugin: 'maven-publish'
|
|
4
4
|
|
|
5
5
|
group = 'host.exp.exponent'
|
|
6
|
-
version = '1.
|
|
6
|
+
version = '1.6.0'
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
}
|
|
8
|
+
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
9
|
+
if (expoModulesCorePlugin.exists()) {
|
|
10
|
+
apply from: expoModulesCorePlugin
|
|
11
|
+
applyKotlinExpoModulesCorePlugin()
|
|
12
|
+
}
|
|
14
13
|
|
|
14
|
+
buildscript {
|
|
15
15
|
// Simple helper that allows the root project to override versions declared by this library.
|
|
16
16
|
ext.safeExtGet = { prop, fallback ->
|
|
17
17
|
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
|
|
@@ -51,7 +51,19 @@ afterEvaluate {
|
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
android {
|
|
54
|
-
|
|
54
|
+
// Remove this if and it's contents, when support for SDK49 is dropped
|
|
55
|
+
if (!safeExtGet("expoProvidesDefaultConfig", false)) {
|
|
56
|
+
compileSdkVersion safeExtGet("compileSdkVersion", 34)
|
|
57
|
+
|
|
58
|
+
defaultConfig {
|
|
59
|
+
minSdkVersion safeExtGet("minSdkVersion", 23)
|
|
60
|
+
targetSdkVersion safeExtGet("targetSdkVersion", 34)
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
lintOptions {
|
|
64
|
+
abortOnError false
|
|
65
|
+
}
|
|
66
|
+
}
|
|
55
67
|
|
|
56
68
|
def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION
|
|
57
69
|
if (agpVersion.tokenize('.')[0].toInteger() < 8) {
|
|
@@ -67,13 +79,8 @@ android {
|
|
|
67
79
|
|
|
68
80
|
namespace "expo.interfaces.devmenu"
|
|
69
81
|
defaultConfig {
|
|
70
|
-
minSdkVersion safeExtGet("minSdkVersion", 21)
|
|
71
|
-
targetSdkVersion safeExtGet("targetSdkVersion", 33)
|
|
72
82
|
versionCode 6
|
|
73
|
-
versionName '1.
|
|
74
|
-
}
|
|
75
|
-
lintOptions {
|
|
76
|
-
abortOnError false
|
|
83
|
+
versionName '1.6.0'
|
|
77
84
|
}
|
|
78
85
|
publishing {
|
|
79
86
|
singleVariant("release") {
|
|
@@ -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.platform = :ios, '13.
|
|
13
|
+
s.platform = :ios, '13.4'
|
|
14
14
|
s.swift_version = '5.2'
|
|
15
15
|
s.source = { git: 'https://github.com/expo/expo.git' }
|
|
16
16
|
s.static_framework = true
|
|
@@ -28,7 +28,7 @@ Pod::Spec.new do |s|
|
|
|
28
28
|
s.pod_target_xcconfig = { "DEFINES_MODULE" => "YES" }
|
|
29
29
|
|
|
30
30
|
s.test_spec 'Tests' do |test_spec|
|
|
31
|
-
test_spec.platform = :ios, '13.
|
|
31
|
+
test_spec.platform = :ios, '13.4'
|
|
32
32
|
test_spec.source_files = 'Tests/**/*.{h,m,swift}'
|
|
33
33
|
test_spec.dependency 'Quick'
|
|
34
34
|
test_spec.dependency 'Nimble'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-dev-menu-interface",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "Interface for expo-dev-menu",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"keywords": [
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"expo": "*"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "3142a086578deffd8704a8f1b6f0f661527d836c"
|
|
29
29
|
}
|