Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
807fbb4
Add dart file
franciscojma86 Feb 20, 2020
4748861
Rename file
franciscojma86 Feb 20, 2020
c40e813
add interface, rename files, add methods to class
franciscojma86 Feb 20, 2020
b049781
Add to method channel, not done
franciscojma86 Feb 20, 2020
7543c0c
Add dart file
franciscojma86 Feb 20, 2020
d4f1ba5
Rename file
franciscojma86 Feb 20, 2020
02b038a
Adds method channel test
franciscojma86 Feb 25, 2020
678dd5d
Remove prints
franciscojma86 Feb 25, 2020
d88af02
Fix imports and version
franciscojma86 Feb 25, 2020
70cffb0
Format and commentas
franciscojma86 Feb 25, 2020
9085967
Space
franciscojma86 Feb 25, 2020
290e166
Rename apis to path and provide only the string from the platform
franciscojma86 Feb 25, 2020
fcd271d
Add test and remove null
franciscojma86 Feb 25, 2020
0d7dbbd
Format
franciscojma86 Feb 25, 2020
8d9219a
Add export
franciscojma86 Feb 25, 2020
ee5bebb
Add imports
franciscojma86 Feb 25, 2020
2b1bbd9
Completed apis
franciscojma86 Feb 25, 2020
ea5904c
Fix and works
franciscojma86 Feb 25, 2020
689ac16
Improve tests
franciscojma86 Feb 26, 2020
7f7d351
Remove asyncs
franciscojma86 Feb 26, 2020
cdb863a
Add imports
franciscojma86 Feb 25, 2020
83fe162
Completed apis
franciscojma86 Feb 25, 2020
42cfa09
Fix and works
franciscojma86 Feb 25, 2020
90de093
Update version
franciscojma86 Feb 26, 2020
cdec1cb
Finish test
franciscojma86 Feb 26, 2020
1a22d7f
Merge branch 'path-implement' of github.com:franciscojma86/plugins in…
franciscojma86 Feb 26, 2020
c4e5c2e
Merge branch 'master' into path-implement
franciscojma86 Feb 26, 2020
d5355ad
Make results per test
franciscojma86 Feb 26, 2020
5550c74
Fix
franciscojma86 Feb 26, 2020
e544828
Add dependency
franciscojma86 Feb 26, 2020
6eba5a6
Merge branch 'master' into path-implement
franciscojma86 Feb 27, 2020
3098362
Fix typo nad enum
franciscojma86 Feb 28, 2020
c482f3c
Merge branch 'master' into path-implement
franciscojma86 Feb 28, 2020
d0afe4d
Change interface version
franciscojma86 Feb 28, 2020
effd3b4
Endorse
franciscojma86 Feb 28, 2020
f939f85
Update version
franciscojma86 Feb 28, 2020
e256c72
Add no-op folder
franciscojma86 Feb 28, 2020
d03024e
Merge branch 'master' into path-endorse
franciscojma86 Mar 2, 2020
074b8d4
Missing files
franciscojma86 Mar 2, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/path_provider/path_provider/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.6.4

* Endorsed macOS implementation.

## 1.6.3

* Use `path_provider_platform_interface` in core plugin.
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions packages/path_provider/path_provider/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ dependencies:
sdk: flutter
path_provider:
path: ../
path_provider_macos:
path: ../../path_provider_macos

dev_dependencies:
e2e: ^0.2.1
Expand Down
22 changes: 22 additions & 0 deletions packages/path_provider/path_provider/macos/path_provider.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'path_provider'
s.version = '0.0.1'
s.summary = 'No-op implementation of the macos path_provider to avoid build issues on macos'
s.description = <<-DESC
No-op implementation of the path_provider plugin to avoid build issues on macos.
https://github.com/flutter/flutter/issues/46618
DESC
s.homepage = 'https://github.com/flutter/plugins/tree/master/packages/path_provider'
s.license = { :file => '../LICENSE' }
s.author = { 'Flutter Team' => '[email protected]' }
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'

s.platform = :osx
s.osx.deployment_target = '10.11'
end

7 changes: 6 additions & 1 deletion packages/path_provider/path_provider/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: path_provider
description: Flutter plugin for getting commonly used locations on the Android &
iOS file systems, such as the temp and app data directories.
homepage: https://github.com/flutter/plugins/tree/master/packages/path_provider/path_provider
version: 1.6.3
version: 1.6.4

flutter:
plugin:
Expand All @@ -12,11 +12,16 @@ flutter:
pluginClass: PathProviderPlugin
ios:
pluginClass: FLTPathProviderPlugin
macos:
pluginClass: FLTPathProviderPlugin
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do we need the plugin class here?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we don't #2569

default_package: path_provider_macos


dependencies:
flutter:
sdk: flutter
path_provider_platform_interface: ^1.0.1
path_provider_macos: ^0.0.4

dev_dependencies:
e2e: ^0.2.1
Expand Down