Skip to content

Commit f52d5fc

Browse files
committed
fix(darwin): Privacy manifests not bundled.
1 parent dee6ea8 commit f52d5fc

File tree

7 files changed

+47
-28
lines changed

7 files changed

+47
-28
lines changed

record/example/ios/Podfile.lock

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ PODS:
77
- FlutterMacOS
88
- record_darwin (1.0.0):
99
- Flutter
10-
- FlutterMacOS
1110

1211
DEPENDENCIES:
1312
- audioplayers_darwin (from `.symlinks/plugins/audioplayers_darwin/ios`)
@@ -29,7 +28,7 @@ SPEC CHECKSUMS:
2928
audioplayers_darwin: 877d9a4d06331c5c374595e46e16453ac7eafa40
3029
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
3130
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
32-
record_darwin: df0a677188e5fed18472550298e675f19ddaffbe
31+
record_darwin: 3b1a8e7d5c0cbf45ad6165b4d83a6ca643d929c3
3332

3433
PODFILE CHECKSUM: 4e8f8b2be68aeea4c0d5beb6ff1e79fface1d048
3534

record/example/macos/Podfile.lock

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ PODS:
66
- Flutter
77
- FlutterMacOS
88
- record_darwin (1.0.0):
9-
- Flutter
109
- FlutterMacOS
1110

1211
DEPENDENCIES:
@@ -29,7 +28,7 @@ SPEC CHECKSUMS:
2928
audioplayers_darwin: dcad41de4fbd0099cb3749f7ab3b0cb8f70b810c
3029
FlutterMacOS: 8f6f14fa908a6fb3fba0cd85dbd81ec4b251fb24
3130
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
32-
record_darwin: df0a677188e5fed18472550298e675f19ddaffbe
31+
record_darwin: a0d515a0ef78c440c123ea3ac76184c9927a94d6
3332

3433
PODFILE CHECKSUM: 0d3963a09fc94f580682bd88480486da345dc3f0
3534

record_darwin/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.2.2
2+
* fix(macOS): Compilation issue.
3+
* fix(darwin): Privacy manifests not bundled.
4+
15
## 1.2.1
26
* Reuploaded package with correct repository config.
37

record_darwin/darwin/record_darwin.podspec

Lines changed: 0 additions & 21 deletions
This file was deleted.

record_darwin/ios/record_darwin.podspec

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'record_darwin'
3+
s.version = '1.0.0'
4+
s.summary = 'record package for iOS implementation'
5+
s.description = <<-DESC
6+
A Flutter plugin for voice recording.
7+
DESC
8+
s.homepage = 'https://github.com/llfbandit/record/tree/master/record_darwin'
9+
s.license = { :file => '../LICENSE' }
10+
s.author = { 'llfbandit' => '[email protected]' }
11+
s.source = { :http => 'https://github.com/llfbandit/record/tree/master/record_darwin' }
12+
s.documentation_url = 'https://pub.dev/packages/record_darwin'
13+
s.source_files = 'Classes/**/*'
14+
s.public_header_files = 'Classes/**/*.h'
15+
s.swift_version = '5.0'
16+
s.dependency 'Flutter'
17+
s.ios.deployment_target = '11.0'
18+
s.resource_bundles = {'record_darwin_privacy' => ['Resources/PrivacyInfo.xcprivacy']}
19+
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
20+
end

record_darwin/macos/record_darwin.podspec

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'record_darwin'
3+
s.version = '1.0.0'
4+
s.summary = 'record package for macOS implementation'
5+
s.description = <<-DESC
6+
A Flutter plugin for voice recording.
7+
DESC
8+
s.homepage = 'https://github.com/llfbandit/record/tree/master/record_darwin'
9+
s.license = { :file => '../LICENSE' }
10+
s.author = { 'llfbandit' => '[email protected]' }
11+
s.source = { :http => 'https://github.com/llfbandit/record/tree/master/record_darwin' }
12+
s.documentation_url = 'https://pub.dev/packages/record_darwin'
13+
s.source_files = 'Classes/**/*'
14+
s.public_header_files = 'Classes/**/*.h'
15+
s.swift_version = '5.0'
16+
s.dependency 'FlutterMacOS'
17+
s.osx.deployment_target = '10.15'
18+
s.resource_bundles = {'record_darwin_privacy' => ['Resources/PrivacyInfo.xcprivacy']}
19+
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
20+
end

record_darwin/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: record_darwin
22
description: iOS and macOS implementations for record package called by record_platform_interface.
3-
version: 1.2.1
3+
version: 1.2.2
44
homepage: https://github.com/llfbandit/record/tree/master/record_darwin
55

66
environment:

0 commit comments

Comments
 (0)