Showing
1 changed file
with
22 additions
and
1 deletions
... | @@ -13,7 +13,7 @@ Pod::Spec.new do |spec| | ... | @@ -13,7 +13,7 @@ Pod::Spec.new do |spec| |
13 | # :file => 'WarplySDKFrameworkIOS/LICENSE.txt' | 13 | # :file => 'WarplySDKFrameworkIOS/LICENSE.txt' |
14 | } | 14 | } |
15 | 15 | ||
16 | - spec.author = { "billy" => "skourasbl@gmail.com" } | 16 | + spec.author = { "Warply" => "info@warp.ly" } |
17 | 17 | ||
18 | spec.platform = :ios, "17.0" | 18 | spec.platform = :ios, "17.0" |
19 | 19 | ||
... | @@ -30,7 +30,28 @@ Pod::Spec.new do |spec| | ... | @@ -30,7 +30,28 @@ Pod::Spec.new do |spec| |
30 | spec.dependency 'SwiftEventBus' | 30 | spec.dependency 'SwiftEventBus' |
31 | 31 | ||
32 | # spec.resource_bundles = { 'ResourcesBundle' => ['SwiftWarplyFramework/**/*.{png,jpeg,jpg,storyboard,xib,xcassets,json,ttf,imageset,strings}'] } | 32 | # spec.resource_bundles = { 'ResourcesBundle' => ['SwiftWarplyFramework/**/*.{png,jpeg,jpg,storyboard,xib,xcassets,json,ttf,imageset,strings}'] } |
33 | + | ||
34 | + # ==> UNCOMMENT | ||
33 | spec.resource_bundles = { 'ResourcesBundle' => ['SwiftWarplyFramework/**/*.{storyboard,xib,otf,ttf,xcassets}'] } | 35 | spec.resource_bundles = { 'ResourcesBundle' => ['SwiftWarplyFramework/**/*.{storyboard,xib,otf,ttf,xcassets}'] } |
36 | + # <== | ||
37 | + | ||
38 | + # ==> TEST | ||
39 | + spec.resources = 'SwiftWarplyFramework/**/*.{storyboard,xib,otf,ttf,xcassets}' | ||
40 | + | ||
41 | + # Add explicit Swift version | ||
42 | + spec.swift_version = '5.0' | ||
43 | + | ||
44 | + # Add explicit deployment target | ||
45 | + spec.ios.deployment_target = '17.0' | ||
46 | + | ||
47 | + # Add explicit build settings | ||
48 | + spec.pod_target_xcconfig = { | ||
49 | + 'ENABLE_USER_SCRIPT_SANDBOXING' => 'NO', | ||
50 | + 'EXPANDED_CODE_SIGN_IDENTITY' => '', | ||
51 | + 'CODE_SIGNING_REQUIRED' => 'NO', | ||
52 | + 'CODE_SIGNING_ALLOWED' => 'NO' | ||
53 | + } | ||
54 | + # <== TEST | ||
34 | 55 | ||
35 | # spec.resources = ['SwiftWarplyFramework/SwiftWarplyFramework/Media/*.{xcassets}', 'SwiftWarplyFramework/SwiftWarplyFramework/Media/*.xib'] | 56 | # spec.resources = ['SwiftWarplyFramework/SwiftWarplyFramework/Media/*.{xcassets}', 'SwiftWarplyFramework/SwiftWarplyFramework/Media/*.xib'] |
36 | # spec.resources = "SwiftWarplyFramework/**/*.xcassets" | 57 | # spec.resources = "SwiftWarplyFramework/**/*.xcassets" | ... | ... |
-
Please register or login to post a comment