Add no-op folder
diff --git a/packages/path_provider/path_provider/macos/path_provider.podspec b/packages/path_provider/path_provider/macos/path_provider.podspec
new file mode 100644
index 0000000..9f3f01f
--- /dev/null
+++ b/packages/path_provider/path_provider/macos/path_provider.podspec
@@ -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' => 'flutter-dev@googlegroups.com' }
+  s.source           = { :path => '.' }
+  s.source_files = 'Classes/**/*'
+  s.public_header_files = 'Classes/**/*.h'
+
+  s.platform = :osx
+  s.osx.deployment_target = '10.11'
+end
+