expo-dev-menu 0.9.2 → 0.9.3

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
@@ -10,6 +10,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 0.9.3 — 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
+
13
19
  ## 0.9.2 — 2022-01-18
14
20
 
15
21
  _This version does not introduce any user-facing changes._
@@ -4,10 +4,10 @@ import java.util.regex.Pattern
4
4
 
5
5
  apply plugin: 'com.android.library'
6
6
  apply plugin: 'kotlin-android'
7
- apply plugin: 'maven'
7
+ apply plugin: 'maven-publish'
8
8
 
9
9
  group = 'host.exp.exponent'
10
- version = '0.9.2'
10
+ version = '0.9.3'
11
11
 
12
12
  // reanimated v2
13
13
  def reactNativeFilePath = ["node", "--print", "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim()
@@ -146,27 +146,25 @@ buildscript {
146
146
  }
147
147
  }
148
148
 
149
- // Upload android library to maven with javadoc and android sources
150
- configurations {
151
- deployerJars
152
- }
153
-
154
149
  // Creating sources with comments
155
150
  task androidSourcesJar(type: Jar) {
156
151
  classifier = 'sources'
157
152
  from android.sourceSets.main.java.srcDirs
158
153
  }
159
154
 
160
- // Put the androidSources and javadoc to the artifacts
161
- artifacts {
162
- archives androidSourcesJar
163
- }
164
-
165
- uploadArchives {
166
- repositories {
167
- mavenDeployer {
168
- configuration = configurations.deployerJars
169
- repository(url: mavenLocal().url)
155
+ afterEvaluate {
156
+ publishing {
157
+ publications {
158
+ release(MavenPublication) {
159
+ from components.release
160
+ // Add additional sourcesJar to artifacts
161
+ artifact(androidSourcesJar)
162
+ }
163
+ }
164
+ repositories {
165
+ maven {
166
+ url = mavenLocal().url
167
+ }
170
168
  }
171
169
  }
172
170
  }
@@ -183,7 +181,7 @@ android {
183
181
  minSdkVersion safeExtGet("minSdkVersion", 21)
184
182
  targetSdkVersion safeExtGet("targetSdkVersion", 30)
185
183
  versionCode 10
186
- versionName '0.9.2'
184
+ versionName '0.9.3'
187
185
  }
188
186
  lintOptions {
189
187
  abortOnError false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-dev-menu",
3
- "version": "0.9.2",
3
+ "version": "0.9.3",
4
4
  "description": "Expo/React Native module with the developer menu.",
5
5
  "main": "build/DevMenu.js",
6
6
  "types": "build/DevMenu.d.ts",
@@ -42,7 +42,7 @@
42
42
  },
43
43
  "dependencies": {
44
44
  "@expo/config-plugins": "^4.0.14",
45
- "expo-dev-menu-interface": "0.5.2"
45
+ "expo-dev-menu-interface": "0.5.3"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@apollo/client": "^3.4.10",
@@ -62,5 +62,5 @@
62
62
  "peerDependencies": {
63
63
  "expo": "*"
64
64
  },
65
- "gitHead": "7add72f8da01964733755ebc94a1963827e428a0"
65
+ "gitHead": "c689b0c8a14445397ca5f9febdd99b5949e03f9b"
66
66
  }