expo-document-picker 12.0.1 → 12.0.2

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
+ ## 12.0.2 — 2024-06-13
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - [iOS] Fix `video/*` MIME Type not allowing to select videos with audio. ([#29673](https://github.com/expo/expo/pull/29673) by [@gabrieldonadel](https://github.com/gabrieldonadel))
18
+
13
19
  ## 12.0.1 — 2024-04-23
14
20
 
15
21
  _This version does not introduce any user-facing changes._
@@ -1,7 +1,7 @@
1
1
  apply plugin: 'com.android.library'
2
2
 
3
3
  group = 'host.exp.exponent'
4
- version = '12.0.1'
4
+ version = '12.0.2'
5
5
 
6
6
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
7
7
  apply from: expoModulesCorePlugin
@@ -14,7 +14,7 @@ android {
14
14
  namespace "expo.modules.documentpicker"
15
15
  defaultConfig {
16
16
  versionCode 17
17
- versionName '12.0.1'
17
+ versionName '12.0.2'
18
18
  }
19
19
  }
20
20
 
@@ -164,7 +164,7 @@ public class DocumentPickerModule: Module, PickingResultHandler {
164
164
  case "image/*":
165
165
  return UTType.image
166
166
  case "video/*":
167
- return UTType.video
167
+ return UTType.movie
168
168
  case "audio/*":
169
169
  return UTType.audio
170
170
  case "text/*":
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-document-picker",
3
- "version": "12.0.1",
3
+ "version": "12.0.2",
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",
@@ -40,5 +40,5 @@
40
40
  "peerDependencies": {
41
41
  "expo": "*"
42
42
  },
43
- "gitHead": "ee4f30ef3b5fa567ad1bf94794197f7683fdd481"
43
+ "gitHead": "6f609a05a2d4dac7fd281bcc502575440c5af7c9"
44
44
  }