File tree Expand file tree Collapse file tree 16 files changed +85
-2
lines changed
.swiftpm/xcode/package.xcworkspace Expand file tree Collapse file tree 16 files changed +85
-2
lines changed Original file line number Diff line number Diff line change 484
484
MODULE_NAME = ExampleApp;
485
485
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)";
486
486
PRODUCT_NAME = "$(TARGET_NAME)";
487
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
488
+ SUPPORTS_MACCATALYST = NO;
489
+ SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES;
487
490
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
488
491
SWIFT_VERSION = 4.0;
492
+ TARGETED_DEVICE_FAMILY = "1,2";
489
493
};
490
494
name = Debug;
491
495
};
500
504
MODULE_NAME = ExampleApp;
501
505
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)";
502
506
PRODUCT_NAME = "$(TARGET_NAME)";
507
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
508
+ SUPPORTS_MACCATALYST = NO;
509
+ SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES;
503
510
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
504
511
SWIFT_VERSION = 4.0;
512
+ TARGETED_DEVICE_FAMILY = "1,2";
505
513
};
506
514
name = Release;
507
515
};
Original file line number Diff line number Diff line change 32
32
</array >
33
33
<key >UISupportedInterfaceOrientations </key >
34
34
<array >
35
+ <string >UIInterfaceOrientationLandscapeLeft </string >
35
36
<string >UIInterfaceOrientationPortrait </string >
37
+ </array >
38
+ <key >UISupportedInterfaceOrientations~ipad </key >
39
+ <array >
36
40
<string >UIInterfaceOrientationLandscapeLeft </string >
41
+ <string >UIInterfaceOrientationLandscapeRight </string >
42
+ <string >UIInterfaceOrientationPortrait </string >
43
+ <string >UIInterfaceOrientationPortraitUpsideDown </string >
37
44
</array >
38
45
</dict >
39
46
</plist >
Original file line number Diff line number Diff line change
1
+ // swift-tools-version: 5.6
2
+ // The swift-tools-version declares the minimum version of Swift required to build this package.
3
+
4
+ import PackageDescription
5
+
6
+ let package = Package (
7
+ name: " SSCustomSideMenu " ,
8
+ platforms: [ . iOS( . v13) ] ,
9
+ products: [
10
+ // Products define the executables and libraries a package produces, and make them visible to other packages.
11
+ . library(
12
+ name: " SSCustomSideMenu " ,
13
+ targets: [ " SSCustomSideMenu " ] ) ,
14
+ ] ,
15
+ dependencies: [
16
+ // Dependencies declare other packages that this package depends on.
17
+ // .package(url: /* package url */, from: "1.0.0"),
18
+ ] ,
19
+ targets: [
20
+ // Targets are the basic building blocks of a package. A target can define a module or a test suite.
21
+ // Targets can depend on other targets in this package, and on products in packages this package depends on.
22
+ . target(
23
+ name: " SSCustomSideMenu " ,
24
+ dependencies: [ ] )
25
+ ]
26
+ )
Original file line number Diff line number Diff line change 8
8
9
9
Pod ::Spec . new do |s |
10
10
s . name = 'SSCustomSideMenu'
11
- s . version = '0.1.1 '
11
+ s . version = '1.0.0 '
12
12
s . summary = 'Custom Side menu control'
13
13
14
14
# This description is used to generate tags and improve search results.
@@ -31,7 +31,7 @@ Pod::Spec.new do |s|
31
31
s . ios . deployment_target = '11.0'
32
32
s . swift_versions = '5.0'
33
33
34
- s . source_files = 'SSCustomSideMenu/Classes/**/*'
34
+ s . source_files = 'Sources/ SSCustomSideMenu/Classes/**/*'
35
35
36
36
# s.resource_bundles = {
37
37
# 'SSCustomSideMenu' => ['SSCustomSideMenu/Assets/*.png']
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments