shellboxCLI 0.1.15 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/ios/iosOption.rb +68 -45
- data/lib/ios/module/setup/ProjectManipulator.rb +3 -1
- data/lib/ios/module/setup/Template_Configurator.rb +7 -7
- data/lib/ios/module/setup/TuistCommands.rb +27 -0
- data/lib/ios/module/templates/Example/Example/Podfile +1 -4
- data/lib/ios/module/templates/Example/Example/Project.swift +67 -0
- data/lib/ios/module/templates/Example/Example/Tuist/Config.swift +9 -0
- data/lib/ios/module/templates/Example/Example/xcconfigs/ExampleProject.xcconfig +60 -0
- data/lib/ios/module/templates/Example/Example/xcconfigs/ExampleTarget.xcconfig +22 -0
- data/lib/ios/module/templates/NAME.podspec +2 -2
- data/lib/ios/module/templates/NAMEInterface.podspec +5 -5
- metadata +11 -9
- data/lib/ios/module/templates/Example/Example/Example.xcodeproj/project.pbxproj +0 -355
- data/lib/ios/module/templates/Example/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -7
- data/lib/ios/module/templates/Example/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aac4b01bfb6c6db9b77dd060523ea4280c1a2f3a248d93f3a4139120203d7713
|
4
|
+
data.tar.gz: 01034bba077655b5c4fac55c3d3dfcf33a4032dd761c9874889481a1e86a9fc4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c595b85ad36ef2e4a96c30c733da356cddb28ba85a0e622d12c57a14712994a9732012d22a162ad6b903c3a18417e32b63c03a8af5dd947355813b7d8e9d3a7
|
7
|
+
data.tar.gz: b37d7f0795fb47d17ea6bcf75541a593f1dcc26dac3526075f14edc7db1ec0e4393b19612882d5fe10d638296e512aa47399ad5a676d60a245e567da926b9573
|
data/lib/ios/iosOption.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
require 'ios/module/setup/Template_Configurator'
|
2
|
+
require 'ios/module/setup/TuistCommands'
|
2
3
|
|
3
4
|
require 'thor'
|
4
5
|
|
@@ -6,50 +7,72 @@ module App
|
|
6
7
|
class IOS_CLI < Thor
|
7
8
|
desc "module", "Create a new module to iOS platform"
|
8
9
|
def module
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
10
|
+
IOS::TemplateConfigurator.new.run
|
11
|
+
end
|
12
|
+
|
13
|
+
desc "generate_no_open", "Generate project using Tuist without open the project"
|
14
|
+
def generate_no_open
|
15
|
+
IOS::TuistCommands.new.generateExample(false)
|
16
|
+
end
|
17
|
+
|
18
|
+
desc "generate", "Generate project using Tuist opening the project"
|
19
|
+
def generate
|
20
|
+
IOS::TuistCommands.new.generateExample
|
21
|
+
end
|
22
|
+
|
23
|
+
desc "install", "Install scripts and templates in project"
|
24
|
+
def install
|
25
|
+
puts "Verificando se existe Homebrew instalado"
|
26
|
+
brewExists = system('which -s brew')
|
27
|
+
if brewExists
|
28
|
+
puts "Atualizando Homebrew"
|
29
|
+
system('brew update')
|
30
|
+
else
|
31
|
+
puts "Instalando Homebrew"
|
32
|
+
system("/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\"")
|
33
|
+
end
|
34
|
+
puts "Instalando swiftgen"
|
35
|
+
system("brew install swiftgen")
|
36
|
+
|
37
|
+
puts "✅ Swiftgen instalado com sucesso"
|
38
|
+
|
39
|
+
install_tuist
|
40
|
+
|
41
|
+
install_hooks
|
42
|
+
end
|
43
|
+
|
44
|
+
private
|
45
|
+
|
46
|
+
def install_hooks
|
47
|
+
hooks_directory = File.expand_path(File.join(File.dirname(__FILE__)))
|
48
|
+
install_hooks_path = File.join(hooks_directory, 'install-hooks.rb')
|
49
|
+
|
50
|
+
unless File.exist?(install_hooks_path)
|
51
|
+
puts "O arquivo install-hooks.rb não foi encontrado em #{hooks_directory}."
|
52
|
+
return
|
53
|
+
end
|
54
|
+
|
55
|
+
puts "Executando install_hooks..."
|
56
|
+
|
57
|
+
Dir.chdir(hooks_directory) do
|
58
|
+
success = system('ruby install-hooks.rb')
|
59
|
+
|
60
|
+
if success
|
61
|
+
puts "✅ Hooks instalados com sucesso!"
|
62
|
+
else
|
63
|
+
puts "❌ Erro ao executar pre-hook"
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
def install_tuist
|
69
|
+
tuistExists = system("tuist version")
|
70
|
+
unless tuistExists
|
71
|
+
puts "Instalando o Tuist".green
|
72
|
+
system("brew tap tuist/tuist")
|
73
|
+
system("brew install tuist")
|
74
|
+
puts "✅ Tuist instalado com sucesso"
|
75
|
+
end
|
76
|
+
end
|
54
77
|
end
|
55
78
|
end
|
@@ -100,14 +100,16 @@ module IOS
|
|
100
100
|
podDevInjection += "\n pod 'SBLoggerInterface', path: '../../../CoreModules/SBLogger'"
|
101
101
|
if @mock_network == :yes
|
102
102
|
podDevInjection += "\n pod 'SBUserSessionInterface', path: '../../../CoreModules/SBUserSession'"
|
103
|
-
podDevInjection += "\n pod '
|
103
|
+
podDevInjection += "\n pod 'SBNetworkOld', path: '../../../CoreModules/SBNetworkOld'"
|
104
104
|
podDevInjection += "\n pod 'Fetcher', path: '../../../CoreModules/Fetcher'"
|
105
105
|
podDevInjection += "\n pod 'Flow', path: '../../../CoreModules/Flow'"
|
106
|
+
podDevInjection += "\n pod 'SecFoundation', path: '../../../CoreModules/SecFoundation'"
|
106
107
|
podDevInjection += "\n pod 'SBSecurity', path: '../../../CoreModules/SBSecurity'"
|
107
108
|
podDevInjection += "\n pod 'SBSecurityInterface', path: '../../../CoreModules/SBSecurity'"
|
108
109
|
podDevInjection += "\n pod 'SBFeatureTogglesKitInterface', path: '../../../CoreModules/SBFeatureTogglesKit'"
|
109
110
|
end
|
110
111
|
podDevInjection += "\n pod 'SBAssets', :git => 'git@bitbucket.org:acelera/ios-ds-assets.git', :branch => 'master'"
|
112
|
+
podDevInjection += "\n pod 'IDwallToolkit', :git => 'git@bitbucket.org:acelera/ios-frameworks.git', :branch => 'master'"
|
111
113
|
|
112
114
|
end
|
113
115
|
|
@@ -1,5 +1,6 @@
|
|
1
1
|
require 'ios/module/setup/MessageBank'
|
2
2
|
require 'ios/module/setup/ConfigureSwift'
|
3
|
+
require 'ios/module/setup/TuistCommands'
|
3
4
|
|
4
5
|
require 'colored2'
|
5
6
|
require 'fileutils'
|
@@ -7,7 +8,7 @@ require 'fileutils'
|
|
7
8
|
module IOS
|
8
9
|
class TemplateConfigurator
|
9
10
|
|
10
|
-
attr_reader :pod_name, :pods_for_podfile, :prefixes, :project_filename, :template_path
|
11
|
+
attr_reader :pod_name, :pods_for_podfile, :prefixes, :project_filename, :template_path, :tuist_commands
|
11
12
|
|
12
13
|
def initialize()
|
13
14
|
@pod_name = ""
|
@@ -17,6 +18,7 @@ module IOS
|
|
17
18
|
dir = App.gem_path
|
18
19
|
@template_path = File.join(dir, "lib/ios/module/templates")
|
19
20
|
@message_bank = MessageBank.new(self)
|
21
|
+
@tuist_commands = TuistCommands.new
|
20
22
|
end
|
21
23
|
|
22
24
|
def printMessage(message)
|
@@ -87,8 +89,7 @@ module IOS
|
|
87
89
|
ConfigureSwift.perform(configurator: self)
|
88
90
|
|
89
91
|
run_swiftgen
|
90
|
-
|
91
|
-
|
92
|
+
run_tuist_generate
|
92
93
|
@message_bank.done_message
|
93
94
|
end
|
94
95
|
|
@@ -106,11 +107,10 @@ module IOS
|
|
106
107
|
return is_valid ? nil : github_user_name
|
107
108
|
end
|
108
109
|
|
109
|
-
def
|
110
|
+
def run_tuist_generate
|
110
111
|
if Dir.exists? "Example"
|
111
112
|
Dir.chdir "Example" do
|
112
|
-
|
113
|
-
@message_bank.run_command "pod install"
|
113
|
+
@tuist_commands.generateExample(false)
|
114
114
|
printDone
|
115
115
|
end
|
116
116
|
end
|
@@ -125,4 +125,4 @@ module IOS
|
|
125
125
|
end
|
126
126
|
|
127
127
|
end
|
128
|
-
end
|
128
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
module IOS
|
2
|
+
class TuistCommands
|
3
|
+
def initialize()
|
4
|
+
end
|
5
|
+
|
6
|
+
def generateExample(open_workspace = true)
|
7
|
+
current_directory = File.basename(Dir.pwd)
|
8
|
+
if current_directory == "Example"
|
9
|
+
puts "Rodando " + "tuist generate".magenta + " no projeto Exemplo"
|
10
|
+
system('tuist generate --no-open')
|
11
|
+
if File.exist?("Podfile")
|
12
|
+
puts "Rodando " + "pod install".magenta + " no projeto Exemplo"
|
13
|
+
system("pod install")
|
14
|
+
else
|
15
|
+
puts "\n❌ Arquivo Podfile não encontrado!".red
|
16
|
+
end
|
17
|
+
if File.exist?("Example.xcworkspace")
|
18
|
+
system('open Example.xcworkspace') if open_workspace
|
19
|
+
else
|
20
|
+
puts "\n❌ Arquivo Example.xcworkspace não encontrado!".red
|
21
|
+
end
|
22
|
+
else
|
23
|
+
puts "Navegue até o diretório do Example!".red
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -1,10 +1,9 @@
|
|
1
|
-
platform :ios, '
|
1
|
+
platform :ios, '15.0'
|
2
2
|
|
3
3
|
inhibit_all_warnings!
|
4
4
|
use_modular_headers!
|
5
5
|
|
6
6
|
target 'Example' do
|
7
|
-
|
8
7
|
project 'Example.xcodeproj'
|
9
8
|
|
10
9
|
##################
|
@@ -17,6 +16,4 @@ target 'Example' do
|
|
17
16
|
## INTERNAL PODS ##
|
18
17
|
#######################
|
19
18
|
|
20
|
-
|
21
|
-
|
22
19
|
end
|
@@ -0,0 +1,67 @@
|
|
1
|
+
import ProjectDescription
|
2
|
+
import Foundation
|
3
|
+
|
4
|
+
func getSettingsFromXCConfigFile(at path: String) -> [String: SettingValue]? {
|
5
|
+
do {
|
6
|
+
let contents = try String(contentsOfFile: path)
|
7
|
+
return convertXCConfigFileContentToSettingsDictionary(contentsOfFile: contents)
|
8
|
+
} catch {
|
9
|
+
print("Error reading file at \(path): \(error)")
|
10
|
+
return nil
|
11
|
+
}
|
12
|
+
}
|
13
|
+
|
14
|
+
func convertXCConfigFileContentToSettingsDictionary(contentsOfFile contents: String) -> [String: SettingValue] {
|
15
|
+
var settings = [String: SettingValue]()
|
16
|
+
let lines = contents.split(whereSeparator: \.isNewline)
|
17
|
+
lines.forEach { line in
|
18
|
+
let parts = line.split(separator: "=", maxSplits: 1)
|
19
|
+
if parts.count == 2 {
|
20
|
+
let key = parts[0].trimmingCharacters(in: .whitespaces)
|
21
|
+
let rawValue = parts[1].trimmingCharacters(in: .whitespaces)
|
22
|
+
if rawValue.contains(" ") {
|
23
|
+
let arrayValue = rawValue.split(separator: " ").map { String($0) }
|
24
|
+
settings[key] = .array(arrayValue)
|
25
|
+
} else {
|
26
|
+
settings[key] = .string(rawValue)
|
27
|
+
}
|
28
|
+
}
|
29
|
+
}
|
30
|
+
return settings
|
31
|
+
}
|
32
|
+
|
33
|
+
let targetSettings = getSettingsFromXCConfigFile(at: "xcconfigs/ExampleTarget.xcconfig")
|
34
|
+
let testAction = TestAction.testPlans(["Example/Example.xctestplan"])
|
35
|
+
let buildAction = BuildAction.buildAction(targets: [TargetReference.target("Example")])
|
36
|
+
|
37
|
+
let project = Project(
|
38
|
+
name: "Example",
|
39
|
+
settings: .settings(base: ["IPHONEOS_DEPLOYMENT_TARGET": "15.0"],
|
40
|
+
configurations: [
|
41
|
+
.debug(name: "Debug", xcconfig: "xcconfigs/ExampleProject.xcconfig")
|
42
|
+
]),
|
43
|
+
targets: [
|
44
|
+
.target(name: "Example",
|
45
|
+
destinations: [.iPhone],
|
46
|
+
product: .app,
|
47
|
+
bundleId: "raizen.Acelera.Example",
|
48
|
+
deploymentTargets: .iOS("15.0"),
|
49
|
+
sources: ["Example/*.swift", "Example/**/*.swift"],
|
50
|
+
resources: ["Example/Assets.xcassets", "Example/Base.lproj/LaunchScreen.storyboard"],
|
51
|
+
settings: .settings(base: ["IPHONEOS_DEPLOYMENT_TARGET": "15.0"],
|
52
|
+
configurations: [
|
53
|
+
.debug(name: "Debug",
|
54
|
+
settings: targetSettings!
|
55
|
+
)
|
56
|
+
])
|
57
|
+
)
|
58
|
+
],
|
59
|
+
schemes: [
|
60
|
+
.scheme(name: "Example",
|
61
|
+
shared: true,
|
62
|
+
hidden: false,
|
63
|
+
buildAction: buildAction,
|
64
|
+
testAction: testAction
|
65
|
+
)
|
66
|
+
]
|
67
|
+
)
|
@@ -0,0 +1,60 @@
|
|
1
|
+
ALWAYS_SEARCH_USER_PATHS=NO
|
2
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED=YES
|
3
|
+
CLANG_ANALYZER_NONNULL=YES
|
4
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION=YES_AGGRESSIVE
|
5
|
+
CLANG_CXX_LANGUAGE_STANDARD=gnu++17
|
6
|
+
CLANG_CXX_LIBRARY=libc++
|
7
|
+
CLANG_ENABLE_MODULES=YES
|
8
|
+
CLANG_ENABLE_OBJC_ARC=YES
|
9
|
+
CLANG_ENABLE_OBJC_WEAK=YES
|
10
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
|
11
|
+
CLANG_WARN_BOOL_CONVERSION=YES
|
12
|
+
CLANG_WARN_COMMA=YES
|
13
|
+
CLANG_WARN_CONSTANT_CONVERSION=YES
|
14
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS=YES
|
15
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
|
16
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS=YES
|
17
|
+
CLANG_WARN_EMPTY_BODY=YES
|
18
|
+
CLANG_WARN_ENUM_CONVERSION=YES
|
19
|
+
CLANG_WARN_INFINITE_RECURSION=YES
|
20
|
+
CLANG_WARN_INT_CONVERSION=YES
|
21
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
|
22
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF=YES
|
23
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
|
24
|
+
CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
|
25
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER=YES
|
26
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
|
27
|
+
CLANG_WARN_STRICT_PROTOTYPES=YES
|
28
|
+
CLANG_WARN_SUSPICIOUS_MOVE=YES
|
29
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY=YES_AGGRESSIVE
|
30
|
+
CLANG_WARN_UNREACHABLE_CODE=YES
|
31
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
|
32
|
+
COPY_PHASE_STRIP=NO
|
33
|
+
ENABLE_STRICT_OBJC_MSGSEND=YES
|
34
|
+
GCC_C_LANGUAGE_STANDARD=gnu11
|
35
|
+
GCC_NO_COMMON_BLOCKS=YES
|
36
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION=YES
|
37
|
+
GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
|
38
|
+
GCC_WARN_UNDECLARED_SELECTOR=YES
|
39
|
+
GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
|
40
|
+
GCC_WARN_UNUSED_FUNCTION=YES
|
41
|
+
GCC_WARN_UNUSED_VARIABLE=YES
|
42
|
+
IPHONEOS_DEPLOYMENT_TARGET=15.0
|
43
|
+
MTL_FAST_MATH=YES
|
44
|
+
SDKROOT=iphoneos
|
45
|
+
|
46
|
+
DEBUG_INFORMATION_FORMAT[config=Debug]=dwarf
|
47
|
+
DEBUG_INFORMATION_FORMAT[config=Release]=dwarf-with-dsym
|
48
|
+
ENABLE_NS_ASSERTIONS[config=Release]=NO
|
49
|
+
ENABLE_TESTABILITY[config=Debug]=YES
|
50
|
+
GCC_DYNAMIC_NO_PIC[config=Debug]=NO
|
51
|
+
GCC_OPTIMIZATION_LEVEL[config=Debug]=0
|
52
|
+
GCC_PREPROCESSOR_DEFINITIONS[config=Debug]=DEBUG=1 $(inherited)
|
53
|
+
MTL_ENABLE_DEBUG_INFO[config=Debug]=INCLUDE_SOURCE
|
54
|
+
MTL_ENABLE_DEBUG_INFO[config=Release]=NO
|
55
|
+
ONLY_ACTIVE_ARCH[config=Debug]=YES
|
56
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS[config=Debug]=DEBUG
|
57
|
+
SWIFT_COMPILATION_MODE[config=Release]=wholemodule
|
58
|
+
SWIFT_OPTIMIZATION_LEVEL[config=Debug]=-Onone
|
59
|
+
SWIFT_OPTIMIZATION_LEVEL[config=Release]=-O
|
60
|
+
VALIDATE_PRODUCT[config=Release]=YES
|
@@ -0,0 +1,22 @@
|
|
1
|
+
ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
|
2
|
+
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME=AccentColor
|
3
|
+
CODE_SIGN_STYLE=Automatic
|
4
|
+
CURRENT_PROJECT_VERSION=1
|
5
|
+
DEVELOPMENT_TEAM=B9EVGGBS8N
|
6
|
+
GENERATE_INFOPLIST_FILE=YES
|
7
|
+
INFOPLIST_FILE=Example/Info.plist
|
8
|
+
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents=YES
|
9
|
+
INFOPLIST_KEY_UILaunchStoryboardName=LaunchScreen
|
10
|
+
INFOPLIST_KEY_UISupportedInterfaceOrientations=UIInterfaceOrientationPortrait
|
11
|
+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad=UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight
|
12
|
+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone=UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight
|
13
|
+
IPHONEOS_DEPLOYMENT_TARGET=15.0
|
14
|
+
MARKETING_VERSION=1.0
|
15
|
+
PRODUCT_BUNDLE_IDENTIFIER=raizen.Acelera.Example
|
16
|
+
PRODUCT_NAME=$(TARGET_NAME)
|
17
|
+
SWIFT_EMIT_LOC_STRINGS=YES
|
18
|
+
SWIFT_VERSION=5.0
|
19
|
+
TARGETED_DEVICE_FAMILY=1
|
20
|
+
|
21
|
+
LD_RUNPATH_SEARCH_PATHS[config=Debug]=$(inherited) @executable_path/Frameworks
|
22
|
+
LD_RUNPATH_SEARCH_PATHS[config=Release]=$(inherited) @executable_path/Frameworks
|
@@ -6,7 +6,7 @@ Pod::Spec.new do |s|
|
|
6
6
|
s.homepage = 'https://bitbucket.org/acelera'
|
7
7
|
s.author = { '${USER_NAME}' => '${USER_EMAIL}' }
|
8
8
|
s.source = { :git => 'https://bitbucket.org/acelera/${POD_NAME}', :tag => s.version.to_s }
|
9
|
-
s.platform = :ios, '
|
9
|
+
s.platform = :ios, '15.0'
|
10
10
|
s.public_header_files = '${POD_NAME}/Resources/*.h'
|
11
11
|
|
12
12
|
s.preserve_paths = '${POD_NAME}/Sources/**/*'
|
@@ -28,4 +28,4 @@ Pod::Spec.new do |s|
|
|
28
28
|
|
29
29
|
${FEATURE_TEST}
|
30
30
|
|
31
|
-
end
|
31
|
+
end
|
@@ -6,19 +6,19 @@ Pod::Spec.new do |s|
|
|
6
6
|
s.homepage = 'https://bitbucket.org/acelera'
|
7
7
|
s.author = { '${USER_NAME}' => '${USER_EMAIL}' }
|
8
8
|
s.source = { :git => 'https://bitbucket.org/acelera/${POD_NAME}Interface', :tag => s.version.to_s }
|
9
|
-
s.platform = :ios, '
|
9
|
+
s.platform = :ios, '15.0'
|
10
10
|
|
11
11
|
s.source_files = '${POD_NAME}Interface/**/*'
|
12
12
|
s.exclude_files = '${POD_NAME}Interface/Resources/*.plist'
|
13
|
-
|
14
|
-
|
13
|
+
|
14
|
+
|
15
15
|
|
16
16
|
# INTERNAL DEPENDENCY
|
17
17
|
${FEATURE_INTERNAL}
|
18
|
-
|
18
|
+
|
19
19
|
|
20
20
|
# THIRTY PARTY
|
21
21
|
|
22
22
|
|
23
23
|
|
24
|
-
end
|
24
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shellboxCLI
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ShellBox App
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -85,9 +85,7 @@ files:
|
|
85
85
|
- lib/ios/module/setup/MessageBank.rb
|
86
86
|
- lib/ios/module/setup/ProjectManipulator.rb
|
87
87
|
- lib/ios/module/setup/Template_Configurator.rb
|
88
|
-
- lib/ios/module/
|
89
|
-
- lib/ios/module/templates/Example/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata
|
90
|
-
- lib/ios/module/templates/Example/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
|
88
|
+
- lib/ios/module/setup/TuistCommands.rb
|
91
89
|
- lib/ios/module/templates/Example/Example/Example/AppDelegate.swift
|
92
90
|
- lib/ios/module/templates/Example/Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json
|
93
91
|
- lib/ios/module/templates/Example/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json
|
@@ -97,6 +95,10 @@ files:
|
|
97
95
|
- lib/ios/module/templates/Example/Example/Example/SceneDelegate.swift
|
98
96
|
- lib/ios/module/templates/Example/Example/Example/ViewController.swift
|
99
97
|
- lib/ios/module/templates/Example/Example/Podfile
|
98
|
+
- lib/ios/module/templates/Example/Example/Project.swift
|
99
|
+
- lib/ios/module/templates/Example/Example/Tuist/Config.swift
|
100
|
+
- lib/ios/module/templates/Example/Example/xcconfigs/ExampleProject.xcconfig
|
101
|
+
- lib/ios/module/templates/Example/Example/xcconfigs/ExampleTarget.xcconfig
|
100
102
|
- lib/ios/module/templates/Feature/Header_template
|
101
103
|
- lib/ios/module/templates/Feature/Info_template
|
102
104
|
- lib/ios/module/templates/Feature/bundle_template
|
@@ -107,7 +109,7 @@ homepage: https://bitbucket.org/acelera
|
|
107
109
|
licenses:
|
108
110
|
- MIT
|
109
111
|
metadata: {}
|
110
|
-
post_install_message:
|
112
|
+
post_install_message:
|
111
113
|
rdoc_options: []
|
112
114
|
require_paths:
|
113
115
|
- lib
|
@@ -122,8 +124,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
122
124
|
- !ruby/object:Gem::Version
|
123
125
|
version: '0'
|
124
126
|
requirements: []
|
125
|
-
rubygems_version: 3.
|
126
|
-
signing_key:
|
127
|
+
rubygems_version: 3.5.11
|
128
|
+
signing_key:
|
127
129
|
specification_version: 4
|
128
130
|
summary: ShellBox CLI
|
129
131
|
test_files: []
|
@@ -1,355 +0,0 @@
|
|
1
|
-
// !$*UTF8*$!
|
2
|
-
{
|
3
|
-
archiveVersion = 1;
|
4
|
-
classes = {
|
5
|
-
};
|
6
|
-
objectVersion = 55;
|
7
|
-
objects = {
|
8
|
-
|
9
|
-
/* Begin PBXBuildFile section */
|
10
|
-
19F9FFB52731C24D00B95474 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F9FFB42731C24D00B95474 /* AppDelegate.swift */; };
|
11
|
-
19F9FFB72731C24D00B95474 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F9FFB62731C24D00B95474 /* SceneDelegate.swift */; };
|
12
|
-
19F9FFB92731C24D00B95474 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F9FFB82731C24D00B95474 /* ViewController.swift */; };
|
13
|
-
19F9FFBE2731C25200B95474 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 19F9FFBD2731C25200B95474 /* Assets.xcassets */; };
|
14
|
-
19F9FFC12731C25200B95474 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 19F9FFBF2731C25200B95474 /* LaunchScreen.storyboard */; };
|
15
|
-
/* End PBXBuildFile section */
|
16
|
-
|
17
|
-
/* Begin PBXFileReference section */
|
18
|
-
19F9FFB12731C24D00B95474 /* Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
19
|
-
19F9FFB42731C24D00B95474 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
20
|
-
19F9FFB62731C24D00B95474 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; };
|
21
|
-
19F9FFB82731C24D00B95474 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
|
22
|
-
19F9FFBD2731C25200B95474 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
23
|
-
19F9FFC02731C25200B95474 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
24
|
-
19F9FFC22731C25200B95474 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
25
|
-
/* End PBXFileReference section */
|
26
|
-
|
27
|
-
/* Begin PBXFrameworksBuildPhase section */
|
28
|
-
19F9FFAE2731C24D00B95474 /* Frameworks */ = {
|
29
|
-
isa = PBXFrameworksBuildPhase;
|
30
|
-
buildActionMask = 2147483647;
|
31
|
-
files = (
|
32
|
-
);
|
33
|
-
runOnlyForDeploymentPostprocessing = 0;
|
34
|
-
};
|
35
|
-
/* End PBXFrameworksBuildPhase section */
|
36
|
-
|
37
|
-
/* Begin PBXGroup section */
|
38
|
-
19F9FFA82731C24D00B95474 = {
|
39
|
-
isa = PBXGroup;
|
40
|
-
children = (
|
41
|
-
19F9FFB32731C24D00B95474 /* Example */,
|
42
|
-
19F9FFB22731C24D00B95474 /* Products */,
|
43
|
-
);
|
44
|
-
sourceTree = "<group>";
|
45
|
-
};
|
46
|
-
19F9FFB22731C24D00B95474 /* Products */ = {
|
47
|
-
isa = PBXGroup;
|
48
|
-
children = (
|
49
|
-
19F9FFB12731C24D00B95474 /* Example.app */,
|
50
|
-
);
|
51
|
-
name = Products;
|
52
|
-
sourceTree = "<group>";
|
53
|
-
};
|
54
|
-
19F9FFB32731C24D00B95474 /* Example */ = {
|
55
|
-
isa = PBXGroup;
|
56
|
-
children = (
|
57
|
-
19F9FFB42731C24D00B95474 /* AppDelegate.swift */,
|
58
|
-
19F9FFB62731C24D00B95474 /* SceneDelegate.swift */,
|
59
|
-
19F9FFB82731C24D00B95474 /* ViewController.swift */,
|
60
|
-
19F9FFBD2731C25200B95474 /* Assets.xcassets */,
|
61
|
-
19F9FFBF2731C25200B95474 /* LaunchScreen.storyboard */,
|
62
|
-
19F9FFC22731C25200B95474 /* Info.plist */,
|
63
|
-
);
|
64
|
-
path = Example;
|
65
|
-
sourceTree = "<group>";
|
66
|
-
};
|
67
|
-
/* End PBXGroup section */
|
68
|
-
|
69
|
-
/* Begin PBXNativeTarget section */
|
70
|
-
19F9FFB02731C24D00B95474 /* Example */ = {
|
71
|
-
isa = PBXNativeTarget;
|
72
|
-
buildConfigurationList = 19F9FFC52731C25200B95474 /* Build configuration list for PBXNativeTarget "Example" */;
|
73
|
-
buildPhases = (
|
74
|
-
19F9FFAD2731C24D00B95474 /* Sources */,
|
75
|
-
19F9FFAE2731C24D00B95474 /* Frameworks */,
|
76
|
-
19F9FFAF2731C24D00B95474 /* Resources */,
|
77
|
-
);
|
78
|
-
buildRules = (
|
79
|
-
);
|
80
|
-
dependencies = (
|
81
|
-
);
|
82
|
-
name = Example;
|
83
|
-
productName = Example;
|
84
|
-
productReference = 19F9FFB12731C24D00B95474 /* Example.app */;
|
85
|
-
productType = "com.apple.product-type.application";
|
86
|
-
};
|
87
|
-
/* End PBXNativeTarget section */
|
88
|
-
|
89
|
-
/* Begin PBXProject section */
|
90
|
-
19F9FFA92731C24D00B95474 /* Project object */ = {
|
91
|
-
isa = PBXProject;
|
92
|
-
attributes = {
|
93
|
-
BuildIndependentTargetsInParallel = 1;
|
94
|
-
LastSwiftUpdateCheck = 1310;
|
95
|
-
LastUpgradeCheck = 1310;
|
96
|
-
TargetAttributes = {
|
97
|
-
19F9FFB02731C24D00B95474 = {
|
98
|
-
CreatedOnToolsVersion = 13.1;
|
99
|
-
};
|
100
|
-
};
|
101
|
-
};
|
102
|
-
buildConfigurationList = 19F9FFAC2731C24D00B95474 /* Build configuration list for PBXProject "Example" */;
|
103
|
-
compatibilityVersion = "Xcode 13.0";
|
104
|
-
developmentRegion = en;
|
105
|
-
hasScannedForEncodings = 0;
|
106
|
-
knownRegions = (
|
107
|
-
en,
|
108
|
-
Base,
|
109
|
-
);
|
110
|
-
mainGroup = 19F9FFA82731C24D00B95474;
|
111
|
-
productRefGroup = 19F9FFB22731C24D00B95474 /* Products */;
|
112
|
-
projectDirPath = "";
|
113
|
-
projectRoot = "";
|
114
|
-
targets = (
|
115
|
-
19F9FFB02731C24D00B95474 /* Example */,
|
116
|
-
);
|
117
|
-
};
|
118
|
-
/* End PBXProject section */
|
119
|
-
|
120
|
-
/* Begin PBXResourcesBuildPhase section */
|
121
|
-
19F9FFAF2731C24D00B95474 /* Resources */ = {
|
122
|
-
isa = PBXResourcesBuildPhase;
|
123
|
-
buildActionMask = 2147483647;
|
124
|
-
files = (
|
125
|
-
19F9FFC12731C25200B95474 /* LaunchScreen.storyboard in Resources */,
|
126
|
-
19F9FFBE2731C25200B95474 /* Assets.xcassets in Resources */,
|
127
|
-
);
|
128
|
-
runOnlyForDeploymentPostprocessing = 0;
|
129
|
-
};
|
130
|
-
/* End PBXResourcesBuildPhase section */
|
131
|
-
|
132
|
-
/* Begin PBXSourcesBuildPhase section */
|
133
|
-
19F9FFAD2731C24D00B95474 /* Sources */ = {
|
134
|
-
isa = PBXSourcesBuildPhase;
|
135
|
-
buildActionMask = 2147483647;
|
136
|
-
files = (
|
137
|
-
19F9FFB92731C24D00B95474 /* ViewController.swift in Sources */,
|
138
|
-
19F9FFB52731C24D00B95474 /* AppDelegate.swift in Sources */,
|
139
|
-
19F9FFB72731C24D00B95474 /* SceneDelegate.swift in Sources */,
|
140
|
-
);
|
141
|
-
runOnlyForDeploymentPostprocessing = 0;
|
142
|
-
};
|
143
|
-
/* End PBXSourcesBuildPhase section */
|
144
|
-
|
145
|
-
/* Begin PBXVariantGroup section */
|
146
|
-
19F9FFBF2731C25200B95474 /* LaunchScreen.storyboard */ = {
|
147
|
-
isa = PBXVariantGroup;
|
148
|
-
children = (
|
149
|
-
19F9FFC02731C25200B95474 /* Base */,
|
150
|
-
);
|
151
|
-
name = LaunchScreen.storyboard;
|
152
|
-
sourceTree = "<group>";
|
153
|
-
};
|
154
|
-
/* End PBXVariantGroup section */
|
155
|
-
|
156
|
-
/* Begin XCBuildConfiguration section */
|
157
|
-
19F9FFC32731C25200B95474 /* Debug */ = {
|
158
|
-
isa = XCBuildConfiguration;
|
159
|
-
buildSettings = {
|
160
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
161
|
-
CLANG_ANALYZER_NONNULL = YES;
|
162
|
-
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
163
|
-
CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
|
164
|
-
CLANG_CXX_LIBRARY = "libc++";
|
165
|
-
CLANG_ENABLE_MODULES = YES;
|
166
|
-
CLANG_ENABLE_OBJC_ARC = YES;
|
167
|
-
CLANG_ENABLE_OBJC_WEAK = YES;
|
168
|
-
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
169
|
-
CLANG_WARN_BOOL_CONVERSION = YES;
|
170
|
-
CLANG_WARN_COMMA = YES;
|
171
|
-
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
172
|
-
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
173
|
-
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
174
|
-
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
175
|
-
CLANG_WARN_EMPTY_BODY = YES;
|
176
|
-
CLANG_WARN_ENUM_CONVERSION = YES;
|
177
|
-
CLANG_WARN_INFINITE_RECURSION = YES;
|
178
|
-
CLANG_WARN_INT_CONVERSION = YES;
|
179
|
-
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
180
|
-
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
181
|
-
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
182
|
-
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
183
|
-
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
184
|
-
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
185
|
-
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
186
|
-
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
187
|
-
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
188
|
-
CLANG_WARN_UNREACHABLE_CODE = YES;
|
189
|
-
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
190
|
-
COPY_PHASE_STRIP = NO;
|
191
|
-
DEBUG_INFORMATION_FORMAT = dwarf;
|
192
|
-
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
193
|
-
ENABLE_TESTABILITY = YES;
|
194
|
-
GCC_C_LANGUAGE_STANDARD = gnu11;
|
195
|
-
GCC_DYNAMIC_NO_PIC = NO;
|
196
|
-
GCC_NO_COMMON_BLOCKS = YES;
|
197
|
-
GCC_OPTIMIZATION_LEVEL = 0;
|
198
|
-
GCC_PREPROCESSOR_DEFINITIONS = (
|
199
|
-
"DEBUG=1",
|
200
|
-
"$(inherited)",
|
201
|
-
);
|
202
|
-
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
203
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
204
|
-
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
205
|
-
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
206
|
-
GCC_WARN_UNUSED_FUNCTION = YES;
|
207
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
208
|
-
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
|
209
|
-
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
210
|
-
MTL_FAST_MATH = YES;
|
211
|
-
ONLY_ACTIVE_ARCH = YES;
|
212
|
-
SDKROOT = iphoneos;
|
213
|
-
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
214
|
-
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
215
|
-
};
|
216
|
-
name = Debug;
|
217
|
-
};
|
218
|
-
19F9FFC42731C25200B95474 /* Release */ = {
|
219
|
-
isa = XCBuildConfiguration;
|
220
|
-
buildSettings = {
|
221
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
222
|
-
CLANG_ANALYZER_NONNULL = YES;
|
223
|
-
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
224
|
-
CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
|
225
|
-
CLANG_CXX_LIBRARY = "libc++";
|
226
|
-
CLANG_ENABLE_MODULES = YES;
|
227
|
-
CLANG_ENABLE_OBJC_ARC = YES;
|
228
|
-
CLANG_ENABLE_OBJC_WEAK = YES;
|
229
|
-
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
230
|
-
CLANG_WARN_BOOL_CONVERSION = YES;
|
231
|
-
CLANG_WARN_COMMA = YES;
|
232
|
-
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
233
|
-
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
234
|
-
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
235
|
-
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
236
|
-
CLANG_WARN_EMPTY_BODY = YES;
|
237
|
-
CLANG_WARN_ENUM_CONVERSION = YES;
|
238
|
-
CLANG_WARN_INFINITE_RECURSION = YES;
|
239
|
-
CLANG_WARN_INT_CONVERSION = YES;
|
240
|
-
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
241
|
-
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
242
|
-
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
243
|
-
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
244
|
-
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
245
|
-
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
246
|
-
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
247
|
-
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
248
|
-
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
249
|
-
CLANG_WARN_UNREACHABLE_CODE = YES;
|
250
|
-
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
251
|
-
COPY_PHASE_STRIP = NO;
|
252
|
-
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
253
|
-
ENABLE_NS_ASSERTIONS = NO;
|
254
|
-
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
255
|
-
GCC_C_LANGUAGE_STANDARD = gnu11;
|
256
|
-
GCC_NO_COMMON_BLOCKS = YES;
|
257
|
-
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
258
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
259
|
-
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
260
|
-
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
261
|
-
GCC_WARN_UNUSED_FUNCTION = YES;
|
262
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
263
|
-
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
|
264
|
-
MTL_ENABLE_DEBUG_INFO = NO;
|
265
|
-
MTL_FAST_MATH = YES;
|
266
|
-
SDKROOT = iphoneos;
|
267
|
-
SWIFT_COMPILATION_MODE = wholemodule;
|
268
|
-
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
269
|
-
VALIDATE_PRODUCT = YES;
|
270
|
-
};
|
271
|
-
name = Release;
|
272
|
-
};
|
273
|
-
19F9FFC62731C25200B95474 /* Debug */ = {
|
274
|
-
isa = XCBuildConfiguration;
|
275
|
-
buildSettings = {
|
276
|
-
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
277
|
-
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
278
|
-
CODE_SIGN_STYLE = Automatic;
|
279
|
-
CURRENT_PROJECT_VERSION = 1;
|
280
|
-
DEVELOPMENT_TEAM = 88A2J39RZ6;
|
281
|
-
GENERATE_INFOPLIST_FILE = YES;
|
282
|
-
INFOPLIST_FILE = Example/Info.plist;
|
283
|
-
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
|
284
|
-
INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
|
285
|
-
INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
|
286
|
-
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
|
287
|
-
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
|
288
|
-
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
289
|
-
LD_RUNPATH_SEARCH_PATHS = (
|
290
|
-
"$(inherited)",
|
291
|
-
"@executable_path/Frameworks",
|
292
|
-
);
|
293
|
-
MARKETING_VERSION = 1.0;
|
294
|
-
PRODUCT_BUNDLE_IDENTIFIER = raizen.Acelera.Example;
|
295
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
296
|
-
SWIFT_EMIT_LOC_STRINGS = YES;
|
297
|
-
SWIFT_VERSION = 5.0;
|
298
|
-
TARGETED_DEVICE_FAMILY = 1;
|
299
|
-
};
|
300
|
-
name = Debug;
|
301
|
-
};
|
302
|
-
19F9FFC72731C25200B95474 /* Release */ = {
|
303
|
-
isa = XCBuildConfiguration;
|
304
|
-
buildSettings = {
|
305
|
-
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
306
|
-
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
307
|
-
CODE_SIGN_STYLE = Automatic;
|
308
|
-
CURRENT_PROJECT_VERSION = 1;
|
309
|
-
DEVELOPMENT_TEAM = 88A2J39RZ6;
|
310
|
-
GENERATE_INFOPLIST_FILE = YES;
|
311
|
-
INFOPLIST_FILE = Example/Info.plist;
|
312
|
-
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
|
313
|
-
INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
|
314
|
-
INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
|
315
|
-
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
|
316
|
-
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
|
317
|
-
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
318
|
-
LD_RUNPATH_SEARCH_PATHS = (
|
319
|
-
"$(inherited)",
|
320
|
-
"@executable_path/Frameworks",
|
321
|
-
);
|
322
|
-
MARKETING_VERSION = 1.0;
|
323
|
-
PRODUCT_BUNDLE_IDENTIFIER = raizen.Acelera.Example;
|
324
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
325
|
-
SWIFT_EMIT_LOC_STRINGS = YES;
|
326
|
-
SWIFT_VERSION = 5.0;
|
327
|
-
TARGETED_DEVICE_FAMILY = 1;
|
328
|
-
};
|
329
|
-
name = Release;
|
330
|
-
};
|
331
|
-
/* End XCBuildConfiguration section */
|
332
|
-
|
333
|
-
/* Begin XCConfigurationList section */
|
334
|
-
19F9FFAC2731C24D00B95474 /* Build configuration list for PBXProject "Example" */ = {
|
335
|
-
isa = XCConfigurationList;
|
336
|
-
buildConfigurations = (
|
337
|
-
19F9FFC32731C25200B95474 /* Debug */,
|
338
|
-
19F9FFC42731C25200B95474 /* Release */,
|
339
|
-
);
|
340
|
-
defaultConfigurationIsVisible = 0;
|
341
|
-
defaultConfigurationName = Release;
|
342
|
-
};
|
343
|
-
19F9FFC52731C25200B95474 /* Build configuration list for PBXNativeTarget "Example" */ = {
|
344
|
-
isa = XCConfigurationList;
|
345
|
-
buildConfigurations = (
|
346
|
-
19F9FFC62731C25200B95474 /* Debug */,
|
347
|
-
19F9FFC72731C25200B95474 /* Release */,
|
348
|
-
);
|
349
|
-
defaultConfigurationIsVisible = 0;
|
350
|
-
defaultConfigurationName = Release;
|
351
|
-
};
|
352
|
-
/* End XCConfigurationList section */
|
353
|
-
};
|
354
|
-
rootObject = 19F9FFA92731C24D00B95474 /* Project object */;
|
355
|
-
}
|