expo-document-picker 13.0.4-canary-20250320-7a205d3 → 13.0.4-canary-20250402-161f57b

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
@@ -14,6 +14,7 @@
14
14
  - [apple] Migrate remaining `expo-module.config.json` to unified platform syntax. ([#34445](https://github.com/expo/expo/pull/34445) by [@reichhartd](https://github.com/reichhartd))
15
15
  - [web] Add option to disable file reader to read base64 from file on successfull picking. ([#34739](https://github.com/expo/expo/pull/34739) by [@danilaplee](https://github.com/danilaplee))
16
16
  - [iOS] Fix warnings which will become errors in Swift 6. ([#35288](https://github.com/expo/expo/pull/35288) by [@behenate](https://github.com/behenate))
17
+ - [Android] Specified Gradle project version. ([#35751](https://github.com/expo/expo/pull/35751) by [@lukmccall](https://github.com/lukmccall))
17
18
 
18
19
  ## 13.0.3 - 2025-02-07
19
20
 
@@ -3,13 +3,14 @@ plugins {
3
3
  id 'expo-module-gradle-plugin'
4
4
  }
5
5
 
6
- group = 'host.exp.exponent'
6
+ group = "host.exp.exponent"
7
+ version = "13.0.4-canary-20250402-161f57b"
7
8
 
8
9
  android {
9
10
  namespace "expo.modules.documentpicker"
10
11
  defaultConfig {
11
12
  versionCode 17
12
- versionName '13.0.1'
13
+ versionName '13.0.4-canary-20250402-161f57b'
13
14
  }
14
15
  }
15
16
 
@@ -4,6 +4,12 @@
4
4
  "modules": ["DocumentPickerModule"]
5
5
  },
6
6
  "android": {
7
- "modules": ["expo.modules.documentpicker.DocumentPickerModule"]
7
+ "modules": ["expo.modules.documentpicker.DocumentPickerModule"],
8
+ "publication": {
9
+ "groupId": "host.exp.exponent",
10
+ "artifactId": "expo.modules.documentpicker",
11
+ "version": "13.0.4-canary-20250402-161f57b",
12
+ "repository": "https://maven.pkg.github.com/expo/expo"
13
+ }
8
14
  }
9
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-document-picker",
3
- "version": "13.0.4-canary-20250320-7a205d3",
3
+ "version": "13.0.4-canary-20250402-161f57b",
4
4
  "description": "Provides access to the system's UI for selecting documents from the available providers on the user's device.",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -35,9 +35,10 @@
35
35
  "preset": "expo-module-scripts"
36
36
  },
37
37
  "devDependencies": {
38
- "expo-module-scripts": "4.0.5-canary-20250320-7a205d3"
38
+ "expo-module-scripts": "4.0.5-canary-20250402-161f57b"
39
39
  },
40
40
  "peerDependencies": {
41
- "expo": "53.0.0-canary-20250320-7a205d3"
42
- }
41
+ "expo": "53.0.0-canary-20250402-161f57b"
42
+ },
43
+ "gitHead": "161f57bb5f579c84f8fa0337ec596034e21760f6"
43
44
  }