Skip to content

Commit aaf9e94

Browse files
stuartmorgan-gEgor
authored andcommitted
[path_provider] Path provider windows updates (flutter#3049)
- Adds missing iOS podspec to path_provider_windows, which was necessary to publish it (since path_provider doesn't require 1.20+) - Requires path_provider_windows 0.0.2, not 0.0.1, in path_provider endorsement.
1 parent db706c0 commit aaf9e94

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

packages/path_provider/path_provider/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.6.16
2+
3+
* Update Windows endorsement verison
4+
15
## 1.6.15
26

37
* Endorse Windows implementation.

packages/path_provider/path_provider/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: path_provider
22
description: Flutter plugin for getting commonly used locations on host platform file systems, such as the temp and app data directories.
33
homepage: https://github.com/flutter/plugins/tree/master/packages/path_provider/path_provider
4-
version: 1.6.15
4+
version: 1.6.16
55

66
flutter:
77
plugin:
@@ -24,7 +24,7 @@ dependencies:
2424
path_provider_platform_interface: ^1.0.1
2525
path_provider_macos: ^0.0.4
2626
path_provider_linux: ^0.0.1
27-
path_provider_windows: ^0.0.1
27+
path_provider_windows: ^0.0.2
2828

2929
dev_dependencies:
3030
integration_test:
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#
2+
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
3+
# Run `pod lib lint path_provider_windows.podspec' to validate before publishing.
4+
#
5+
Pod::Spec.new do |s|
6+
s.name = 'path_provider_windows'
7+
s.version = '0.0.1'
8+
s.summary = 'path_provider_windows iOS stub'
9+
s.description = <<-DESC
10+
No-op implementation of the windows path_provider plugin to avoid build issues on iOS
11+
DESC
12+
s.homepage = 'https://github.com/flutter/plugins'
13+
s.license = { :type => 'BSD', :file => '../LICENSE' }
14+
s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' }
15+
s.source = { :http => 'https://github.com/flutter/plugins/tree/master/packages/path_provider/path_provider_windows' }
16+
s.dependency 'Flutter'
17+
s.platform = :ios, '8.0'
18+
19+
# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
20+
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
21+
s.swift_version = '5.0'
22+
end

0 commit comments

Comments
 (0)