expo-web-browser 10.1.0 → 10.1.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 CHANGED
@@ -10,6 +10,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 10.1.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
+
13
19
  ## 10.1.0 — 2021-12-03
14
20
 
15
21
  _This version does not introduce any user-facing changes._
@@ -1,9 +1,9 @@
1
1
  apply plugin: 'com.android.library'
2
2
  apply plugin: 'kotlin-android'
3
- apply plugin: 'maven'
3
+ apply plugin: 'maven-publish'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '10.1.0'
6
+ version = '10.1.1'
7
7
 
8
8
 
9
9
  buildscript {
@@ -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
- // Put the androidSources and javadoc to the artifacts
36
- artifacts {
37
- archives androidSourcesJar
38
- }
39
-
40
- uploadArchives {
41
- repositories {
42
- mavenDeployer {
43
- configuration = configurations.deployerJars
44
- repository(url: mavenLocal().url)
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
  }
@@ -58,7 +56,7 @@ android {
58
56
  minSdkVersion safeExtGet("minSdkVersion", 21)
59
57
  targetSdkVersion safeExtGet("targetSdkVersion", 30)
60
58
  versionCode 18
61
- versionName '10.1.0'
59
+ versionName '10.1.1'
62
60
  }
63
61
  lintOptions {
64
62
  abortOnError false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-web-browser",
3
- "version": "10.1.0",
3
+ "version": "10.1.1",
4
4
  "description": "Provides access to the system's web browser and supports handling redirects. On iOS, it uses SFSafariViewController or SFAuthenticationSession, depending on the method you call, and on Android it uses ChromeCustomTabs. As of iOS 11, SFSafariViewController no longer shares cookies with Safari, so if you are using WebBrowser for authentication you will want to use WebBrowser.openAuthSessionAsync, and if you just want to open a webpage (such as your app privacy policy), then use WebBrowser.openBrowserAsync.",
5
5
  "main": "build/WebBrowser.js",
6
6
  "types": "build/WebBrowser.d.ts",
@@ -44,5 +44,5 @@
44
44
  "peerDependencies": {
45
45
  "expo": "*"
46
46
  },
47
- "gitHead": "4ac89934e2acc4ef1fad59f338d9019fe2d92240"
47
+ "gitHead": "ba24eba18bf4f4d4b0d54828992d81a2bb18246a"
48
48
  }