cocoapods-ykutility 0.0.18 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (122) hide show
  1. checksums.yaml +4 -4
  2. data/configPodTemplate/example/CommonFiles/.gitkeep +0 -0
  3. data/configPodTemplate/example/CommonFiles/CommonFile.swift +9 -0
  4. data/configPodTemplate/example/NotificationContent/Base.lproj/MainInterface.storyboard +43 -0
  5. data/configPodTemplate/example/NotificationContent/Info.plist +40 -0
  6. data/configPodTemplate/example/NotificationContent/NotificationViewController.swift +25 -0
  7. data/configPodTemplate/example/NotificationService/Info.plist +38 -0
  8. data/configPodTemplate/example/NotificationService/NotificationService.swift +36 -0
  9. data/configPodTemplate/example/Podfile +53 -0
  10. data/configPodTemplate/example/READ.md +76 -0
  11. data/configPodTemplate/example/README_resource/appExtensionNameDiscussion.png +0 -0
  12. data/configPodTemplate/example/TargetMain/AppDelegate.swift +32 -0
  13. data/configPodTemplate/example/TargetMain/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
  14. data/configPodTemplate/example/TargetMain/Assets.xcassets/AppIcon.appiconset/Contents.json +13 -0
  15. data/configPodTemplate/example/TargetMain/Assets.xcassets/Contents.json +6 -0
  16. data/configPodTemplate/example/TargetMain/Base.lproj/LaunchScreen.storyboard +45 -0
  17. data/configPodTemplate/example/TargetMain/Info.plist +47 -0
  18. data/configPodTemplate/example/TargetMain/ViewController.swift +29 -0
  19. data/configPodTemplate/example/TargetMain/ViewController.xib +46 -0
  20. data/configPodTemplate/example/TargetMain/YKRPC_POD_NAMEEmptyOC.h +16 -0
  21. data/configPodTemplate/example/TargetMain/YKRPC_POD_NAMEEmptyOC.m +18 -0
  22. data/configPodTemplate/example/TargetMain/YKRPC_POD_NAME_Example-Bridging-Header.h +4 -0
  23. data/configPodTemplate/example/config/iOS-config/target-main/Shared.xcconfig +105 -0
  24. data/configPodTemplate/example/config/iOS-config/target-main/config-custom/Shared.xcconfig +2 -0
  25. data/configPodTemplate/example/config/iOS-config/target-main/config-custom/debug.xcconfig +9 -0
  26. data/configPodTemplate/example/config/iOS-config/target-main/config-custom/release.xcconfig +9 -0
  27. data/configPodTemplate/example/config/iOS-config/target-main/config-enterprise/Shared.xcconfig +1 -0
  28. data/configPodTemplate/example/config/iOS-config/target-main/config-enterprise/debug.xcconfig +9 -0
  29. data/configPodTemplate/example/config/iOS-config/target-main/config-enterprise/release.xcconfig +9 -0
  30. data/configPodTemplate/example/config/iOS-config/target-main-Q/Shared.xcconfig +105 -0
  31. data/configPodTemplate/example/config/iOS-config/target-main-Q/config-custom/Shared.xcconfig +2 -0
  32. data/configPodTemplate/example/config/iOS-config/target-main-Q/config-custom/debug.xcconfig +9 -0
  33. data/configPodTemplate/example/config/iOS-config/target-main-Q/config-custom/release.xcconfig +9 -0
  34. data/configPodTemplate/example/config/iOS-config/target-main-Q/config-enterprise/Shared.xcconfig +1 -0
  35. data/configPodTemplate/example/config/iOS-config/target-main-Q/config-enterprise/debug.xcconfig +9 -0
  36. data/configPodTemplate/example/config/iOS-config/target-main-Q/config-enterprise/release.xcconfig +9 -0
  37. data/configPodTemplate/example/config/iOS-config/target-notificationContent/Shared.xcconfig +5 -0
  38. data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-custom/Shared.xcconfig +2 -0
  39. data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-custom/debug.xcconfig +129 -0
  40. data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-custom/release.xcconfig +9 -0
  41. data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-enterprise/Shared.xcconfig +2 -0
  42. data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-enterprise/debug.xcconfig +129 -0
  43. data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-enterprise/release.xcconfig +9 -0
  44. data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/Shared.xcconfig +5 -0
  45. data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-custom/Shared.xcconfig +2 -0
  46. data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-custom/debug.xcconfig +129 -0
  47. data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-custom/release.xcconfig +9 -0
  48. data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-enterprise/Shared.xcconfig +2 -0
  49. data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-enterprise/debug.xcconfig +129 -0
  50. data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-enterprise/release.xcconfig +9 -0
  51. data/configPodTemplate/example/config/iOS-config/target-notificationService/Shared.xcconfig +7 -0
  52. data/configPodTemplate/example/config/iOS-config/target-notificationService/config-custom/Shared.xcconfig +2 -0
  53. data/configPodTemplate/example/config/iOS-config/target-notificationService/config-custom/debug.xcconfig +129 -0
  54. data/configPodTemplate/example/config/iOS-config/target-notificationService/config-custom/release.xcconfig +9 -0
  55. data/configPodTemplate/example/config/iOS-config/target-notificationService/config-enterprise/Shared.xcconfig +3 -0
  56. data/configPodTemplate/example/config/iOS-config/target-notificationService/config-enterprise/debug.xcconfig +129 -0
  57. data/configPodTemplate/example/config/iOS-config/target-notificationService/config-enterprise/release.xcconfig +9 -0
  58. data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/Shared.xcconfig +7 -0
  59. data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-custom/Shared.xcconfig +2 -0
  60. data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-custom/debug.xcconfig +129 -0
  61. data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-custom/release.xcconfig +9 -0
  62. data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-enterprise/Shared.xcconfig +3 -0
  63. data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-enterprise/debug.xcconfig +129 -0
  64. data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-enterprise/release.xcconfig +9 -0
  65. data/configPodTemplate/example/config/iOS-targets-Q.yml +137 -0
  66. data/configPodTemplate/example/config/iOS-targets.yml +135 -0
  67. data/configPodTemplate/example/config/project-config/Shared.xcconfig +470 -0
  68. data/configPodTemplate/example/config/project-config/config-custom/Shared.xcconfig +8 -0
  69. data/configPodTemplate/example/config/project-config/config-custom/debug.xcconfig +127 -0
  70. data/configPodTemplate/example/config/project-config/config-custom/release.xcconfig +60 -0
  71. data/configPodTemplate/example/config/project-config/config-enterprise/Shared.xcconfig +20 -0
  72. data/configPodTemplate/example/config/project-config/config-enterprise/debug.xcconfig +127 -0
  73. data/configPodTemplate/example/config/project-config/config-enterprise/release.xcconfig +59 -0
  74. data/configPodTemplate/example/project.yml +37 -0
  75. data/configPodTemplate/objc/LICENSE +19 -0
  76. data/configPodTemplate/objc/README.md +60 -0
  77. data/configPodTemplate/objc/YKRPC_POD_NAME/Assets/Images.xcassets/.gitkeep +0 -0
  78. data/configPodTemplate/objc/YKRPC_POD_NAME/Private/.gitkeep +0 -0
  79. data/configPodTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.h +16 -0
  80. data/configPodTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.m +12 -0
  81. data/configPodTemplate/objc/YKRPC_POD_NAME.podspec +62 -0
  82. data/configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.h +16 -0
  83. data/configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.m +27 -0
  84. data/configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.h +15 -0
  85. data/configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.m +27 -0
  86. data/configPodTemplate/register/swift/YKRPC_POD_NAME/Private/.gitkeep +0 -0
  87. data/configPodTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterRouter.swift +19 -0
  88. data/configPodTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterService.swift +20 -0
  89. data/configPodTemplate/swift/LICENSE +19 -0
  90. data/configPodTemplate/swift/README.md +60 -0
  91. data/configPodTemplate/swift/YKRPC_POD_NAME/Assets/Images.xcassets/.gitkeep +0 -0
  92. data/configPodTemplate/swift/YKRPC_POD_NAME/Private/.gitkeep +0 -0
  93. data/configPodTemplate/swift/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.swift +6 -0
  94. data/configPodTemplate/swift/YKRPC_POD_NAME.podspec +61 -0
  95. data/lib/cocoapods-ykutility/command/Ykutility.rb +1 -0
  96. data/lib/cocoapods-ykutility/command/create/yk_create_pod_action.rb +7 -7
  97. data/lib/cocoapods-ykutility/command/create/yk_exchange_tool.rb +1 -0
  98. data/lib/cocoapods-ykutility/command/gen/yk_gen_create_action.rb +162 -0
  99. data/lib/cocoapods-ykutility/command/gen.rb +74 -0
  100. data/lib/cocoapods-ykutility/gem_version.rb +4 -1
  101. data/podTemplate/example/Podfile +1 -1
  102. data/podTemplate/example/YKRPC_POD_NAME_Example/AppDelegate.swift +1 -1
  103. data/podTemplate/example/YKRPC_POD_NAME_Example/Base.lproj/LaunchScreen.storyboard +1 -1
  104. data/podTemplate/example/YKRPC_POD_NAME_Example/Base.lproj/Main.storyboard +1 -1
  105. data/podTemplate/example/YKRPC_POD_NAME_Example/SceneDelegate.swift +1 -1
  106. data/podTemplate/example/YKRPC_POD_NAME_Example/ViewController.swift +1 -1
  107. data/podTemplate/example/YKRPC_POD_NAME_Example.xcodeproj/project.pbxproj +1 -1
  108. data/podTemplate/objc/LICENSE +1 -1
  109. data/podTemplate/objc/README.md +4 -4
  110. data/podTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.h +1 -1
  111. data/podTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.m +1 -1
  112. data/podTemplate/objc/YKRPC_POD_NAME.podspec +3 -3
  113. data/podTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.h +1 -1
  114. data/podTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.m +1 -1
  115. data/podTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.h +1 -1
  116. data/podTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.m +1 -1
  117. data/podTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterRouter.swift +1 -1
  118. data/podTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterService.swift +1 -1
  119. data/podTemplate/swift/README.md +4 -4
  120. data/podTemplate/swift/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.swift +1 -1
  121. data/podTemplate/swift/YKRPC_POD_NAME.podspec +3 -3
  122. metadata +98 -3
