Skip to content

Commit 2dfd5a8

Browse files
committed
Support for macOS, watchOS and tvOS
1 parent c84edb0 commit 2dfd5a8

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

DZAUnsafeMutableArray.podspec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'DZAUnsafeMutableArray'
3-
s.version = '0.2.0'
3+
s.version = '0.2.1'
44
s.summary = 'An Objective-C wrapper around a c auto-growing pointer array.'
55

66
s.description = <<-DESC
@@ -17,6 +17,9 @@ With this wrapper library, we can easily create and manupulate the c pointer arr
1717
s.social_media_url = 'https://twitter.com/dzamir'
1818

1919
s.ios.deployment_target = '8.0'
20+
s.osx.deployment_target = '10.10'
21+
s.watchos.deployment_target = '2.0'
22+
s.tvos.deployment_target = '9.0'
2023

2124
s.source_files = 'DZAUnsafeMutableArray/Classes/**/*'
2225
end

Example/DZAUnsafeMutableArray.xcodeproj/project.pbxproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
847430F67545EFCAC99EF668 /* Pods_DZAUnsafeMutableArray_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E664D84D439F9C98869629AF /* Pods_DZAUnsafeMutableArray_Example.framework */; };
2626
873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; };
2727
9022A9E71EFFB80C0096D4B1 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 9022A9E91EFFB80C0096D4B1 /* Localizable.strings */; };
28-
90BB5BF21F005E3F00499AA0 /* screen_1.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 90BB5BF01F005E3F00499AA0 /* screen_1.jpg */; };
29-
90BB5BF31F005E3F00499AA0 /* screen_2.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 90BB5BF11F005E3F00499AA0 /* screen_2.jpg */; };
28+
B31C4BBE1F023739000A262C /* screen_1.jpg in Resources */ = {isa = PBXBuildFile; fileRef = B31C4BBC1F023739000A262C /* screen_1.jpg */; };
29+
B31C4BBF1F023739000A262C /* screen_2.jpg in Resources */ = {isa = PBXBuildFile; fileRef = B31C4BBD1F023739000A262C /* screen_2.jpg */; };
3030
/* End PBXBuildFile section */
3131

3232
/* Begin PBXContainerItemProxy section */
@@ -69,9 +69,9 @@
6969
873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Main.storyboard; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
7070
9022A9E81EFFB80C0096D4B1 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
7171
9079BB78964C50859A43E725 /* Pods-DZAUnsafeMutableArray_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DZAUnsafeMutableArray_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-DZAUnsafeMutableArray_Example/Pods-DZAUnsafeMutableArray_Example.release.xcconfig"; sourceTree = "<group>"; };
72-
90BB5BF01F005E3F00499AA0 /* screen_1.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = screen_1.jpg; sourceTree = "<group>"; };
73-
90BB5BF11F005E3F00499AA0 /* screen_2.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = screen_2.jpg; sourceTree = "<group>"; };
7472
ACDF1DA251CF8260E106E8F3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
73+
B31C4BBC1F023739000A262C /* screen_1.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; name = screen_1.jpg; path = ../screen_1.jpg; sourceTree = "<group>"; };
74+
B31C4BBD1F023739000A262C /* screen_2.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; name = screen_2.jpg; path = ../screen_2.jpg; sourceTree = "<group>"; };
7575
E664D84D439F9C98869629AF /* Pods_DZAUnsafeMutableArray_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DZAUnsafeMutableArray_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
7676
/* End PBXFileReference section */
7777

@@ -199,8 +199,8 @@
199199
51D0C8514FE827B71EA1F670 /* DZAUnsafeMutableArray.podspec */,
200200
68B204BF65A2A1BC334C38B8 /* README.md */,
201201
ACDF1DA251CF8260E106E8F3 /* LICENSE */,
202-
90BB5BF01F005E3F00499AA0 /* screen_1.jpg */,
203-
90BB5BF11F005E3F00499AA0 /* screen_2.jpg */,
202+
B31C4BBC1F023739000A262C /* screen_1.jpg */,
203+
B31C4BBD1F023739000A262C /* screen_2.jpg */,
204204
);
205205
name = "Podspec Metadata";
206206
sourceTree = "<group>";
@@ -293,12 +293,12 @@
293293
buildActionMask = 2147483647;
294294
files = (
295295
9022A9E71EFFB80C0096D4B1 /* Localizable.strings in Resources */,
296-
90BB5BF21F005E3F00499AA0 /* screen_1.jpg in Resources */,
297296
873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */,
298297
71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */,
299-
90BB5BF31F005E3F00499AA0 /* screen_2.jpg in Resources */,
298+
B31C4BBE1F023739000A262C /* screen_1.jpg in Resources */,
300299
6003F5A9195388D20070C39A /* Images.xcassets in Resources */,
301300
6003F598195388D20070C39A /* InfoPlist.strings in Resources */,
301+
B31C4BBF1F023739000A262C /* screen_2.jpg in Resources */,
302302
);
303303
runOnlyForDeploymentPostprocessing = 0;
304304
};

0 commit comments

Comments
 (0)