Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
[file_selector] Endorse ios and update examples (#6320)
Browse files Browse the repository at this point in the history
* Endorse ios and update examples

* [gh_actions]: Bump lewagon/wait-on-check-action from 1.1.1 to 1.1.2 (#6300)

* [gh_actions]: Bump github/codeql-action from 2.1.18 to 2.1.19 (#6299)

* [gh_actions]: Bump ossf/scorecard-action from 1.1.1 to 1.1.2 (#6071)

* Roll Flutter from abfba69 to 6d3f782 (74 revisions) (#6314)

* [gh_actions]: Bump actions/labeler from 4.0.0 to 4.0.1 (#6262)

* Roll Flutter from 6d3f782 to 000b96c (13 revisions) (#6317)

* Adds info about commands requiring Flutter-bundled dart (#6312)

* [tools] Validate code excerpt configuration (#6286)

* temp lower ios version number

* Update README supported table

* remove unused routes

* lower version num

* iOS vs ios

* todo

* don't ignore ios

* add ios files

* add license block

* fix Uint8 error

* relocate import

* Exclude ios integration test for file_selector

* fix requests

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: engine-flutter-autoroll <engine-flutter-autoroll@skia.org>
Co-authored-by: stuartmorgan <stuartmorgan@google.com>
Co-authored-by: Tarrin Neal <tarrinneal@google.com>
  • Loading branch information
5 people committed Aug 29, 2022
1 parent c8fcad4 commit c08e447
Show file tree
Hide file tree
Showing 50 changed files with 1,004 additions and 38 deletions.
4 changes: 4 additions & 0 deletions packages/file_selector/file_selector/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.9.2

* Adds an endorsed iOS implementation.

## 0.9.1

* Adds an endorsed Linux implementation.
Expand Down
6 changes: 3 additions & 3 deletions packages/file_selector/file_selector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

A Flutter plugin that manages files and interactions with file dialogs.

| | Linux | macOS | Web | Windows |
|-------------|-------|--------|-----|-------------|
| **Support** | Any | 10.11+ | Any | Windows 10+ |
| | iOS | Linux | macOS | Web | Windows |
|-------------|--------|-------|--------|-----|-------------|
| **Support** | iOS 9+ | Any | 10.11+ | Any | Windows 10+ |

## Usage
To use this plugin, add `file_selector` as a [dependency in your pubspec.yaml file](https://flutter.dev/platform-plugins/).
Expand Down
4 changes: 0 additions & 4 deletions packages/file_selector/file_selector/example/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,5 @@ app.*.symbols
# Obfuscation related
app.*.map.json

# Currently only web supported
android/
ios/

# Exceptions to above rules.
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
34 changes: 34 additions & 0 deletions packages/file_selector/file_selector/example/ios/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
**/dgph
*.mode1v3
*.mode2v3
*.moved-aside
*.pbxuser
*.perspectivev3
**/*sync/
.sconsign.dblite
.tags*
**/.vagrant/
**/DerivedData/
Icon?
**/Pods/
**/.symlinks/
profile
xcuserdata
**/.generated/
Flutter/App.framework
Flutter/Flutter.framework
Flutter/Flutter.podspec
Flutter/Generated.xcconfig
Flutter/ephemeral/
Flutter/app.flx
Flutter/app.zip
Flutter/flutter_assets/
Flutter/flutter_export_environment.sh
ServiceDefinitions.json
Runner/GeneratedPluginRegistrant.*

# Exceptions to above rules.
!default.mode1v3
!default.mode2v3
!default.pbxuser
!default.perspectivev3
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>App</string>
<key>CFBundleIdentifier</key>
<string>io.flutter.flutter.app</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>App</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>11.0</string>
</dict>
</plist>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#include "Generated.xcconfig"
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#include "Generated.xcconfig"
Loading

0 comments on commit c08e447

Please sign in to comment.