@@ -0,0 +1,129 @@
1
+ //
2
+ // Debug.xcconfig
3
+ //
4
+ // Generated by author on 2023/12/27
5
+ // https://buildsettingextractor.com
6
+ //
7
+
8
+ #include "Shared.xcconfig"
9
+ #include "Pods/Target Support Files/Pods-NotificationServiceQ/Pods-NotificationServiceQ.debug.xcconfig"
10
+
11
+ // Enable Testability
12
+ //
13
+ // Enabling this setting will build the target with options appropriate for running
14
+ // automated tests against its product.
15
+ //
16
+ // This setting can be enabled when building targets for debugging if their products will
17
+ // be tested. This may result in tests running slower than otherwise.
18
+ //
19
+ // When this setting is enabled:
20
+ //
21
+ // * `GCC_SYMBOLS_PRIVATE_EXTERN` is disabled (`-fvisibility=hidden` will not be passed
22
+ // to `clang`).
23
+ // * `-enable-testing` is passed to the Swift compiler.
24
+ // * `-export_dynamic` is passed to the linker.
25
+ // * `STRIP_INSTALLED_PRODUCT` is disabled (`strip` will not be run on the produced
26
+ // binary).
27
+
28
+ ENABLE_TESTABILITY = YES
29
+
30
+
31
+
32
+ // Generate Position-Dependent Code
33
+ //
34
+ // Faster function calls for applications. Not appropriate for shared libraries, which
35
+ // need to be position-independent.
36
+
37
+ GCC_DYNAMIC_NO_PIC = NO
38
+
39
+
40
+
41
+ // Optimization Level
42
+ //
43
+ // Specifies the degree to which the generated code is optimized for speed and binary
44
+ // size.
45
+ //
46
+ // * None: Do not optimize. [-O0]
47
+ // With this setting, the compiler's goal is to reduce the cost of compilation and to
48
+ // make debugging produce the expected results. Statements are independent—if you stop
49
+ // the program with a breakpoint between statements, you can then assign a new value to
50
+ // any variable or change the program counter to any other statement in the function and
51
+ // get exactly the results you would expect from the source code.
52
+ // * Fast: Optimizing compilation takes somewhat more time, and a lot more memory for a
53
+ // large function. [-O1]
54
+ // With this setting, the compiler tries to reduce code size and execution time,
55
+ // without performing any optimizations that take a great deal of compilation time. In
56
+ // Apple's compiler, strict aliasing, block reordering, and inter-block scheduling are
57
+ // disabled by default when optimizing.
58
+ // * Faster: The compiler performs nearly all supported optimizations that do not
59
+ // involve a space-speed tradeoff. [-O2]
60
+ // With this setting, the compiler does not perform loop unrolling or function
61
+ // inlining, or register renaming. As compared to the `Fast` setting, this setting
62
+ // increases both compilation time and the performance of the generated code.
63
+ // * Fastest: Turns on all optimizations specified by the `Faster` setting and also
64
+ // turns on function inlining and register renaming options. This setting may result in a
65
+ // larger binary. [-O3]
66
+ // * Fastest, Smallest: Optimize for size. This setting enables all `Faster`
67
+ // optimizations that do not typically increase code size. It also performs further
68
+ // optimizations designed to reduce code size. [-Os]
69
+ // * Fastest, Aggressive Optimizations: This setting enables `Fastest` but also enables
70
+ // aggressive optimizations that may break strict standards compliance but should work
71
+ // well on well-behaved code. [-Ofast]
72
+ // * Smallest, Aggressive Size Optimizations: This setting enables additional size
73
+ // savings by isolating repetitive code patterns into a compiler generated function.
74
+ // [-Oz]
75
+
76
+ GCC_OPTIMIZATION_LEVEL = 0
77
+
78
+
79
+
80
+ // Preprocessor Macros
81
+ //
82
+ // Space-separated list of preprocessor macros of the form `foo` or `foo=bar`.
83
+
84
+ //GCC_PREPROCESSOR_DEFINITIONS = $(inherited)
85
+
86
+
87
+
88
+ // Symbols Hidden by Default
89
+ //
90
+ // When enabled, all symbols are declared `private extern` unless explicitly marked to be
91
+ // exported using `\_\_attribute\_\_((visibility("default")))` in code. If not enabled,
92
+ // all symbols are exported unless explicitly marked as `private extern`. See
93
+ // [Controlling Symbol
94
+ // Visibility](https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/CppRuntimeEnv/Articles/SymbolVisibility.html#//apple_ref/doc/uid/TP40001670-CJBGBHEJ)
95
+ // in [C++ Runtime Environment Programming
96
+ // Guide](https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/CppRuntimeEnv/CPPRuntimeEnv.html).
97
+
98
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO
99
+
100
+
101
+
102
+ // Produce Debugging Information
103
+ //
104
+ // Debugging information is required for shader debugging and profiling.
105
+
106
+ MTL_ENABLE_DEBUG_INFO = YES
107
+
108
+
109
+
110
+ // Build Active Architecture Only
111
+ //
112
+ // If enabled, only the active architecture is built. This setting will be ignored when
113
+ // building with a run destination which does not define a specific architecture, such as
114
+ // a 'Generic Device' run destination.
115
+
116
+ ONLY_ACTIVE_ARCH = YES
117
+
118
+
119
+
120
+ // Swift Optimization Level
121
+ //
122
+ // * None: Compile without any optimization. [-Onone]
123
+ // * Optimize for Speed: [-O]
124
+ // * Optimize for Size: [-Osize]
125
+ // * Whole Module Optimization: [-O -whole-module-optimization]
126
+
127
+ SWIFT_OPTIMIZATION_LEVEL = -Onone
128
+
129
+ GCC_PREPROCESSOR_DEFINITIONS =$(inherited)
@@ -0,0 +1,9 @@
1
+ //
2
+ // Release.xcconfig
3
+ //
4
+ // Generated by author on 2023/12/27
5
+ // https://buildsettingextractor.com
6
+ //
7
+
8
+ #include "Shared.xcconfig"
9
+ #include "Pods/Target Support Files/Pods-NotificationServiceQ/Pods-NotificationServiceQ.release.xcconfig"
@@ -0,0 +1,3 @@
1
+ #include "../Shared.xcconfig"
2
+ PRODUCT_DISPLAY_NAME = NotificationServiceQ
3
+
@@ -0,0 +1,129 @@
1
+ //
2
+ // Debug.xcconfig
3
+ //
4
+ // Generated by author on 2023/12/27
5
+ // https://buildsettingextractor.com
6
+ //
7
+
8
+ #include "Shared.xcconfig"
9
+ #include "Pods/Target Support Files/Pods-NotificationServiceQ/Pods-NotificationServiceQ.debugq.xcconfig"
10
+
11
+ // Enable Testability
12
+ //
13
+ // Enabling this setting will build the target with options appropriate for running
14
+ // automated tests against its product.
15
+ //
16
+ // This setting can be enabled when building targets for debugging if their products will
17
+ // be tested. This may result in tests running slower than otherwise.
18
+ //
19
+ // When this setting is enabled:
20
+ //
21
+ // * `GCC_SYMBOLS_PRIVATE_EXTERN` is disabled (`-fvisibility=hidden` will not be passed
22
+ // to `clang`).
23
+ // * `-enable-testing` is passed to the Swift compiler.
24
+ // * `-export_dynamic` is passed to the linker.
25
+ // * `STRIP_INSTALLED_PRODUCT` is disabled (`strip` will not be run on the produced
26
+ // binary).
27
+
28
+ ENABLE_TESTABILITY = YES
29
+
30
+
31
+
32
+ // Generate Position-Dependent Code
33
+ //
34
+ // Faster function calls for applications. Not appropriate for shared libraries, which
35
+ // need to be position-independent.
36
+
37
+ GCC_DYNAMIC_NO_PIC = NO
38
+
39
+
40
+
41
+ // Optimization Level
42
+ //
43
+ // Specifies the degree to which the generated code is optimized for speed and binary
44
+ // size.
45
+ //
46
+ // * None: Do not optimize. [-O0]
47
+ // With this setting, the compiler's goal is to reduce the cost of compilation and to
48
+ // make debugging produce the expected results. Statements are independent—if you stop
49
+ // the program with a breakpoint between statements, you can then assign a new value to
50
+ // any variable or change the program counter to any other statement in the function and
51
+ // get exactly the results you would expect from the source code.
52
+ // * Fast: Optimizing compilation takes somewhat more time, and a lot more memory for a
53
+ // large function. [-O1]
54
+ // With this setting, the compiler tries to reduce code size and execution time,
55
+ // without performing any optimizations that take a great deal of compilation time. In
56
+ // Apple's compiler, strict aliasing, block reordering, and inter-block scheduling are
57
+ // disabled by default when optimizing.
58
+ // * Faster: The compiler performs nearly all supported optimizations that do not
59
+ // involve a space-speed tradeoff. [-O2]
60
+ // With this setting, the compiler does not perform loop unrolling or function
61
+ // inlining, or register renaming. As compared to the `Fast` setting, this setting
62
+ // increases both compilation time and the performance of the generated code.
63
+ // * Fastest: Turns on all optimizations specified by the `Faster` setting and also
64
+ // turns on function inlining and register renaming options. This setting may result in a
65
+ // larger binary. [-O3]
66
+ // * Fastest, Smallest: Optimize for size. This setting enables all `Faster`
67
+ // optimizations that do not typically increase code size. It also performs further
68
+ // optimizations designed to reduce code size. [-Os]
69
+ // * Fastest, Aggressive Optimizations: This setting enables `Fastest` but also enables
70
+ // aggressive optimizations that may break strict standards compliance but should work
71
+ // well on well-behaved code. [-Ofast]
72
+ // * Smallest, Aggressive Size Optimizations: This setting enables additional size
73
+ // savings by isolating repetitive code patterns into a compiler generated function.
74
+ // [-Oz]
75
+
76
+ GCC_OPTIMIZATION_LEVEL = 0
77
+
78
+
79
+
80
+ // Preprocessor Macros
81
+ //
82
+ // Space-separated list of preprocessor macros of the form `foo` or `foo=bar`.
83
+
84
+ //GCC_PREPROCESSOR_DEFINITIONS = $(inherited)
85
+
86
+
87
+
88
+ // Symbols Hidden by Default
89
+ //
90
+ // When enabled, all symbols are declared `private extern` unless explicitly marked to be
91
+ // exported using `\_\_attribute\_\_((visibility("default")))` in code. If not enabled,
92
+ // all symbols are exported unless explicitly marked as `private extern`. See
93
+ // [Controlling Symbol
94
+ // Visibility](https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/CppRuntimeEnv/Articles/SymbolVisibility.html#//apple_ref/doc/uid/TP40001670-CJBGBHEJ)
95
+ // in [C++ Runtime Environment Programming
96
+ // Guide](https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/CppRuntimeEnv/CPPRuntimeEnv.html).
97
+
98
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO
99
+
100
+
101
+
102
+ // Produce Debugging Information
103
+ //
104
+ // Debugging information is required for shader debugging and profiling.
105
+
106
+ MTL_ENABLE_DEBUG_INFO = YES
107
+
108
+
109
+
110
+ // Build Active Architecture Only
111
+ //
112
+ // If enabled, only the active architecture is built. This setting will be ignored when
113
+ // building with a run destination which does not define a specific architecture, such as
114
+ // a 'Generic Device' run destination.
115
+
116
+ ONLY_ACTIVE_ARCH = YES
117
+
118
+
119
+
120
+ // Swift Optimization Level
121
+ //
122
+ // * None: Compile without any optimization. [-Onone]
123
+ // * Optimize for Speed: [-O]
124
+ // * Optimize for Size: [-Osize]
125
+ // * Whole Module Optimization: [-O -whole-module-optimization]
126
+
127
+ SWIFT_OPTIMIZATION_LEVEL = -Onone
128
+
129
+ GCC_PREPROCESSOR_DEFINITIONS =$(inherited)
@@ -0,0 +1,9 @@
1
+ //
2
+ // Release.xcconfig
3
+ //
4
+ // Generated by author on 2023/12/27
5
+ // https://buildsettingextractor.com
6
+ //
7
+
8
+ #include "Shared.xcconfig"
9
+ #include "Pods/Target Support Files/Pods-NotificationServiceQ/Pods-NotificationServiceQ.releaseq.xcconfig"
@@ -0,0 +1,137 @@
1
+ ############
2
+ # Targets
3
+ ############
4
+
5
+ targets:
6
+
7
+ # -----------
8
+ # MyApp_iOS
9
+ # -----------
10
+
11
+ YKRPC_POD_NAME_ExampleQ:
12
+ type: application
13
+ platform: iOS
14
+
15
+ # sources
16
+ sources:
17
+ # - YKRPC_POD_NAME_Example/YKRPC_POD_NAME_Example/Common
18
+ # - YKRPC_POD_NAME_Example/YKRPC_POD_NAME_Example/Info.plist
19
+ - TargetMain
20
+ - CommonFiles
21
+
22
+ # Config Files
23
+ configFiles:
24
+ Debug: config/iOS-config/target-main-Q/config-custom/debug.xcconfig
25
+ Release: config/iOS-config/target-main-Q/config-custom/release.xcconfig
26
+ DebugQ: config/iOS-config/target-main-Q/config-enterprise/debug.xcconfig
27
+ ReleaseQ: config/iOS-config/target-main-Q/config-enterprise/release.xcconfig
28
+
29
+ # dependencies
30
+ dependencies:
31
+ - target: NotificationContentQ
32
+ - target: NotificationServiceQ
33
+ # - carthage: Reusable
34
+ # - package: SwiftyUtils
35
+ # - sdk: CloudKit.framework
36
+
37
+ # scripts
38
+ preBuildScripts:
39
+ # show build configuration
40
+ - script: |
41
+ # Build Configuration
42
+ echo "Build target: $TARGETNAME"
43
+ echo "Build Configuration: $CONFIGURATION"
44
+ echo "GCC_PREPROCESSOR_DEFINITIONS: $GCC_PREPROCESSOR_DEFINITIONS"
45
+ name: 🔥build configuration
46
+
47
+ # -----------
48
+ # NotificationContentQ
49
+ # -----------
50
+ NotificationContentQ:
51
+ platform: iOS
52
+ type: app-extension
53
+ sources:
54
+ - NotificationContent
55
+ - CommonFiles
56
+
57
+ # Config Files
58
+ configFiles:
59
+ Debug: config/iOS-config/target-notificationContent-Q/config-custom/debug.xcconfig
60
+ Release: config/iOS-config/target-notificationContent-Q/config-custom/release.xcconfig
61
+ DebugQ: config/iOS-config/target-notificationContent-Q/config-enterprise/debug.xcconfig
62
+ ReleaseQ: config/iOS-config/target-notificationContent-Q/config-enterprise/release.xcconfig
63
+
64
+ # dependencies
65
+ dependencies:
66
+ - sdk: UserNotifications.framework
67
+
68
+ # scripts
69
+ preBuildScripts:
70
+ # show build configuration
71
+ - script: |
72
+ # Build Configuration
73
+ echo "Build target: $TARGETNAME"
74
+ echo "Build Configuration: $CONFIGURATION"
75
+ echo "GCC_PREPROCESSOR_DEFINITIONS: $GCC_PREPROCESSOR_DEFINITIONS"
76
+ name: 🔥build configuration
77
+
78
+ # -----------
79
+ # NotificationServiceQ
80
+ # -----------
81
+
82
+ NotificationServiceQ:
83
+ platform: iOS
84
+ type: app-extension
85
+ sources:
86
+ - NotificationService
87
+ - CommonFiles
88
+
89
+ # Config Files
90
+ configFiles:
91
+ Debug: config/iOS-config/target-notificationService-Q/config-custom/debug.xcconfig
92
+ Release: config/iOS-config/target-notificationService-Q/config-custom/release.xcconfig
93
+ DebugQ: config/iOS-config/target-notificationService-Q/config-enterprise/debug.xcconfig
94
+ ReleaseQ: config/iOS-config/target-notificationService-Q/config-enterprise/release.xcconfig
95
+
96
+ # dependencies
97
+ dependencies:
98
+ - sdk: UserNotifications.framework
99
+
100
+ # scripts
101
+ preBuildScripts:
102
+ # show build configuration
103
+ - script: |
104
+ # Build Configuration
105
+ echo "Build target: $TARGETNAME"
106
+ echo "Build Configuration: $CONFIGURATION"
107
+ echo "GCC_PREPROCESSOR_DEFINITIONS: $GCC_PREPROCESSOR_DEFINITIONS"
108
+ name: 🔥build configuration
109
+
110
+ schemes:
111
+ YKRPC_POD_NAME_ExampleQ:
112
+ build:
113
+ targets:
114
+ YKRPC_POD_NAME_ExampleQ: [ build, analyze, profile, archive ]
115
+ config: DebugQ
116
+ parallelizeBuild: true
117
+ buildImplicitDependencies: true
118
+
119
+ test:
120
+ config: DebugQ
121
+
122
+ run:
123
+ config: DebugQ
124
+
125
+ profile:
126
+ config: ReleaseQ
127
+
128
+ analyze:
129
+ config: DebugQ
130
+
131
+ archive:
132
+ config: ReleaseQ
133
+ customArchiveName: YKRPC_POD_NAME_ExampleQ
134
+ revealArchiveInOrganizer: false
135
+ management:
136
+ share: true
137
+
@@ -0,0 +1,135 @@
1
+ ############
2
+ # Targets
3
+ ############
4
+
5
+ targets:
6
+
7
+ # -----------
8
+ # MyApp_iOS
9
+ # -----------
10
+
11
+ YKRPC_POD_NAME_Example:
12
+ type: application
13
+ platform: iOS
14
+
15
+ # sources
16
+ sources:
17
+ - TargetMain
18
+ - CommonFiles
19
+
20
+ # Config Files
21
+ configFiles:
22
+ Debug: config/iOS-config/target-main/config-custom/debug.xcconfig
23
+ Release: config/iOS-config/target-main/config-custom/release.xcconfig
24
+ DebugQ: config/iOS-config/target-main/config-enterprise/debug.xcconfig
25
+ ReleaseQ: config/iOS-config/target-main/config-enterprise/release.xcconfig
26
+
27
+ # dependencies
28
+ dependencies:
29
+ - target: NotificationContent
30
+ - target: NotificationService
31
+ # - carthage: Reusable
32
+ # - package: SwiftyUtils
33
+ # - sdk: CloudKit.framework
34
+
35
+ # scripts
36
+ preBuildScripts:
37
+ # show build configuration
38
+ - script: |
39
+ # Build Configuration
40
+ echo "Build target: $TARGETNAME"
41
+ echo "Build Configuration: $CONFIGURATION"
42
+ echo "GCC_PREPROCESSOR_DEFINITIONS: $GCC_PREPROCESSOR_DEFINITIONS"
43
+ name: 🔥build configuration
44
+
45
+ # -----------
46
+ # NotificationContent
47
+ # -----------
48
+ NotificationContent:
49
+ platform: iOS
50
+ type: app-extension
51
+ sources:
52
+ - NotificationContent
53
+ - CommonFiles
54
+
55
+ # Config Files
56
+ configFiles:
57
+ Debug: config/iOS-config/target-notificationContent/config-custom/debug.xcconfig
58
+ Release: config/iOS-config/target-notificationContent/config-custom/release.xcconfig
59
+ DebugQ: config/iOS-config/target-notificationContent/config-enterprise/debug.xcconfig
60
+ ReleaseQ: config/iOS-config/target-notificationContent/config-enterprise/release.xcconfig
61
+
62
+ # dependencies
63
+ dependencies:
64
+ - sdk: UserNotifications.framework
65
+
66
+ # scripts
67
+ preBuildScripts:
68
+ # show build configuration
69
+ - script: |
70
+ # Build Configuration
71
+ echo "Build target: $TARGETNAME"
72
+ echo "Build Configuration: $CONFIGURATION"
73
+ echo "GCC_PREPROCESSOR_DEFINITIONS: $GCC_PREPROCESSOR_DEFINITIONS"
74
+ name: 🔥build configuration
75
+
76
+ # -----------
77
+ # NotificationService
78
+ # -----------
79
+
80
+ NotificationService:
81
+ platform: iOS
82
+ type: app-extension
83
+ sources:
84
+ - NotificationService
85
+ - CommonFiles
86
+
87
+ # Config Files
88
+ configFiles:
89
+ Debug: config/iOS-config/target-notificationService/config-custom/debug.xcconfig
90
+ Release: config/iOS-config/target-notificationService/config-custom/release.xcconfig
91
+ DebugQ: config/iOS-config/target-notificationService/config-enterprise/debug.xcconfig
92
+ ReleaseQ: config/iOS-config/target-notificationService/config-enterprise/release.xcconfig
93
+
94
+ # dependencies
95
+ dependencies:
96
+ - sdk: UserNotifications.framework
97
+
98
+ # scripts
99
+ preBuildScripts:
100
+ # show build configuration
101
+ - script: |
102
+ # Build Configuration
103
+ echo "Build target: $TARGETNAME"
104
+ echo "Build Configuration: $CONFIGURATION"
105
+ echo "GCC_PREPROCESSOR_DEFINITIONS: $GCC_PREPROCESSOR_DEFINITIONS"
106
+ name: 🔥build configuration
107
+
108
+ schemes:
109
+ YKRPC_POD_NAME_Example:
110
+ build:
111
+ targets:
112
+ YKRPC_POD_NAME_Example: [ build, analyze, profile, archive ]
113
+ config: Debug
114
+ parallelizeBuild: true
115
+ buildImplicitDependencies: true
116
+
117
+ test:
118
+ config: Debug
119
+
120
+ run:
121
+ config: Debug
122
+
123
+ profile:
124
+ config: Release
125
+
126
+ analyze:
127
+ config: Debug
128
+
129
+ archive:
130
+ config: Release
131
+ customArchiveName: YKRPC_POD_NAME_Example
132
+ revealArchiveInOrganizer: false
133
+ management:
134
+ share: true
135
+