cocoapods-catalyst-validator 0.1.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (515) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +3 -0
  3. data/Gemfile +5 -0
  4. data/Gemfile.lock +107 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +18 -0
  7. data/Rakefile +13 -0
  8. data/cocoapods-catalyst-validator.gemspec +23 -0
  9. data/examples/AExample/AExample/AExample.entitlements +10 -0
  10. data/examples/AExample/AExample/AppDelegate.h +14 -0
  11. data/examples/AExample/AExample/AppDelegate.m +40 -0
  12. data/examples/AExample/AExample/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
  13. data/examples/AExample/AExample/Assets.xcassets/AppIcon.appiconset/Contents.json +98 -0
  14. data/examples/AExample/AExample/Assets.xcassets/Contents.json +6 -0
  15. data/examples/AExample/AExample/Base.lproj/LaunchScreen.storyboard +25 -0
  16. data/examples/AExample/AExample/Base.lproj/Main.storyboard +24 -0
  17. data/examples/AExample/AExample/Info.plist +25 -0
  18. data/examples/AExample/AExample/SceneDelegate.h +15 -0
  19. data/examples/AExample/AExample/SceneDelegate.m +57 -0
  20. data/examples/AExample/AExample/ViewController.h +14 -0
  21. data/examples/AExample/AExample/ViewController.m +22 -0
  22. data/examples/AExample/AExample/main.m +18 -0
  23. data/examples/AExample/AExample.xcodeproj/project.pbxproj +664 -0
  24. data/examples/AExample/AExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  25. data/examples/AExample/AExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  26. data/examples/AExample/AExample.xcodeproj/project.xcworkspace/xcuserdata/xuzhongping.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  27. data/examples/AExample/AExample.xcodeproj/xcuserdata/xuzhongping.xcuserdatad/xcschemes/xcschememanagement.plist +19 -0
  28. data/examples/AExample/AExample.xcworkspace/contents.xcworkspacedata +10 -0
  29. data/examples/AExample/AExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  30. data/examples/AExample/AExample.xcworkspace/xcuserdata/xuzhongping.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  31. data/examples/AExample/AExampleCP/AppDelegate.h +14 -0
  32. data/examples/AExample/AExampleCP/AppDelegate.m +40 -0
  33. data/examples/AExample/AExampleCP/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
  34. data/examples/AExample/AExampleCP/Assets.xcassets/AppIcon.appiconset/Contents.json +98 -0
  35. data/examples/AExample/AExampleCP/Assets.xcassets/Contents.json +6 -0
  36. data/examples/AExample/AExampleCP/Base.lproj/LaunchScreen.storyboard +25 -0
  37. data/examples/AExample/AExampleCP/Base.lproj/Main.storyboard +24 -0
  38. data/examples/AExample/AExampleCP/Info.plist +25 -0
  39. data/examples/AExample/AExampleCP/SceneDelegate.h +15 -0
  40. data/examples/AExample/AExampleCP/SceneDelegate.m +57 -0
  41. data/examples/AExample/AExampleCP/ViewController.h +14 -0
  42. data/examples/AExample/AExampleCP/ViewController.m +22 -0
  43. data/examples/AExample/AExampleCP/main.m +18 -0
  44. data/examples/AExample/Podfile +24 -0
  45. data/examples/AExample/Podfile.lock +112 -0
  46. data/examples/AExample/Pods/Bugly/Bugly.framework/Bugly +0 -0
  47. data/examples/AExample/Pods/Bugly/Bugly.framework/Headers/Bugly.h +163 -0
  48. data/examples/AExample/Pods/Bugly/Bugly.framework/Headers/BuglyConfig.h +149 -0
  49. data/examples/AExample/Pods/Bugly/Bugly.framework/Headers/BuglyLog.h +78 -0
  50. data/examples/AExample/Pods/Bugly/Bugly.framework/Modules/module.modulemap +12 -0
  51. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/Info.plist +97 -0
  52. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/FirebaseAnalytics +0 -0
  53. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h +62 -0
  54. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Headers/FIRAnalytics+Consent.h +33 -0
  55. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Headers/FIRAnalytics.h +142 -0
  56. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Headers/FIREventNames.h +495 -0
  57. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Headers/FIRParameterNames.h +731 -0
  58. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h +29 -0
  59. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h +6 -0
  60. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Info.plist +20 -0
  61. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Modules/module.modulemap +13 -0
  62. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_i386_x86_64-simulator/FirebaseAnalytics.framework/FirebaseAnalytics +0 -0
  63. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_i386_x86_64-simulator/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h +62 -0
  64. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_i386_x86_64-simulator/FirebaseAnalytics.framework/Headers/FIRAnalytics+Consent.h +33 -0
  65. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_i386_x86_64-simulator/FirebaseAnalytics.framework/Headers/FIRAnalytics.h +142 -0
  66. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_i386_x86_64-simulator/FirebaseAnalytics.framework/Headers/FIREventNames.h +495 -0
  67. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_i386_x86_64-simulator/FirebaseAnalytics.framework/Headers/FIRParameterNames.h +731 -0
  68. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_i386_x86_64-simulator/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h +29 -0
  69. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_i386_x86_64-simulator/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h +6 -0
  70. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_i386_x86_64-simulator/FirebaseAnalytics.framework/Info.plist +20 -0
  71. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_i386_x86_64-simulator/FirebaseAnalytics.framework/Modules/module.modulemap +13 -0
  72. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_x86_64-maccatalyst/FirebaseAnalytics.framework/FirebaseAnalytics +0 -0
  73. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_x86_64-maccatalyst/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h +62 -0
  74. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_x86_64-maccatalyst/FirebaseAnalytics.framework/Headers/FIRAnalytics+Consent.h +33 -0
  75. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_x86_64-maccatalyst/FirebaseAnalytics.framework/Headers/FIRAnalytics.h +142 -0
  76. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_x86_64-maccatalyst/FirebaseAnalytics.framework/Headers/FIREventNames.h +495 -0
  77. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_x86_64-maccatalyst/FirebaseAnalytics.framework/Headers/FIRParameterNames.h +731 -0
  78. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_x86_64-maccatalyst/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h +29 -0
  79. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_x86_64-maccatalyst/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h +6 -0
  80. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_x86_64-maccatalyst/FirebaseAnalytics.framework/Info.plist +20 -0
  81. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_x86_64-maccatalyst/FirebaseAnalytics.framework/Modules/module.modulemap +13 -0
  82. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/macos-arm64_x86_64/FirebaseAnalytics.framework/FirebaseAnalytics +0 -0
  83. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/macos-arm64_x86_64/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h +62 -0
  84. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/macos-arm64_x86_64/FirebaseAnalytics.framework/Headers/FIRAnalytics+Consent.h +33 -0
  85. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/macos-arm64_x86_64/FirebaseAnalytics.framework/Headers/FIRAnalytics.h +142 -0
  86. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/macos-arm64_x86_64/FirebaseAnalytics.framework/Headers/FIREventNames.h +495 -0
  87. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/macos-arm64_x86_64/FirebaseAnalytics.framework/Headers/FIRParameterNames.h +731 -0
  88. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/macos-arm64_x86_64/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h +29 -0
  89. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/macos-arm64_x86_64/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h +6 -0
  90. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/macos-arm64_x86_64/FirebaseAnalytics.framework/Info.plist +20 -0
  91. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/macos-arm64_x86_64/FirebaseAnalytics.framework/Modules/module.modulemap +13 -0
  92. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/tvos-arm64/FirebaseAnalytics.framework/FirebaseAnalytics +0 -0
  93. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/tvos-arm64/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h +62 -0
  94. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/tvos-arm64/FirebaseAnalytics.framework/Headers/FIRAnalytics+Consent.h +33 -0
  95. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/tvos-arm64/FirebaseAnalytics.framework/Headers/FIRAnalytics.h +142 -0
  96. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/tvos-arm64/FirebaseAnalytics.framework/Headers/FIREventNames.h +495 -0
  97. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/tvos-arm64/FirebaseAnalytics.framework/Headers/FIRParameterNames.h +731 -0
  98. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/tvos-arm64/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h +29 -0
  99. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/tvos-arm64/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h +6 -0
  100. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/tvos-arm64/FirebaseAnalytics.framework/Info.plist +20 -0
  101. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/tvos-arm64/FirebaseAnalytics.framework/Modules/module.modulemap +12 -0
  102. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/tvos-arm64_x86_64-simulator/FirebaseAnalytics.framework/FirebaseAnalytics +0 -0
  103. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/tvos-arm64_x86_64-simulator/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h +62 -0
  104. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/tvos-arm64_x86_64-simulator/FirebaseAnalytics.framework/Headers/FIRAnalytics+Consent.h +33 -0
  105. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/tvos-arm64_x86_64-simulator/FirebaseAnalytics.framework/Headers/FIRAnalytics.h +142 -0
  106. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/tvos-arm64_x86_64-simulator/FirebaseAnalytics.framework/Headers/FIREventNames.h +495 -0
  107. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/tvos-arm64_x86_64-simulator/FirebaseAnalytics.framework/Headers/FIRParameterNames.h +731 -0
  108. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/tvos-arm64_x86_64-simulator/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h +29 -0
  109. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/tvos-arm64_x86_64-simulator/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h +6 -0
  110. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/tvos-arm64_x86_64-simulator/FirebaseAnalytics.framework/Info.plist +20 -0
  111. data/examples/AExample/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/tvos-arm64_x86_64-simulator/FirebaseAnalytics.framework/Modules/module.modulemap +12 -0
  112. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRAnalyticsConfiguration.h +56 -0
  113. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRAnalyticsConfiguration.m +62 -0
  114. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRApp.m +856 -0
  115. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRAppAssociationRegistration.h +49 -0
  116. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRAppAssociationRegistration.m +47 -0
  117. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRBundleUtil.h +53 -0
  118. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRBundleUtil.m +79 -0
  119. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRComponent.m +65 -0
  120. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRComponentContainer.m +214 -0
  121. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRComponentContainerInternal.h +49 -0
  122. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRComponentType.m +28 -0
  123. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRConfiguration.m +46 -0
  124. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRConfigurationInternal.h +29 -0
  125. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m +61 -0
  126. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRDependency.m +44 -0
  127. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRDiagnosticsData.h +35 -0
  128. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRDiagnosticsData.m +66 -0
  129. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRFirebaseUserAgent.h +36 -0
  130. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRFirebaseUserAgent.m +107 -0
  131. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRHeartbeatInfo.m +72 -0
  132. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRLogger.m +174 -0
  133. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIROptions.m +498 -0
  134. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/FIRVersion.m +32 -0
  135. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRAppInternal.h +153 -0
  136. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRComponent.h +91 -0
  137. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRComponentContainer.h +41 -0
  138. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRComponentType.h +34 -0
  139. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h +35 -0
  140. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRDependency.h +45 -0
  141. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRHeartbeatInfo.h +39 -0
  142. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRLibrary.h +44 -0
  143. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRLogger.h +146 -0
  144. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/Private/FIROptionsInternal.h +115 -0
  145. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/Private/FirebaseCoreInternal.h +28 -0
  146. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore/FIRApp.h +127 -0
  147. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore/FIRConfiguration.h +45 -0
  148. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore/FIRLoggerLevel.h +38 -0
  149. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore/FIROptions.h +126 -0
  150. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore/FIRVersion.h +25 -0
  151. data/examples/AExample/Pods/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore/FirebaseCore.h +21 -0
  152. data/examples/AExample/Pods/FirebaseCore/Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h +61 -0
  153. data/examples/AExample/Pods/FirebaseCore/Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h +34 -0
  154. data/examples/AExample/Pods/FirebaseCore/LICENSE +202 -0
  155. data/examples/AExample/Pods/FirebaseCore/README.md +319 -0
  156. data/examples/AExample/Pods/FirebaseCoreDiagnostics/Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m +551 -0
  157. data/examples/AExample/Pods/FirebaseCoreDiagnostics/Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c +60 -0
  158. data/examples/AExample/Pods/FirebaseCoreDiagnostics/Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.h +193 -0
  159. data/examples/AExample/Pods/FirebaseCoreDiagnostics/Firebase/CoreDiagnostics/FIRCDLibrary/Public/FIRCoreDiagnostics.h +18 -0
  160. data/examples/AExample/Pods/FirebaseCoreDiagnostics/Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h +61 -0
  161. data/examples/AExample/Pods/FirebaseCoreDiagnostics/Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h +34 -0
  162. data/examples/AExample/Pods/FirebaseCoreDiagnostics/LICENSE +202 -0
  163. data/examples/AExample/Pods/FirebaseCoreDiagnostics/README.md +319 -0
  164. data/examples/AExample/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRAppInternal.h +153 -0
  165. data/examples/AExample/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRComponent.h +91 -0
  166. data/examples/AExample/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRComponentContainer.h +41 -0
  167. data/examples/AExample/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRComponentType.h +34 -0
  168. data/examples/AExample/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h +35 -0
  169. data/examples/AExample/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRDependency.h +45 -0
  170. data/examples/AExample/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRHeartbeatInfo.h +39 -0
  171. data/examples/AExample/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRLibrary.h +44 -0
  172. data/examples/AExample/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRLogger.h +146 -0
  173. data/examples/AExample/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIROptionsInternal.h +115 -0
  174. data/examples/AExample/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FirebaseCoreInternal.h +28 -0
  175. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h +65 -0
  176. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m +145 -0
  177. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h +53 -0
  178. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m +79 -0
  179. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallations.m +282 -0
  180. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m +30 -0
  181. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h +27 -0
  182. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsItem.h +93 -0
  183. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsItem.m +161 -0
  184. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsLogger.h +52 -0
  185. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsLogger.m +50 -0
  186. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h +48 -0
  187. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m +242 -0
  188. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h +36 -0
  189. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m +158 -0
  190. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h +62 -0
  191. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m +380 -0
  192. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h +53 -0
  193. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m +142 -0
  194. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.h +27 -0
  195. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.m +23 -0
  196. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.h +54 -0
  197. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.m +132 -0
  198. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h +44 -0
  199. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m +531 -0
  200. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h +58 -0
  201. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m +75 -0
  202. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h +35 -0
  203. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h +71 -0
  204. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m +126 -0
  205. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h +58 -0
  206. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m +77 -0
  207. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h +51 -0
  208. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m +80 -0
  209. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h +19 -0
  210. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallations.h +127 -0
  211. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsAuthTokenResult.h +33 -0
  212. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsErrors.h +34 -0
  213. data/examples/AExample/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FirebaseInstallations.h +19 -0
  214. data/examples/AExample/Pods/FirebaseInstallations/LICENSE +202 -0
  215. data/examples/AExample/Pods/FirebaseInstallations/README.md +319 -0
  216. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/Info.plist +97 -0
  217. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_armv7/GoogleAppMeasurement.framework/GoogleAppMeasurement +0 -0
  218. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_armv7/GoogleAppMeasurement.framework/Info.plist +20 -0
  219. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_armv7/GoogleAppMeasurement.framework/Modules/module.modulemap +10 -0
  220. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_i386_x86_64-simulator/GoogleAppMeasurement.framework/GoogleAppMeasurement +0 -0
  221. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_i386_x86_64-simulator/GoogleAppMeasurement.framework/Info.plist +20 -0
  222. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_i386_x86_64-simulator/GoogleAppMeasurement.framework/Modules/module.modulemap +10 -0
  223. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_x86_64-maccatalyst/GoogleAppMeasurement.framework/GoogleAppMeasurement +0 -0
  224. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_x86_64-maccatalyst/GoogleAppMeasurement.framework/Info.plist +20 -0
  225. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_x86_64-maccatalyst/GoogleAppMeasurement.framework/Modules/module.modulemap +10 -0
  226. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/macos-arm64_x86_64/GoogleAppMeasurement.framework/GoogleAppMeasurement +0 -0
  227. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/macos-arm64_x86_64/GoogleAppMeasurement.framework/Info.plist +20 -0
  228. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/macos-arm64_x86_64/GoogleAppMeasurement.framework/Modules/module.modulemap +10 -0
  229. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/tvos-arm64/GoogleAppMeasurement.framework/GoogleAppMeasurement +0 -0
  230. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/tvos-arm64/GoogleAppMeasurement.framework/Info.plist +20 -0
  231. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/tvos-arm64/GoogleAppMeasurement.framework/Modules/module.modulemap +10 -0
  232. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/tvos-arm64_x86_64-simulator/GoogleAppMeasurement.framework/GoogleAppMeasurement +0 -0
  233. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/tvos-arm64_x86_64-simulator/GoogleAppMeasurement.framework/Info.plist +20 -0
  234. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/tvos-arm64_x86_64-simulator/GoogleAppMeasurement.framework/Modules/module.modulemap +10 -0
  235. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurementIdentitySupport.xcframework/Info.plist +97 -0
  236. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurementIdentitySupport.xcframework/ios-arm64_armv7/GoogleAppMeasurementIdentitySupport.framework/GoogleAppMeasurementIdentitySupport +0 -0
  237. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurementIdentitySupport.xcframework/ios-arm64_armv7/GoogleAppMeasurementIdentitySupport.framework/Info.plist +20 -0
  238. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurementIdentitySupport.xcframework/ios-arm64_armv7/GoogleAppMeasurementIdentitySupport.framework/Modules/module.modulemap +5 -0
  239. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurementIdentitySupport.xcframework/ios-arm64_i386_x86_64-simulator/GoogleAppMeasurementIdentitySupport.framework/GoogleAppMeasurementIdentitySupport +0 -0
  240. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurementIdentitySupport.xcframework/ios-arm64_i386_x86_64-simulator/GoogleAppMeasurementIdentitySupport.framework/Info.plist +20 -0
  241. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurementIdentitySupport.xcframework/ios-arm64_i386_x86_64-simulator/GoogleAppMeasurementIdentitySupport.framework/Modules/module.modulemap +5 -0
  242. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurementIdentitySupport.xcframework/ios-arm64_x86_64-maccatalyst/GoogleAppMeasurementIdentitySupport.framework/GoogleAppMeasurementIdentitySupport +0 -0
  243. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurementIdentitySupport.xcframework/ios-arm64_x86_64-maccatalyst/GoogleAppMeasurementIdentitySupport.framework/Info.plist +20 -0
  244. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurementIdentitySupport.xcframework/ios-arm64_x86_64-maccatalyst/GoogleAppMeasurementIdentitySupport.framework/Modules/module.modulemap +5 -0
  245. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurementIdentitySupport.xcframework/macos-arm64_x86_64/GoogleAppMeasurementIdentitySupport.framework/GoogleAppMeasurementIdentitySupport +0 -0
  246. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurementIdentitySupport.xcframework/macos-arm64_x86_64/GoogleAppMeasurementIdentitySupport.framework/Info.plist +20 -0
  247. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurementIdentitySupport.xcframework/macos-arm64_x86_64/GoogleAppMeasurementIdentitySupport.framework/Modules/module.modulemap +5 -0
  248. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurementIdentitySupport.xcframework/tvos-arm64/GoogleAppMeasurementIdentitySupport.framework/GoogleAppMeasurementIdentitySupport +0 -0
  249. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurementIdentitySupport.xcframework/tvos-arm64/GoogleAppMeasurementIdentitySupport.framework/Info.plist +20 -0
  250. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurementIdentitySupport.xcframework/tvos-arm64/GoogleAppMeasurementIdentitySupport.framework/Modules/module.modulemap +5 -0
  251. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurementIdentitySupport.xcframework/tvos-arm64_x86_64-simulator/GoogleAppMeasurementIdentitySupport.framework/GoogleAppMeasurementIdentitySupport +0 -0
  252. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurementIdentitySupport.xcframework/tvos-arm64_x86_64-simulator/GoogleAppMeasurementIdentitySupport.framework/Info.plist +20 -0
  253. data/examples/AExample/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurementIdentitySupport.xcframework/tvos-arm64_x86_64-simulator/GoogleAppMeasurementIdentitySupport.framework/Modules/module.modulemap +5 -0
  254. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/GDTCCTCompressionHelper.m +95 -0
  255. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/GDTCCTNanopbHelpers.m +270 -0
  256. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/GDTCCTUploadOperation.m +573 -0
  257. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/GDTCCTUploader.m +210 -0
  258. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/GDTCOREvent+GDTCCTSupport.m +240 -0
  259. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h +40 -0
  260. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h +128 -0
  261. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploadOperation.h +76 -0
  262. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploader.h +45 -0
  263. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c +128 -0
  264. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h +281 -0
  265. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/Public/GDTCOREvent+GDTCCTSupport.h +51 -0
  266. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m +36 -0
  267. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORClock.m +178 -0
  268. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m +55 -0
  269. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORDirectorySizeTracker.m +101 -0
  270. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCOREndpoints.m +92 -0
  271. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m +153 -0
  272. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage+Promises.m +104 -0
  273. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage.m +826 -0
  274. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m +119 -0
  275. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m +604 -0
  276. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m +125 -0
  277. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m +157 -0
  278. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORStorageEventSelector.m +39 -0
  279. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m +111 -0
  280. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m +92 -0
  281. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORUploadBatch.m +30 -0
  282. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m +176 -0
  283. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORAssert.h +95 -0
  284. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORDirectorySizeTracker.h +66 -0
  285. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORLifecycle.h +63 -0
  286. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORPlatform.h +225 -0
  287. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORReachability.h +31 -0
  288. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORRegistrar.h +50 -0
  289. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageEventSelector.h +61 -0
  290. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageProtocol.h +171 -0
  291. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORUploader.h +59 -0
  292. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCOREndpoints_Private.h +27 -0
  293. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h +33 -0
  294. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage+Promises.h +28 -0
  295. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage.h +158 -0
  296. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h +30 -0
  297. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h +35 -0
  298. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h +57 -0
  299. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h +37 -0
  300. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h +39 -0
  301. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadBatch.h +37 -0
  302. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h +68 -0
  303. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORClock.h +66 -0
  304. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORConsoleLogger.h +144 -0
  305. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREndpoints.h +36 -0
  306. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREvent.h +87 -0
  307. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventDataObject.h +36 -0
  308. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventTransformer.h +38 -0
  309. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTargets.h +40 -0
  310. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTransport.h +92 -0
  311. data/examples/AExample/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GoogleDataTransport.h +24 -0
  312. data/examples/AExample/Pods/GoogleDataTransport/LICENSE +202 -0
  313. data/examples/AExample/Pods/GoogleDataTransport/README.md +231 -0
  314. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m +1070 -0
  315. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/GULSceneDelegateSwizzler.m +439 -0
  316. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h +55 -0
  317. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h +48 -0
  318. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULAppDelegateSwizzler.h +107 -0
  319. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULApplication.h +50 -0
  320. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULSceneDelegateSwizzler.h +76 -0
  321. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Common/GULLoggerCodes.h +56 -0
  322. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Environment/GULHeartbeatDateStorage.m +153 -0
  323. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Environment/GULHeartbeatDateStorageUserDefaults.m +68 -0
  324. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Environment/GULSecureCoding.m +103 -0
  325. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULAppEnvironmentUtil.h +60 -0
  326. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorable.h +40 -0
  327. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorage.h +54 -0
  328. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorageUserDefaults.h +51 -0
  329. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainStorage.h +79 -0
  330. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainUtils.h +61 -0
  331. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULSecureCoding.h +36 -0
  332. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULURLSessionDataResponse.h +31 -0
  333. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/NSURLSession+GULPromises.h +37 -0
  334. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m +192 -0
  335. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m +113 -0
  336. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Environment/URLSessionPromiseWrapper/GULURLSessionDataResponse.m +30 -0
  337. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Environment/URLSessionPromiseWrapper/NSURLSession+GULPromises.m +46 -0
  338. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m +333 -0
  339. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Logger/GULLogger.m +215 -0
  340. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Logger/Public/GoogleUtilities/GULLogger.h +159 -0
  341. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Logger/Public/GoogleUtilities/GULLoggerLevel.h +37 -0
  342. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/MethodSwizzler/GULSwizzler.m +153 -0
  343. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULOriginalIMPConvenienceMacros.h +207 -0
  344. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULSwizzler.h +71 -0
  345. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/NSData+zlib/GULNSData+zlib.m +207 -0
  346. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/NSData+zlib/Public/GoogleUtilities/GULNSData+zlib.h +49 -0
  347. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Network/GULMutableDictionary.m +101 -0
  348. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Network/GULNetwork.m +390 -0
  349. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Network/GULNetworkConstants.m +41 -0
  350. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Network/GULNetworkInternal.h +24 -0
  351. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Network/GULNetworkURLSession.m +766 -0
  352. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Network/Public/GoogleUtilities/GULMutableDictionary.h +46 -0
  353. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Network/Public/GoogleUtilities/GULNetwork.h +87 -0
  354. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkConstants.h +71 -0
  355. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkLoggerProtocol.h +49 -0
  356. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkMessageCode.h +47 -0
  357. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkURLSession.h +62 -0
  358. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h +48 -0
  359. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Reachability/GULReachabilityChecker.m +263 -0
  360. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Reachability/GULReachabilityMessageCode.h +29 -0
  361. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/Reachability/Public/GoogleUtilities/GULReachabilityChecker.h +79 -0
  362. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/UserDefaults/GULUserDefaults.m +213 -0
  363. data/examples/AExample/Pods/GoogleUtilities/GoogleUtilities/UserDefaults/Public/GoogleUtilities/GULUserDefaults.h +110 -0
  364. data/examples/AExample/Pods/GoogleUtilities/LICENSE +247 -0
  365. data/examples/AExample/Pods/GoogleUtilities/README.md +189 -0
  366. data/examples/AExample/Pods/Manifest.lock +112 -0
  367. data/examples/AExample/Pods/Pods.xcodeproj/project.pbxproj +3670 -0
  368. data/examples/AExample/Pods/Pods.xcodeproj/xcuserdata/xuzhongping.xcuserdatad/xcschemes/FirebaseAnalytics.xcscheme +58 -0
  369. data/examples/AExample/Pods/Pods.xcodeproj/xcuserdata/xuzhongping.xcuserdatad/xcschemes/FirebaseCore.xcscheme +58 -0
  370. data/examples/AExample/Pods/Pods.xcodeproj/xcuserdata/xuzhongping.xcuserdatad/xcschemes/FirebaseCoreDiagnostics.xcscheme +58 -0
  371. data/examples/AExample/Pods/Pods.xcodeproj/xcuserdata/xuzhongping.xcuserdatad/xcschemes/FirebaseInstallations.xcscheme +58 -0
  372. data/examples/AExample/Pods/Pods.xcodeproj/xcuserdata/xuzhongping.xcuserdatad/xcschemes/GoogleAppMeasurement.xcscheme +58 -0
  373. data/examples/AExample/Pods/Pods.xcodeproj/xcuserdata/xuzhongping.xcuserdatad/xcschemes/GoogleDataTransport.xcscheme +58 -0
  374. data/examples/AExample/Pods/Pods.xcodeproj/xcuserdata/xuzhongping.xcuserdatad/xcschemes/GoogleUtilities.xcscheme +58 -0
  375. data/examples/AExample/Pods/Pods.xcodeproj/xcuserdata/xuzhongping.xcuserdatad/xcschemes/Pods-AExample-AExampleCP.xcscheme +58 -0
  376. data/examples/AExample/Pods/Pods.xcodeproj/xcuserdata/xuzhongping.xcuserdatad/xcschemes/Pods-AExample.xcscheme +58 -0
  377. data/examples/AExample/Pods/Pods.xcodeproj/xcuserdata/xuzhongping.xcuserdatad/xcschemes/PromisesObjC.xcscheme +58 -0
  378. data/examples/AExample/Pods/Pods.xcodeproj/xcuserdata/xuzhongping.xcuserdatad/xcschemes/nanopb.xcscheme +58 -0
  379. data/examples/AExample/Pods/Pods.xcodeproj/xcuserdata/xuzhongping.xcuserdatad/xcschemes/xcschememanagement.plist +66 -0
  380. data/examples/AExample/Pods/PromisesObjC/LICENSE +202 -0
  381. data/examples/AExample/Pods/PromisesObjC/README.md +60 -0
  382. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+All.m +86 -0
  383. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Always.m +58 -0
  384. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Any.m +112 -0
  385. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Async.m +70 -0
  386. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Await.m +48 -0
  387. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Catch.m +55 -0
  388. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Delay.m +59 -0
  389. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Do.m +59 -0
  390. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Race.m +65 -0
  391. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Recover.m +54 -0
  392. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Reduce.m +61 -0
  393. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Retry.m +128 -0
  394. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Testing.m +55 -0
  395. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Then.m +50 -0
  396. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Timeout.m +64 -0
  397. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Validate.m +56 -0
  398. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Wrap.m +420 -0
  399. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise.m +299 -0
  400. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/FBLPromiseError.m +19 -0
  401. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+All.h +63 -0
  402. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Always.h +54 -0
  403. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Any.h +69 -0
  404. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Async.h +60 -0
  405. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Await.h +32 -0
  406. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Catch.h +59 -0
  407. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Delay.h +59 -0
  408. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Do.h +55 -0
  409. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Race.h +62 -0
  410. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Recover.h +60 -0
  411. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Reduce.h +71 -0
  412. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Retry.h +165 -0
  413. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Testing.h +57 -0
  414. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Then.h +63 -0
  415. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Timeout.h +57 -0
  416. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Validate.h +60 -0
  417. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Wrap.h +316 -0
  418. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise.h +93 -0
  419. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromiseError.h +43 -0
  420. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromisePrivate.h +66 -0
  421. data/examples/AExample/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromises.h +32 -0
  422. data/examples/AExample/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics-xcframeworks-input-files.xcfilelist +2 -0
  423. data/examples/AExample/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics-xcframeworks-output-files.xcfilelist +1 -0
  424. data/examples/AExample/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics-xcframeworks.sh +109 -0
  425. data/examples/AExample/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.debug.xcconfig +13 -0
  426. data/examples/AExample/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.release.xcconfig +13 -0
  427. data/examples/AExample/Pods/Target Support Files/FirebaseCore/FirebaseCore-Info.plist +26 -0
  428. data/examples/AExample/Pods/Target Support Files/FirebaseCore/FirebaseCore-dummy.m +5 -0
  429. data/examples/AExample/Pods/Target Support Files/FirebaseCore/FirebaseCore-umbrella.h +22 -0
  430. data/examples/AExample/Pods/Target Support Files/FirebaseCore/FirebaseCore.debug.xcconfig +16 -0
  431. data/examples/AExample/Pods/Target Support Files/FirebaseCore/FirebaseCore.modulemap +6 -0
  432. data/examples/AExample/Pods/Target Support Files/FirebaseCore/FirebaseCore.release.xcconfig +16 -0
  433. data/examples/AExample/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-Info.plist +26 -0
  434. data/examples/AExample/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-dummy.m +5 -0
  435. data/examples/AExample/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-umbrella.h +17 -0
  436. data/examples/AExample/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.debug.xcconfig +17 -0
  437. data/examples/AExample/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.modulemap +6 -0
  438. data/examples/AExample/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.release.xcconfig +17 -0
  439. data/examples/AExample/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations-Info.plist +26 -0
  440. data/examples/AExample/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations-dummy.m +5 -0
  441. data/examples/AExample/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations-umbrella.h +20 -0
  442. data/examples/AExample/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.debug.xcconfig +15 -0
  443. data/examples/AExample/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.modulemap +6 -0
  444. data/examples/AExample/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.release.xcconfig +15 -0
  445. data/examples/AExample/Pods/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks-input-files.xcfilelist +3 -0
  446. data/examples/AExample/Pods/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks-output-files.xcfilelist +2 -0
  447. data/examples/AExample/Pods/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks.sh +110 -0
  448. data/examples/AExample/Pods/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement.debug.xcconfig +13 -0
  449. data/examples/AExample/Pods/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement.release.xcconfig +13 -0
  450. data/examples/AExample/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport-Info.plist +26 -0
  451. data/examples/AExample/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport-dummy.m +5 -0
  452. data/examples/AExample/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport-umbrella.h +25 -0
  453. data/examples/AExample/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.debug.xcconfig +16 -0
  454. data/examples/AExample/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.modulemap +6 -0
  455. data/examples/AExample/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.release.xcconfig +16 -0
  456. data/examples/AExample/Pods/Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist +26 -0
  457. data/examples/AExample/Pods/Target Support Files/GoogleUtilities/GoogleUtilities-dummy.m +5 -0
  458. data/examples/AExample/Pods/Target Support Files/GoogleUtilities/GoogleUtilities-umbrella.h +41 -0
  459. data/examples/AExample/Pods/Target Support Files/GoogleUtilities/GoogleUtilities.debug.xcconfig +15 -0
  460. data/examples/AExample/Pods/Target Support Files/GoogleUtilities/GoogleUtilities.modulemap +6 -0
  461. data/examples/AExample/Pods/Target Support Files/GoogleUtilities/GoogleUtilities.release.xcconfig +15 -0
  462. data/examples/AExample/Pods/Target Support Files/Pods-AExample/Pods-AExample-Info.plist +26 -0
  463. data/examples/AExample/Pods/Target Support Files/Pods-AExample/Pods-AExample-acknowledgements.markdown +1316 -0
  464. data/examples/AExample/Pods/Target Support Files/Pods-AExample/Pods-AExample-acknowledgements.plist +1396 -0
  465. data/examples/AExample/Pods/Target Support Files/Pods-AExample/Pods-AExample-dummy.m +5 -0
  466. data/examples/AExample/Pods/Target Support Files/Pods-AExample/Pods-AExample-frameworks-Debug-input-files.xcfilelist +8 -0
  467. data/examples/AExample/Pods/Target Support Files/Pods-AExample/Pods-AExample-frameworks-Debug-output-files.xcfilelist +7 -0
  468. data/examples/AExample/Pods/Target Support Files/Pods-AExample/Pods-AExample-frameworks-Release-input-files.xcfilelist +8 -0
  469. data/examples/AExample/Pods/Target Support Files/Pods-AExample/Pods-AExample-frameworks-Release-output-files.xcfilelist +7 -0
  470. data/examples/AExample/Pods/Target Support Files/Pods-AExample/Pods-AExample-frameworks.sh +198 -0
  471. data/examples/AExample/Pods/Target Support Files/Pods-AExample/Pods-AExample-umbrella.h +16 -0
  472. data/examples/AExample/Pods/Target Support Files/Pods-AExample/Pods-AExample.debug.xcconfig +12 -0
  473. data/examples/AExample/Pods/Target Support Files/Pods-AExample/Pods-AExample.modulemap +6 -0
  474. data/examples/AExample/Pods/Target Support Files/Pods-AExample/Pods-AExample.release.xcconfig +12 -0
  475. data/examples/AExample/Pods/Target Support Files/Pods-AExample-AExampleCP/Pods-AExample-AExampleCP-Info.plist +26 -0
  476. data/examples/AExample/Pods/Target Support Files/Pods-AExample-AExampleCP/Pods-AExample-AExampleCP-acknowledgements.markdown +1316 -0
  477. data/examples/AExample/Pods/Target Support Files/Pods-AExample-AExampleCP/Pods-AExample-AExampleCP-acknowledgements.plist +1396 -0
  478. data/examples/AExample/Pods/Target Support Files/Pods-AExample-AExampleCP/Pods-AExample-AExampleCP-dummy.m +5 -0
  479. data/examples/AExample/Pods/Target Support Files/Pods-AExample-AExampleCP/Pods-AExample-AExampleCP-frameworks-Debug-input-files.xcfilelist +8 -0
  480. data/examples/AExample/Pods/Target Support Files/Pods-AExample-AExampleCP/Pods-AExample-AExampleCP-frameworks-Debug-output-files.xcfilelist +7 -0
  481. data/examples/AExample/Pods/Target Support Files/Pods-AExample-AExampleCP/Pods-AExample-AExampleCP-frameworks-Release-input-files.xcfilelist +8 -0
  482. data/examples/AExample/Pods/Target Support Files/Pods-AExample-AExampleCP/Pods-AExample-AExampleCP-frameworks-Release-output-files.xcfilelist +7 -0
  483. data/examples/AExample/Pods/Target Support Files/Pods-AExample-AExampleCP/Pods-AExample-AExampleCP-frameworks.sh +198 -0
  484. data/examples/AExample/Pods/Target Support Files/Pods-AExample-AExampleCP/Pods-AExample-AExampleCP-umbrella.h +16 -0
  485. data/examples/AExample/Pods/Target Support Files/Pods-AExample-AExampleCP/Pods-AExample-AExampleCP.debug.xcconfig +12 -0
  486. data/examples/AExample/Pods/Target Support Files/Pods-AExample-AExampleCP/Pods-AExample-AExampleCP.modulemap +6 -0
  487. data/examples/AExample/Pods/Target Support Files/Pods-AExample-AExampleCP/Pods-AExample-AExampleCP.release.xcconfig +12 -0
  488. data/examples/AExample/Pods/Target Support Files/PromisesObjC/PromisesObjC-Info.plist +26 -0
  489. data/examples/AExample/Pods/Target Support Files/PromisesObjC/PromisesObjC-dummy.m +5 -0
  490. data/examples/AExample/Pods/Target Support Files/PromisesObjC/PromisesObjC-umbrella.h +36 -0
  491. data/examples/AExample/Pods/Target Support Files/PromisesObjC/PromisesObjC.debug.xcconfig +12 -0
  492. data/examples/AExample/Pods/Target Support Files/PromisesObjC/PromisesObjC.modulemap +6 -0
  493. data/examples/AExample/Pods/Target Support Files/PromisesObjC/PromisesObjC.release.xcconfig +12 -0
  494. data/examples/AExample/Pods/Target Support Files/nanopb/nanopb-Info.plist +26 -0
  495. data/examples/AExample/Pods/Target Support Files/nanopb/nanopb-dummy.m +5 -0
  496. data/examples/AExample/Pods/Target Support Files/nanopb/nanopb-prefix.pch +12 -0
  497. data/examples/AExample/Pods/Target Support Files/nanopb/nanopb-umbrella.h +26 -0
  498. data/examples/AExample/Pods/Target Support Files/nanopb/nanopb.debug.xcconfig +11 -0
  499. data/examples/AExample/Pods/Target Support Files/nanopb/nanopb.modulemap +6 -0
  500. data/examples/AExample/Pods/Target Support Files/nanopb/nanopb.release.xcconfig +11 -0
  501. data/examples/AExample/Pods/nanopb/LICENSE.txt +20 -0
  502. data/examples/AExample/Pods/nanopb/README.md +71 -0
  503. data/examples/AExample/Pods/nanopb/pb.h +599 -0
  504. data/examples/AExample/Pods/nanopb/pb_common.c +97 -0
  505. data/examples/AExample/Pods/nanopb/pb_common.h +42 -0
  506. data/examples/AExample/Pods/nanopb/pb_decode.c +1564 -0
  507. data/examples/AExample/Pods/nanopb/pb_decode.h +178 -0
  508. data/examples/AExample/Pods/nanopb/pb_encode.c +913 -0
  509. data/examples/AExample/Pods/nanopb/pb_encode.h +170 -0
  510. data/lib/cocoapods-catalyst-validator/cocoapods-catalyst-validator.rb +110 -0
  511. data/lib/cocoapods-catalyst-validator/gem_version.rb +3 -0
  512. data/lib/cocoapods_plugin.rb +3 -0
  513. data/spec/command/validator_spec.rb +12 -0
  514. data/spec/spec_helper.rb +50 -0
  515. metadata +601 -0
@@ -0,0 +1,1396 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>PreferenceSpecifiers</key>
6
+ <array>
7
+ <dict>
8
+ <key>FooterText</key>
9
+ <string>This application makes use of the following third party libraries:</string>
10
+ <key>Title</key>
11
+ <string>Acknowledgements</string>
12
+ <key>Type</key>
13
+ <string>PSGroupSpecifier</string>
14
+ </dict>
15
+ <dict>
16
+ <key>FooterText</key>
17
+ <string>Copyright 2021 Google</string>
18
+ <key>License</key>
19
+ <string>Copyright</string>
20
+ <key>Title</key>
21
+ <string>FirebaseAnalytics</string>
22
+ <key>Type</key>
23
+ <string>PSGroupSpecifier</string>
24
+ </dict>
25
+ <dict>
26
+ <key>FooterText</key>
27
+ <string>
28
+ Apache License
29
+ Version 2.0, January 2004
30
+ http://www.apache.org/licenses/
31
+
32
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
33
+
34
+ 1. Definitions.
35
+
36
+ "License" shall mean the terms and conditions for use, reproduction,
37
+ and distribution as defined by Sections 1 through 9 of this document.
38
+
39
+ "Licensor" shall mean the copyright owner or entity authorized by
40
+ the copyright owner that is granting the License.
41
+
42
+ "Legal Entity" shall mean the union of the acting entity and all
43
+ other entities that control, are controlled by, or are under common
44
+ control with that entity. For the purposes of this definition,
45
+ "control" means (i) the power, direct or indirect, to cause the
46
+ direction or management of such entity, whether by contract or
47
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
48
+ outstanding shares, or (iii) beneficial ownership of such entity.
49
+
50
+ "You" (or "Your") shall mean an individual or Legal Entity
51
+ exercising permissions granted by this License.
52
+
53
+ "Source" form shall mean the preferred form for making modifications,
54
+ including but not limited to software source code, documentation
55
+ source, and configuration files.
56
+
57
+ "Object" form shall mean any form resulting from mechanical
58
+ transformation or translation of a Source form, including but
59
+ not limited to compiled object code, generated documentation,
60
+ and conversions to other media types.
61
+
62
+ "Work" shall mean the work of authorship, whether in Source or
63
+ Object form, made available under the License, as indicated by a
64
+ copyright notice that is included in or attached to the work
65
+ (an example is provided in the Appendix below).
66
+
67
+ "Derivative Works" shall mean any work, whether in Source or Object
68
+ form, that is based on (or derived from) the Work and for which the
69
+ editorial revisions, annotations, elaborations, or other modifications
70
+ represent, as a whole, an original work of authorship. For the purposes
71
+ of this License, Derivative Works shall not include works that remain
72
+ separable from, or merely link (or bind by name) to the interfaces of,
73
+ the Work and Derivative Works thereof.
74
+
75
+ "Contribution" shall mean any work of authorship, including
76
+ the original version of the Work and any modifications or additions
77
+ to that Work or Derivative Works thereof, that is intentionally
78
+ submitted to Licensor for inclusion in the Work by the copyright owner
79
+ or by an individual or Legal Entity authorized to submit on behalf of
80
+ the copyright owner. For the purposes of this definition, "submitted"
81
+ means any form of electronic, verbal, or written communication sent
82
+ to the Licensor or its representatives, including but not limited to
83
+ communication on electronic mailing lists, source code control systems,
84
+ and issue tracking systems that are managed by, or on behalf of, the
85
+ Licensor for the purpose of discussing and improving the Work, but
86
+ excluding communication that is conspicuously marked or otherwise
87
+ designated in writing by the copyright owner as "Not a Contribution."
88
+
89
+ "Contributor" shall mean Licensor and any individual or Legal Entity
90
+ on behalf of whom a Contribution has been received by Licensor and
91
+ subsequently incorporated within the Work.
92
+
93
+ 2. Grant of Copyright License. Subject to the terms and conditions of
94
+ this License, each Contributor hereby grants to You a perpetual,
95
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
96
+ copyright license to reproduce, prepare Derivative Works of,
97
+ publicly display, publicly perform, sublicense, and distribute the
98
+ Work and such Derivative Works in Source or Object form.
99
+
100
+ 3. Grant of Patent License. Subject to the terms and conditions of
101
+ this License, each Contributor hereby grants to You a perpetual,
102
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
103
+ (except as stated in this section) patent license to make, have made,
104
+ use, offer to sell, sell, import, and otherwise transfer the Work,
105
+ where such license applies only to those patent claims licensable
106
+ by such Contributor that are necessarily infringed by their
107
+ Contribution(s) alone or by combination of their Contribution(s)
108
+ with the Work to which such Contribution(s) was submitted. If You
109
+ institute patent litigation against any entity (including a
110
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
111
+ or a Contribution incorporated within the Work constitutes direct
112
+ or contributory patent infringement, then any patent licenses
113
+ granted to You under this License for that Work shall terminate
114
+ as of the date such litigation is filed.
115
+
116
+ 4. Redistribution. You may reproduce and distribute copies of the
117
+ Work or Derivative Works thereof in any medium, with or without
118
+ modifications, and in Source or Object form, provided that You
119
+ meet the following conditions:
120
+
121
+ (a) You must give any other recipients of the Work or
122
+ Derivative Works a copy of this License; and
123
+
124
+ (b) You must cause any modified files to carry prominent notices
125
+ stating that You changed the files; and
126
+
127
+ (c) You must retain, in the Source form of any Derivative Works
128
+ that You distribute, all copyright, patent, trademark, and
129
+ attribution notices from the Source form of the Work,
130
+ excluding those notices that do not pertain to any part of
131
+ the Derivative Works; and
132
+
133
+ (d) If the Work includes a "NOTICE" text file as part of its
134
+ distribution, then any Derivative Works that You distribute must
135
+ include a readable copy of the attribution notices contained
136
+ within such NOTICE file, excluding those notices that do not
137
+ pertain to any part of the Derivative Works, in at least one
138
+ of the following places: within a NOTICE text file distributed
139
+ as part of the Derivative Works; within the Source form or
140
+ documentation, if provided along with the Derivative Works; or,
141
+ within a display generated by the Derivative Works, if and
142
+ wherever such third-party notices normally appear. The contents
143
+ of the NOTICE file are for informational purposes only and
144
+ do not modify the License. You may add Your own attribution
145
+ notices within Derivative Works that You distribute, alongside
146
+ or as an addendum to the NOTICE text from the Work, provided
147
+ that such additional attribution notices cannot be construed
148
+ as modifying the License.
149
+
150
+ You may add Your own copyright statement to Your modifications and
151
+ may provide additional or different license terms and conditions
152
+ for use, reproduction, or distribution of Your modifications, or
153
+ for any such Derivative Works as a whole, provided Your use,
154
+ reproduction, and distribution of the Work otherwise complies with
155
+ the conditions stated in this License.
156
+
157
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
158
+ any Contribution intentionally submitted for inclusion in the Work
159
+ by You to the Licensor shall be under the terms and conditions of
160
+ this License, without any additional terms or conditions.
161
+ Notwithstanding the above, nothing herein shall supersede or modify
162
+ the terms of any separate license agreement you may have executed
163
+ with Licensor regarding such Contributions.
164
+
165
+ 6. Trademarks. This License does not grant permission to use the trade
166
+ names, trademarks, service marks, or product names of the Licensor,
167
+ except as required for reasonable and customary use in describing the
168
+ origin of the Work and reproducing the content of the NOTICE file.
169
+
170
+ 7. Disclaimer of Warranty. Unless required by applicable law or
171
+ agreed to in writing, Licensor provides the Work (and each
172
+ Contributor provides its Contributions) on an "AS IS" BASIS,
173
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
174
+ implied, including, without limitation, any warranties or conditions
175
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
176
+ PARTICULAR PURPOSE. You are solely responsible for determining the
177
+ appropriateness of using or redistributing the Work and assume any
178
+ risks associated with Your exercise of permissions under this License.
179
+
180
+ 8. Limitation of Liability. In no event and under no legal theory,
181
+ whether in tort (including negligence), contract, or otherwise,
182
+ unless required by applicable law (such as deliberate and grossly
183
+ negligent acts) or agreed to in writing, shall any Contributor be
184
+ liable to You for damages, including any direct, indirect, special,
185
+ incidental, or consequential damages of any character arising as a
186
+ result of this License or out of the use or inability to use the
187
+ Work (including but not limited to damages for loss of goodwill,
188
+ work stoppage, computer failure or malfunction, or any and all
189
+ other commercial damages or losses), even if such Contributor
190
+ has been advised of the possibility of such damages.
191
+
192
+ 9. Accepting Warranty or Additional Liability. While redistributing
193
+ the Work or Derivative Works thereof, You may choose to offer,
194
+ and charge a fee for, acceptance of support, warranty, indemnity,
195
+ or other liability obligations and/or rights consistent with this
196
+ License. However, in accepting such obligations, You may act only
197
+ on Your own behalf and on Your sole responsibility, not on behalf
198
+ of any other Contributor, and only if You agree to indemnify,
199
+ defend, and hold each Contributor harmless for any liability
200
+ incurred by, or claims asserted against, such Contributor by reason
201
+ of your accepting any such warranty or additional liability.
202
+
203
+ END OF TERMS AND CONDITIONS
204
+
205
+ APPENDIX: How to apply the Apache License to your work.
206
+
207
+ To apply the Apache License to your work, attach the following
208
+ boilerplate notice, with the fields enclosed by brackets "[]"
209
+ replaced with your own identifying information. (Don't include
210
+ the brackets!) The text should be enclosed in the appropriate
211
+ comment syntax for the file format. We also recommend that a
212
+ file or class name and description of purpose be included on the
213
+ same "printed page" as the copyright notice for easier
214
+ identification within third-party archives.
215
+
216
+ Copyright [yyyy] [name of copyright owner]
217
+
218
+ Licensed under the Apache License, Version 2.0 (the "License");
219
+ you may not use this file except in compliance with the License.
220
+ You may obtain a copy of the License at
221
+
222
+ http://www.apache.org/licenses/LICENSE-2.0
223
+
224
+ Unless required by applicable law or agreed to in writing, software
225
+ distributed under the License is distributed on an "AS IS" BASIS,
226
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
227
+ See the License for the specific language governing permissions and
228
+ limitations under the License.
229
+ </string>
230
+ <key>License</key>
231
+ <string>Apache</string>
232
+ <key>Title</key>
233
+ <string>FirebaseCore</string>
234
+ <key>Type</key>
235
+ <string>PSGroupSpecifier</string>
236
+ </dict>
237
+ <dict>
238
+ <key>FooterText</key>
239
+ <string>
240
+ Apache License
241
+ Version 2.0, January 2004
242
+ http://www.apache.org/licenses/
243
+
244
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
245
+
246
+ 1. Definitions.
247
+
248
+ "License" shall mean the terms and conditions for use, reproduction,
249
+ and distribution as defined by Sections 1 through 9 of this document.
250
+
251
+ "Licensor" shall mean the copyright owner or entity authorized by
252
+ the copyright owner that is granting the License.
253
+
254
+ "Legal Entity" shall mean the union of the acting entity and all
255
+ other entities that control, are controlled by, or are under common
256
+ control with that entity. For the purposes of this definition,
257
+ "control" means (i) the power, direct or indirect, to cause the
258
+ direction or management of such entity, whether by contract or
259
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
260
+ outstanding shares, or (iii) beneficial ownership of such entity.
261
+
262
+ "You" (or "Your") shall mean an individual or Legal Entity
263
+ exercising permissions granted by this License.
264
+
265
+ "Source" form shall mean the preferred form for making modifications,
266
+ including but not limited to software source code, documentation
267
+ source, and configuration files.
268
+
269
+ "Object" form shall mean any form resulting from mechanical
270
+ transformation or translation of a Source form, including but
271
+ not limited to compiled object code, generated documentation,
272
+ and conversions to other media types.
273
+
274
+ "Work" shall mean the work of authorship, whether in Source or
275
+ Object form, made available under the License, as indicated by a
276
+ copyright notice that is included in or attached to the work
277
+ (an example is provided in the Appendix below).
278
+
279
+ "Derivative Works" shall mean any work, whether in Source or Object
280
+ form, that is based on (or derived from) the Work and for which the
281
+ editorial revisions, annotations, elaborations, or other modifications
282
+ represent, as a whole, an original work of authorship. For the purposes
283
+ of this License, Derivative Works shall not include works that remain
284
+ separable from, or merely link (or bind by name) to the interfaces of,
285
+ the Work and Derivative Works thereof.
286
+
287
+ "Contribution" shall mean any work of authorship, including
288
+ the original version of the Work and any modifications or additions
289
+ to that Work or Derivative Works thereof, that is intentionally
290
+ submitted to Licensor for inclusion in the Work by the copyright owner
291
+ or by an individual or Legal Entity authorized to submit on behalf of
292
+ the copyright owner. For the purposes of this definition, "submitted"
293
+ means any form of electronic, verbal, or written communication sent
294
+ to the Licensor or its representatives, including but not limited to
295
+ communication on electronic mailing lists, source code control systems,
296
+ and issue tracking systems that are managed by, or on behalf of, the
297
+ Licensor for the purpose of discussing and improving the Work, but
298
+ excluding communication that is conspicuously marked or otherwise
299
+ designated in writing by the copyright owner as "Not a Contribution."
300
+
301
+ "Contributor" shall mean Licensor and any individual or Legal Entity
302
+ on behalf of whom a Contribution has been received by Licensor and
303
+ subsequently incorporated within the Work.
304
+
305
+ 2. Grant of Copyright License. Subject to the terms and conditions of
306
+ this License, each Contributor hereby grants to You a perpetual,
307
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
308
+ copyright license to reproduce, prepare Derivative Works of,
309
+ publicly display, publicly perform, sublicense, and distribute the
310
+ Work and such Derivative Works in Source or Object form.
311
+
312
+ 3. Grant of Patent License. Subject to the terms and conditions of
313
+ this License, each Contributor hereby grants to You a perpetual,
314
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
315
+ (except as stated in this section) patent license to make, have made,
316
+ use, offer to sell, sell, import, and otherwise transfer the Work,
317
+ where such license applies only to those patent claims licensable
318
+ by such Contributor that are necessarily infringed by their
319
+ Contribution(s) alone or by combination of their Contribution(s)
320
+ with the Work to which such Contribution(s) was submitted. If You
321
+ institute patent litigation against any entity (including a
322
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
323
+ or a Contribution incorporated within the Work constitutes direct
324
+ or contributory patent infringement, then any patent licenses
325
+ granted to You under this License for that Work shall terminate
326
+ as of the date such litigation is filed.
327
+
328
+ 4. Redistribution. You may reproduce and distribute copies of the
329
+ Work or Derivative Works thereof in any medium, with or without
330
+ modifications, and in Source or Object form, provided that You
331
+ meet the following conditions:
332
+
333
+ (a) You must give any other recipients of the Work or
334
+ Derivative Works a copy of this License; and
335
+
336
+ (b) You must cause any modified files to carry prominent notices
337
+ stating that You changed the files; and
338
+
339
+ (c) You must retain, in the Source form of any Derivative Works
340
+ that You distribute, all copyright, patent, trademark, and
341
+ attribution notices from the Source form of the Work,
342
+ excluding those notices that do not pertain to any part of
343
+ the Derivative Works; and
344
+
345
+ (d) If the Work includes a "NOTICE" text file as part of its
346
+ distribution, then any Derivative Works that You distribute must
347
+ include a readable copy of the attribution notices contained
348
+ within such NOTICE file, excluding those notices that do not
349
+ pertain to any part of the Derivative Works, in at least one
350
+ of the following places: within a NOTICE text file distributed
351
+ as part of the Derivative Works; within the Source form or
352
+ documentation, if provided along with the Derivative Works; or,
353
+ within a display generated by the Derivative Works, if and
354
+ wherever such third-party notices normally appear. The contents
355
+ of the NOTICE file are for informational purposes only and
356
+ do not modify the License. You may add Your own attribution
357
+ notices within Derivative Works that You distribute, alongside
358
+ or as an addendum to the NOTICE text from the Work, provided
359
+ that such additional attribution notices cannot be construed
360
+ as modifying the License.
361
+
362
+ You may add Your own copyright statement to Your modifications and
363
+ may provide additional or different license terms and conditions
364
+ for use, reproduction, or distribution of Your modifications, or
365
+ for any such Derivative Works as a whole, provided Your use,
366
+ reproduction, and distribution of the Work otherwise complies with
367
+ the conditions stated in this License.
368
+
369
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
370
+ any Contribution intentionally submitted for inclusion in the Work
371
+ by You to the Licensor shall be under the terms and conditions of
372
+ this License, without any additional terms or conditions.
373
+ Notwithstanding the above, nothing herein shall supersede or modify
374
+ the terms of any separate license agreement you may have executed
375
+ with Licensor regarding such Contributions.
376
+
377
+ 6. Trademarks. This License does not grant permission to use the trade
378
+ names, trademarks, service marks, or product names of the Licensor,
379
+ except as required for reasonable and customary use in describing the
380
+ origin of the Work and reproducing the content of the NOTICE file.
381
+
382
+ 7. Disclaimer of Warranty. Unless required by applicable law or
383
+ agreed to in writing, Licensor provides the Work (and each
384
+ Contributor provides its Contributions) on an "AS IS" BASIS,
385
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
386
+ implied, including, without limitation, any warranties or conditions
387
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
388
+ PARTICULAR PURPOSE. You are solely responsible for determining the
389
+ appropriateness of using or redistributing the Work and assume any
390
+ risks associated with Your exercise of permissions under this License.
391
+
392
+ 8. Limitation of Liability. In no event and under no legal theory,
393
+ whether in tort (including negligence), contract, or otherwise,
394
+ unless required by applicable law (such as deliberate and grossly
395
+ negligent acts) or agreed to in writing, shall any Contributor be
396
+ liable to You for damages, including any direct, indirect, special,
397
+ incidental, or consequential damages of any character arising as a
398
+ result of this License or out of the use or inability to use the
399
+ Work (including but not limited to damages for loss of goodwill,
400
+ work stoppage, computer failure or malfunction, or any and all
401
+ other commercial damages or losses), even if such Contributor
402
+ has been advised of the possibility of such damages.
403
+
404
+ 9. Accepting Warranty or Additional Liability. While redistributing
405
+ the Work or Derivative Works thereof, You may choose to offer,
406
+ and charge a fee for, acceptance of support, warranty, indemnity,
407
+ or other liability obligations and/or rights consistent with this
408
+ License. However, in accepting such obligations, You may act only
409
+ on Your own behalf and on Your sole responsibility, not on behalf
410
+ of any other Contributor, and only if You agree to indemnify,
411
+ defend, and hold each Contributor harmless for any liability
412
+ incurred by, or claims asserted against, such Contributor by reason
413
+ of your accepting any such warranty or additional liability.
414
+
415
+ END OF TERMS AND CONDITIONS
416
+
417
+ APPENDIX: How to apply the Apache License to your work.
418
+
419
+ To apply the Apache License to your work, attach the following
420
+ boilerplate notice, with the fields enclosed by brackets "[]"
421
+ replaced with your own identifying information. (Don't include
422
+ the brackets!) The text should be enclosed in the appropriate
423
+ comment syntax for the file format. We also recommend that a
424
+ file or class name and description of purpose be included on the
425
+ same "printed page" as the copyright notice for easier
426
+ identification within third-party archives.
427
+
428
+ Copyright [yyyy] [name of copyright owner]
429
+
430
+ Licensed under the Apache License, Version 2.0 (the "License");
431
+ you may not use this file except in compliance with the License.
432
+ You may obtain a copy of the License at
433
+
434
+ http://www.apache.org/licenses/LICENSE-2.0
435
+
436
+ Unless required by applicable law or agreed to in writing, software
437
+ distributed under the License is distributed on an "AS IS" BASIS,
438
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
439
+ See the License for the specific language governing permissions and
440
+ limitations under the License.
441
+ </string>
442
+ <key>License</key>
443
+ <string>Apache</string>
444
+ <key>Title</key>
445
+ <string>FirebaseCoreDiagnostics</string>
446
+ <key>Type</key>
447
+ <string>PSGroupSpecifier</string>
448
+ </dict>
449
+ <dict>
450
+ <key>FooterText</key>
451
+ <string>
452
+ Apache License
453
+ Version 2.0, January 2004
454
+ http://www.apache.org/licenses/
455
+
456
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
457
+
458
+ 1. Definitions.
459
+
460
+ "License" shall mean the terms and conditions for use, reproduction,
461
+ and distribution as defined by Sections 1 through 9 of this document.
462
+
463
+ "Licensor" shall mean the copyright owner or entity authorized by
464
+ the copyright owner that is granting the License.
465
+
466
+ "Legal Entity" shall mean the union of the acting entity and all
467
+ other entities that control, are controlled by, or are under common
468
+ control with that entity. For the purposes of this definition,
469
+ "control" means (i) the power, direct or indirect, to cause the
470
+ direction or management of such entity, whether by contract or
471
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
472
+ outstanding shares, or (iii) beneficial ownership of such entity.
473
+
474
+ "You" (or "Your") shall mean an individual or Legal Entity
475
+ exercising permissions granted by this License.
476
+
477
+ "Source" form shall mean the preferred form for making modifications,
478
+ including but not limited to software source code, documentation
479
+ source, and configuration files.
480
+
481
+ "Object" form shall mean any form resulting from mechanical
482
+ transformation or translation of a Source form, including but
483
+ not limited to compiled object code, generated documentation,
484
+ and conversions to other media types.
485
+
486
+ "Work" shall mean the work of authorship, whether in Source or
487
+ Object form, made available under the License, as indicated by a
488
+ copyright notice that is included in or attached to the work
489
+ (an example is provided in the Appendix below).
490
+
491
+ "Derivative Works" shall mean any work, whether in Source or Object
492
+ form, that is based on (or derived from) the Work and for which the
493
+ editorial revisions, annotations, elaborations, or other modifications
494
+ represent, as a whole, an original work of authorship. For the purposes
495
+ of this License, Derivative Works shall not include works that remain
496
+ separable from, or merely link (or bind by name) to the interfaces of,
497
+ the Work and Derivative Works thereof.
498
+
499
+ "Contribution" shall mean any work of authorship, including
500
+ the original version of the Work and any modifications or additions
501
+ to that Work or Derivative Works thereof, that is intentionally
502
+ submitted to Licensor for inclusion in the Work by the copyright owner
503
+ or by an individual or Legal Entity authorized to submit on behalf of
504
+ the copyright owner. For the purposes of this definition, "submitted"
505
+ means any form of electronic, verbal, or written communication sent
506
+ to the Licensor or its representatives, including but not limited to
507
+ communication on electronic mailing lists, source code control systems,
508
+ and issue tracking systems that are managed by, or on behalf of, the
509
+ Licensor for the purpose of discussing and improving the Work, but
510
+ excluding communication that is conspicuously marked or otherwise
511
+ designated in writing by the copyright owner as "Not a Contribution."
512
+
513
+ "Contributor" shall mean Licensor and any individual or Legal Entity
514
+ on behalf of whom a Contribution has been received by Licensor and
515
+ subsequently incorporated within the Work.
516
+
517
+ 2. Grant of Copyright License. Subject to the terms and conditions of
518
+ this License, each Contributor hereby grants to You a perpetual,
519
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
520
+ copyright license to reproduce, prepare Derivative Works of,
521
+ publicly display, publicly perform, sublicense, and distribute the
522
+ Work and such Derivative Works in Source or Object form.
523
+
524
+ 3. Grant of Patent License. Subject to the terms and conditions of
525
+ this License, each Contributor hereby grants to You a perpetual,
526
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
527
+ (except as stated in this section) patent license to make, have made,
528
+ use, offer to sell, sell, import, and otherwise transfer the Work,
529
+ where such license applies only to those patent claims licensable
530
+ by such Contributor that are necessarily infringed by their
531
+ Contribution(s) alone or by combination of their Contribution(s)
532
+ with the Work to which such Contribution(s) was submitted. If You
533
+ institute patent litigation against any entity (including a
534
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
535
+ or a Contribution incorporated within the Work constitutes direct
536
+ or contributory patent infringement, then any patent licenses
537
+ granted to You under this License for that Work shall terminate
538
+ as of the date such litigation is filed.
539
+
540
+ 4. Redistribution. You may reproduce and distribute copies of the
541
+ Work or Derivative Works thereof in any medium, with or without
542
+ modifications, and in Source or Object form, provided that You
543
+ meet the following conditions:
544
+
545
+ (a) You must give any other recipients of the Work or
546
+ Derivative Works a copy of this License; and
547
+
548
+ (b) You must cause any modified files to carry prominent notices
549
+ stating that You changed the files; and
550
+
551
+ (c) You must retain, in the Source form of any Derivative Works
552
+ that You distribute, all copyright, patent, trademark, and
553
+ attribution notices from the Source form of the Work,
554
+ excluding those notices that do not pertain to any part of
555
+ the Derivative Works; and
556
+
557
+ (d) If the Work includes a "NOTICE" text file as part of its
558
+ distribution, then any Derivative Works that You distribute must
559
+ include a readable copy of the attribution notices contained
560
+ within such NOTICE file, excluding those notices that do not
561
+ pertain to any part of the Derivative Works, in at least one
562
+ of the following places: within a NOTICE text file distributed
563
+ as part of the Derivative Works; within the Source form or
564
+ documentation, if provided along with the Derivative Works; or,
565
+ within a display generated by the Derivative Works, if and
566
+ wherever such third-party notices normally appear. The contents
567
+ of the NOTICE file are for informational purposes only and
568
+ do not modify the License. You may add Your own attribution
569
+ notices within Derivative Works that You distribute, alongside
570
+ or as an addendum to the NOTICE text from the Work, provided
571
+ that such additional attribution notices cannot be construed
572
+ as modifying the License.
573
+
574
+ You may add Your own copyright statement to Your modifications and
575
+ may provide additional or different license terms and conditions
576
+ for use, reproduction, or distribution of Your modifications, or
577
+ for any such Derivative Works as a whole, provided Your use,
578
+ reproduction, and distribution of the Work otherwise complies with
579
+ the conditions stated in this License.
580
+
581
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
582
+ any Contribution intentionally submitted for inclusion in the Work
583
+ by You to the Licensor shall be under the terms and conditions of
584
+ this License, without any additional terms or conditions.
585
+ Notwithstanding the above, nothing herein shall supersede or modify
586
+ the terms of any separate license agreement you may have executed
587
+ with Licensor regarding such Contributions.
588
+
589
+ 6. Trademarks. This License does not grant permission to use the trade
590
+ names, trademarks, service marks, or product names of the Licensor,
591
+ except as required for reasonable and customary use in describing the
592
+ origin of the Work and reproducing the content of the NOTICE file.
593
+
594
+ 7. Disclaimer of Warranty. Unless required by applicable law or
595
+ agreed to in writing, Licensor provides the Work (and each
596
+ Contributor provides its Contributions) on an "AS IS" BASIS,
597
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
598
+ implied, including, without limitation, any warranties or conditions
599
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
600
+ PARTICULAR PURPOSE. You are solely responsible for determining the
601
+ appropriateness of using or redistributing the Work and assume any
602
+ risks associated with Your exercise of permissions under this License.
603
+
604
+ 8. Limitation of Liability. In no event and under no legal theory,
605
+ whether in tort (including negligence), contract, or otherwise,
606
+ unless required by applicable law (such as deliberate and grossly
607
+ negligent acts) or agreed to in writing, shall any Contributor be
608
+ liable to You for damages, including any direct, indirect, special,
609
+ incidental, or consequential damages of any character arising as a
610
+ result of this License or out of the use or inability to use the
611
+ Work (including but not limited to damages for loss of goodwill,
612
+ work stoppage, computer failure or malfunction, or any and all
613
+ other commercial damages or losses), even if such Contributor
614
+ has been advised of the possibility of such damages.
615
+
616
+ 9. Accepting Warranty or Additional Liability. While redistributing
617
+ the Work or Derivative Works thereof, You may choose to offer,
618
+ and charge a fee for, acceptance of support, warranty, indemnity,
619
+ or other liability obligations and/or rights consistent with this
620
+ License. However, in accepting such obligations, You may act only
621
+ on Your own behalf and on Your sole responsibility, not on behalf
622
+ of any other Contributor, and only if You agree to indemnify,
623
+ defend, and hold each Contributor harmless for any liability
624
+ incurred by, or claims asserted against, such Contributor by reason
625
+ of your accepting any such warranty or additional liability.
626
+
627
+ END OF TERMS AND CONDITIONS
628
+
629
+ APPENDIX: How to apply the Apache License to your work.
630
+
631
+ To apply the Apache License to your work, attach the following
632
+ boilerplate notice, with the fields enclosed by brackets "[]"
633
+ replaced with your own identifying information. (Don't include
634
+ the brackets!) The text should be enclosed in the appropriate
635
+ comment syntax for the file format. We also recommend that a
636
+ file or class name and description of purpose be included on the
637
+ same "printed page" as the copyright notice for easier
638
+ identification within third-party archives.
639
+
640
+ Copyright [yyyy] [name of copyright owner]
641
+
642
+ Licensed under the Apache License, Version 2.0 (the "License");
643
+ you may not use this file except in compliance with the License.
644
+ You may obtain a copy of the License at
645
+
646
+ http://www.apache.org/licenses/LICENSE-2.0
647
+
648
+ Unless required by applicable law or agreed to in writing, software
649
+ distributed under the License is distributed on an "AS IS" BASIS,
650
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
651
+ See the License for the specific language governing permissions and
652
+ limitations under the License.
653
+ </string>
654
+ <key>License</key>
655
+ <string>Apache</string>
656
+ <key>Title</key>
657
+ <string>FirebaseInstallations</string>
658
+ <key>Type</key>
659
+ <string>PSGroupSpecifier</string>
660
+ </dict>
661
+ <dict>
662
+ <key>FooterText</key>
663
+ <string>Copyright 2021 Google</string>
664
+ <key>License</key>
665
+ <string>Copyright</string>
666
+ <key>Title</key>
667
+ <string>GoogleAppMeasurement</string>
668
+ <key>Type</key>
669
+ <string>PSGroupSpecifier</string>
670
+ </dict>
671
+ <dict>
672
+ <key>FooterText</key>
673
+ <string>
674
+ Apache License
675
+ Version 2.0, January 2004
676
+ http://www.apache.org/licenses/
677
+
678
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
679
+
680
+ 1. Definitions.
681
+
682
+ "License" shall mean the terms and conditions for use, reproduction,
683
+ and distribution as defined by Sections 1 through 9 of this document.
684
+
685
+ "Licensor" shall mean the copyright owner or entity authorized by
686
+ the copyright owner that is granting the License.
687
+
688
+ "Legal Entity" shall mean the union of the acting entity and all
689
+ other entities that control, are controlled by, or are under common
690
+ control with that entity. For the purposes of this definition,
691
+ "control" means (i) the power, direct or indirect, to cause the
692
+ direction or management of such entity, whether by contract or
693
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
694
+ outstanding shares, or (iii) beneficial ownership of such entity.
695
+
696
+ "You" (or "Your") shall mean an individual or Legal Entity
697
+ exercising permissions granted by this License.
698
+
699
+ "Source" form shall mean the preferred form for making modifications,
700
+ including but not limited to software source code, documentation
701
+ source, and configuration files.
702
+
703
+ "Object" form shall mean any form resulting from mechanical
704
+ transformation or translation of a Source form, including but
705
+ not limited to compiled object code, generated documentation,
706
+ and conversions to other media types.
707
+
708
+ "Work" shall mean the work of authorship, whether in Source or
709
+ Object form, made available under the License, as indicated by a
710
+ copyright notice that is included in or attached to the work
711
+ (an example is provided in the Appendix below).
712
+
713
+ "Derivative Works" shall mean any work, whether in Source or Object
714
+ form, that is based on (or derived from) the Work and for which the
715
+ editorial revisions, annotations, elaborations, or other modifications
716
+ represent, as a whole, an original work of authorship. For the purposes
717
+ of this License, Derivative Works shall not include works that remain
718
+ separable from, or merely link (or bind by name) to the interfaces of,
719
+ the Work and Derivative Works thereof.
720
+
721
+ "Contribution" shall mean any work of authorship, including
722
+ the original version of the Work and any modifications or additions
723
+ to that Work or Derivative Works thereof, that is intentionally
724
+ submitted to Licensor for inclusion in the Work by the copyright owner
725
+ or by an individual or Legal Entity authorized to submit on behalf of
726
+ the copyright owner. For the purposes of this definition, "submitted"
727
+ means any form of electronic, verbal, or written communication sent
728
+ to the Licensor or its representatives, including but not limited to
729
+ communication on electronic mailing lists, source code control systems,
730
+ and issue tracking systems that are managed by, or on behalf of, the
731
+ Licensor for the purpose of discussing and improving the Work, but
732
+ excluding communication that is conspicuously marked or otherwise
733
+ designated in writing by the copyright owner as "Not a Contribution."
734
+
735
+ "Contributor" shall mean Licensor and any individual or Legal Entity
736
+ on behalf of whom a Contribution has been received by Licensor and
737
+ subsequently incorporated within the Work.
738
+
739
+ 2. Grant of Copyright License. Subject to the terms and conditions of
740
+ this License, each Contributor hereby grants to You a perpetual,
741
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
742
+ copyright license to reproduce, prepare Derivative Works of,
743
+ publicly display, publicly perform, sublicense, and distribute the
744
+ Work and such Derivative Works in Source or Object form.
745
+
746
+ 3. Grant of Patent License. Subject to the terms and conditions of
747
+ this License, each Contributor hereby grants to You a perpetual,
748
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
749
+ (except as stated in this section) patent license to make, have made,
750
+ use, offer to sell, sell, import, and otherwise transfer the Work,
751
+ where such license applies only to those patent claims licensable
752
+ by such Contributor that are necessarily infringed by their
753
+ Contribution(s) alone or by combination of their Contribution(s)
754
+ with the Work to which such Contribution(s) was submitted. If You
755
+ institute patent litigation against any entity (including a
756
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
757
+ or a Contribution incorporated within the Work constitutes direct
758
+ or contributory patent infringement, then any patent licenses
759
+ granted to You under this License for that Work shall terminate
760
+ as of the date such litigation is filed.
761
+
762
+ 4. Redistribution. You may reproduce and distribute copies of the
763
+ Work or Derivative Works thereof in any medium, with or without
764
+ modifications, and in Source or Object form, provided that You
765
+ meet the following conditions:
766
+
767
+ (a) You must give any other recipients of the Work or
768
+ Derivative Works a copy of this License; and
769
+
770
+ (b) You must cause any modified files to carry prominent notices
771
+ stating that You changed the files; and
772
+
773
+ (c) You must retain, in the Source form of any Derivative Works
774
+ that You distribute, all copyright, patent, trademark, and
775
+ attribution notices from the Source form of the Work,
776
+ excluding those notices that do not pertain to any part of
777
+ the Derivative Works; and
778
+
779
+ (d) If the Work includes a "NOTICE" text file as part of its
780
+ distribution, then any Derivative Works that You distribute must
781
+ include a readable copy of the attribution notices contained
782
+ within such NOTICE file, excluding those notices that do not
783
+ pertain to any part of the Derivative Works, in at least one
784
+ of the following places: within a NOTICE text file distributed
785
+ as part of the Derivative Works; within the Source form or
786
+ documentation, if provided along with the Derivative Works; or,
787
+ within a display generated by the Derivative Works, if and
788
+ wherever such third-party notices normally appear. The contents
789
+ of the NOTICE file are for informational purposes only and
790
+ do not modify the License. You may add Your own attribution
791
+ notices within Derivative Works that You distribute, alongside
792
+ or as an addendum to the NOTICE text from the Work, provided
793
+ that such additional attribution notices cannot be construed
794
+ as modifying the License.
795
+
796
+ You may add Your own copyright statement to Your modifications and
797
+ may provide additional or different license terms and conditions
798
+ for use, reproduction, or distribution of Your modifications, or
799
+ for any such Derivative Works as a whole, provided Your use,
800
+ reproduction, and distribution of the Work otherwise complies with
801
+ the conditions stated in this License.
802
+
803
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
804
+ any Contribution intentionally submitted for inclusion in the Work
805
+ by You to the Licensor shall be under the terms and conditions of
806
+ this License, without any additional terms or conditions.
807
+ Notwithstanding the above, nothing herein shall supersede or modify
808
+ the terms of any separate license agreement you may have executed
809
+ with Licensor regarding such Contributions.
810
+
811
+ 6. Trademarks. This License does not grant permission to use the trade
812
+ names, trademarks, service marks, or product names of the Licensor,
813
+ except as required for reasonable and customary use in describing the
814
+ origin of the Work and reproducing the content of the NOTICE file.
815
+
816
+ 7. Disclaimer of Warranty. Unless required by applicable law or
817
+ agreed to in writing, Licensor provides the Work (and each
818
+ Contributor provides its Contributions) on an "AS IS" BASIS,
819
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
820
+ implied, including, without limitation, any warranties or conditions
821
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
822
+ PARTICULAR PURPOSE. You are solely responsible for determining the
823
+ appropriateness of using or redistributing the Work and assume any
824
+ risks associated with Your exercise of permissions under this License.
825
+
826
+ 8. Limitation of Liability. In no event and under no legal theory,
827
+ whether in tort (including negligence), contract, or otherwise,
828
+ unless required by applicable law (such as deliberate and grossly
829
+ negligent acts) or agreed to in writing, shall any Contributor be
830
+ liable to You for damages, including any direct, indirect, special,
831
+ incidental, or consequential damages of any character arising as a
832
+ result of this License or out of the use or inability to use the
833
+ Work (including but not limited to damages for loss of goodwill,
834
+ work stoppage, computer failure or malfunction, or any and all
835
+ other commercial damages or losses), even if such Contributor
836
+ has been advised of the possibility of such damages.
837
+
838
+ 9. Accepting Warranty or Additional Liability. While redistributing
839
+ the Work or Derivative Works thereof, You may choose to offer,
840
+ and charge a fee for, acceptance of support, warranty, indemnity,
841
+ or other liability obligations and/or rights consistent with this
842
+ License. However, in accepting such obligations, You may act only
843
+ on Your own behalf and on Your sole responsibility, not on behalf
844
+ of any other Contributor, and only if You agree to indemnify,
845
+ defend, and hold each Contributor harmless for any liability
846
+ incurred by, or claims asserted against, such Contributor by reason
847
+ of your accepting any such warranty or additional liability.
848
+
849
+ END OF TERMS AND CONDITIONS
850
+
851
+ APPENDIX: How to apply the Apache License to your work.
852
+
853
+ To apply the Apache License to your work, attach the following
854
+ boilerplate notice, with the fields enclosed by brackets "[]"
855
+ replaced with your own identifying information. (Don't include
856
+ the brackets!) The text should be enclosed in the appropriate
857
+ comment syntax for the file format. We also recommend that a
858
+ file or class name and description of purpose be included on the
859
+ same "printed page" as the copyright notice for easier
860
+ identification within third-party archives.
861
+
862
+ Copyright [yyyy] [name of copyright owner]
863
+
864
+ Licensed under the Apache License, Version 2.0 (the "License");
865
+ you may not use this file except in compliance with the License.
866
+ You may obtain a copy of the License at
867
+
868
+ http://www.apache.org/licenses/LICENSE-2.0
869
+
870
+ Unless required by applicable law or agreed to in writing, software
871
+ distributed under the License is distributed on an "AS IS" BASIS,
872
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
873
+ See the License for the specific language governing permissions and
874
+ limitations under the License.
875
+ </string>
876
+ <key>License</key>
877
+ <string>Apache</string>
878
+ <key>Title</key>
879
+ <string>GoogleDataTransport</string>
880
+ <key>Type</key>
881
+ <string>PSGroupSpecifier</string>
882
+ </dict>
883
+ <dict>
884
+ <key>FooterText</key>
885
+ <string>
886
+ Apache License
887
+ Version 2.0, January 2004
888
+ http://www.apache.org/licenses/
889
+
890
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
891
+
892
+ 1. Definitions.
893
+
894
+ "License" shall mean the terms and conditions for use, reproduction,
895
+ and distribution as defined by Sections 1 through 9 of this document.
896
+
897
+ "Licensor" shall mean the copyright owner or entity authorized by
898
+ the copyright owner that is granting the License.
899
+
900
+ "Legal Entity" shall mean the union of the acting entity and all
901
+ other entities that control, are controlled by, or are under common
902
+ control with that entity. For the purposes of this definition,
903
+ "control" means (i) the power, direct or indirect, to cause the
904
+ direction or management of such entity, whether by contract or
905
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
906
+ outstanding shares, or (iii) beneficial ownership of such entity.
907
+
908
+ "You" (or "Your") shall mean an individual or Legal Entity
909
+ exercising permissions granted by this License.
910
+
911
+ "Source" form shall mean the preferred form for making modifications,
912
+ including but not limited to software source code, documentation
913
+ source, and configuration files.
914
+
915
+ "Object" form shall mean any form resulting from mechanical
916
+ transformation or translation of a Source form, including but
917
+ not limited to compiled object code, generated documentation,
918
+ and conversions to other media types.
919
+
920
+ "Work" shall mean the work of authorship, whether in Source or
921
+ Object form, made available under the License, as indicated by a
922
+ copyright notice that is included in or attached to the work
923
+ (an example is provided in the Appendix below).
924
+
925
+ "Derivative Works" shall mean any work, whether in Source or Object
926
+ form, that is based on (or derived from) the Work and for which the
927
+ editorial revisions, annotations, elaborations, or other modifications
928
+ represent, as a whole, an original work of authorship. For the purposes
929
+ of this License, Derivative Works shall not include works that remain
930
+ separable from, or merely link (or bind by name) to the interfaces of,
931
+ the Work and Derivative Works thereof.
932
+
933
+ "Contribution" shall mean any work of authorship, including
934
+ the original version of the Work and any modifications or additions
935
+ to that Work or Derivative Works thereof, that is intentionally
936
+ submitted to Licensor for inclusion in the Work by the copyright owner
937
+ or by an individual or Legal Entity authorized to submit on behalf of
938
+ the copyright owner. For the purposes of this definition, "submitted"
939
+ means any form of electronic, verbal, or written communication sent
940
+ to the Licensor or its representatives, including but not limited to
941
+ communication on electronic mailing lists, source code control systems,
942
+ and issue tracking systems that are managed by, or on behalf of, the
943
+ Licensor for the purpose of discussing and improving the Work, but
944
+ excluding communication that is conspicuously marked or otherwise
945
+ designated in writing by the copyright owner as "Not a Contribution."
946
+
947
+ "Contributor" shall mean Licensor and any individual or Legal Entity
948
+ on behalf of whom a Contribution has been received by Licensor and
949
+ subsequently incorporated within the Work.
950
+
951
+ 2. Grant of Copyright License. Subject to the terms and conditions of
952
+ this License, each Contributor hereby grants to You a perpetual,
953
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
954
+ copyright license to reproduce, prepare Derivative Works of,
955
+ publicly display, publicly perform, sublicense, and distribute the
956
+ Work and such Derivative Works in Source or Object form.
957
+
958
+ 3. Grant of Patent License. Subject to the terms and conditions of
959
+ this License, each Contributor hereby grants to You a perpetual,
960
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
961
+ (except as stated in this section) patent license to make, have made,
962
+ use, offer to sell, sell, import, and otherwise transfer the Work,
963
+ where such license applies only to those patent claims licensable
964
+ by such Contributor that are necessarily infringed by their
965
+ Contribution(s) alone or by combination of their Contribution(s)
966
+ with the Work to which such Contribution(s) was submitted. If You
967
+ institute patent litigation against any entity (including a
968
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
969
+ or a Contribution incorporated within the Work constitutes direct
970
+ or contributory patent infringement, then any patent licenses
971
+ granted to You under this License for that Work shall terminate
972
+ as of the date such litigation is filed.
973
+
974
+ 4. Redistribution. You may reproduce and distribute copies of the
975
+ Work or Derivative Works thereof in any medium, with or without
976
+ modifications, and in Source or Object form, provided that You
977
+ meet the following conditions:
978
+
979
+ (a) You must give any other recipients of the Work or
980
+ Derivative Works a copy of this License; and
981
+
982
+ (b) You must cause any modified files to carry prominent notices
983
+ stating that You changed the files; and
984
+
985
+ (c) You must retain, in the Source form of any Derivative Works
986
+ that You distribute, all copyright, patent, trademark, and
987
+ attribution notices from the Source form of the Work,
988
+ excluding those notices that do not pertain to any part of
989
+ the Derivative Works; and
990
+
991
+ (d) If the Work includes a "NOTICE" text file as part of its
992
+ distribution, then any Derivative Works that You distribute must
993
+ include a readable copy of the attribution notices contained
994
+ within such NOTICE file, excluding those notices that do not
995
+ pertain to any part of the Derivative Works, in at least one
996
+ of the following places: within a NOTICE text file distributed
997
+ as part of the Derivative Works; within the Source form or
998
+ documentation, if provided along with the Derivative Works; or,
999
+ within a display generated by the Derivative Works, if and
1000
+ wherever such third-party notices normally appear. The contents
1001
+ of the NOTICE file are for informational purposes only and
1002
+ do not modify the License. You may add Your own attribution
1003
+ notices within Derivative Works that You distribute, alongside
1004
+ or as an addendum to the NOTICE text from the Work, provided
1005
+ that such additional attribution notices cannot be construed
1006
+ as modifying the License.
1007
+
1008
+ You may add Your own copyright statement to Your modifications and
1009
+ may provide additional or different license terms and conditions
1010
+ for use, reproduction, or distribution of Your modifications, or
1011
+ for any such Derivative Works as a whole, provided Your use,
1012
+ reproduction, and distribution of the Work otherwise complies with
1013
+ the conditions stated in this License.
1014
+
1015
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1016
+ any Contribution intentionally submitted for inclusion in the Work
1017
+ by You to the Licensor shall be under the terms and conditions of
1018
+ this License, without any additional terms or conditions.
1019
+ Notwithstanding the above, nothing herein shall supersede or modify
1020
+ the terms of any separate license agreement you may have executed
1021
+ with Licensor regarding such Contributions.
1022
+
1023
+ 6. Trademarks. This License does not grant permission to use the trade
1024
+ names, trademarks, service marks, or product names of the Licensor,
1025
+ except as required for reasonable and customary use in describing the
1026
+ origin of the Work and reproducing the content of the NOTICE file.
1027
+
1028
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1029
+ agreed to in writing, Licensor provides the Work (and each
1030
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1031
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1032
+ implied, including, without limitation, any warranties or conditions
1033
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1034
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1035
+ appropriateness of using or redistributing the Work and assume any
1036
+ risks associated with Your exercise of permissions under this License.
1037
+
1038
+ 8. Limitation of Liability. In no event and under no legal theory,
1039
+ whether in tort (including negligence), contract, or otherwise,
1040
+ unless required by applicable law (such as deliberate and grossly
1041
+ negligent acts) or agreed to in writing, shall any Contributor be
1042
+ liable to You for damages, including any direct, indirect, special,
1043
+ incidental, or consequential damages of any character arising as a
1044
+ result of this License or out of the use or inability to use the
1045
+ Work (including but not limited to damages for loss of goodwill,
1046
+ work stoppage, computer failure or malfunction, or any and all
1047
+ other commercial damages or losses), even if such Contributor
1048
+ has been advised of the possibility of such damages.
1049
+
1050
+ 9. Accepting Warranty or Additional Liability. While redistributing
1051
+ the Work or Derivative Works thereof, You may choose to offer,
1052
+ and charge a fee for, acceptance of support, warranty, indemnity,
1053
+ or other liability obligations and/or rights consistent with this
1054
+ License. However, in accepting such obligations, You may act only
1055
+ on Your own behalf and on Your sole responsibility, not on behalf
1056
+ of any other Contributor, and only if You agree to indemnify,
1057
+ defend, and hold each Contributor harmless for any liability
1058
+ incurred by, or claims asserted against, such Contributor by reason
1059
+ of your accepting any such warranty or additional liability.
1060
+
1061
+ END OF TERMS AND CONDITIONS
1062
+
1063
+ APPENDIX: How to apply the Apache License to your work.
1064
+
1065
+ To apply the Apache License to your work, attach the following
1066
+ boilerplate notice, with the fields enclosed by brackets "[]"
1067
+ replaced with your own identifying information. (Don't include
1068
+ the brackets!) The text should be enclosed in the appropriate
1069
+ comment syntax for the file format. We also recommend that a
1070
+ file or class name and description of purpose be included on the
1071
+ same "printed page" as the copyright notice for easier
1072
+ identification within third-party archives.
1073
+
1074
+ Copyright [yyyy] [name of copyright owner]
1075
+
1076
+ Licensed under the Apache License, Version 2.0 (the "License");
1077
+ you may not use this file except in compliance with the License.
1078
+ You may obtain a copy of the License at
1079
+
1080
+ http://www.apache.org/licenses/LICENSE-2.0
1081
+
1082
+ Unless required by applicable law or agreed to in writing, software
1083
+ distributed under the License is distributed on an "AS IS" BASIS,
1084
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1085
+ See the License for the specific language governing permissions and
1086
+ limitations under the License.
1087
+
1088
+ ================================================================================
1089
+
1090
+ The following copyright from Landon J. Fuller applies to the isAppEncrypted
1091
+ function in Environment/third_party/GULAppEnvironmentUtil.m.
1092
+
1093
+ Copyright (c) 2017 Landon J. Fuller &lt;landon@landonf.org&gt;
1094
+ All rights reserved.
1095
+
1096
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1097
+ this software and associated documentation files (the "Software"), to deal in
1098
+ the Software without restriction, including without limitation the rights to
1099
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1100
+ the Software, and to permit persons to whom the Software is furnished to do so,
1101
+ subject to the following conditions:
1102
+
1103
+ The above copyright notice and this permission notice shall be included in all
1104
+ copies or substantial portions of the Software.
1105
+
1106
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1107
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1108
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1109
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1110
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1111
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1112
+
1113
+ Comment from
1114
+ &lt;a href="http://iphonedevwiki.net/index.php/Crack_prevention"&gt;iPhone Dev Wiki
1115
+ Crack Prevention&lt;/a&gt;: App Store binaries are signed by both their developer
1116
+ and Apple. This encrypts the binary so that decryption keys are needed in order
1117
+ to make the binary readable. When iOS executes the binary, the decryption keys
1118
+ are used to decrypt the binary into a readable state where it is then loaded
1119
+ into memory and executed. iOS can tell the encryption status of a binary via the
1120
+ cryptid structure member of LC_ENCRYPTION_INFO MachO load command. If cryptid is
1121
+ a non-zero value then the binary is encrypted.
1122
+
1123
+ 'Cracking' works by letting the kernel decrypt the binary then siphoning the
1124
+ decrypted data into a new binary file, resigning, and repackaging. This will
1125
+ only work on jailbroken devices as codesignature validation has been removed.
1126
+ Resigning takes place because while the codesignature doesn't have to be valid
1127
+ thanks to the jailbreak, it does have to be in place unless you have AppSync or
1128
+ similar to disable codesignature checks.
1129
+
1130
+ More information at &lt;a href="http://landonf.org/2009/02/index.html"&gt;Landon
1131
+ Fuller's blog&lt;/a&gt;
1132
+ </string>
1133
+ <key>License</key>
1134
+ <string>Apache</string>
1135
+ <key>Title</key>
1136
+ <string>GoogleUtilities</string>
1137
+ <key>Type</key>
1138
+ <string>PSGroupSpecifier</string>
1139
+ </dict>
1140
+ <dict>
1141
+ <key>FooterText</key>
1142
+ <string>
1143
+ Apache License
1144
+ Version 2.0, January 2004
1145
+ http://www.apache.org/licenses/
1146
+
1147
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1148
+
1149
+ 1. Definitions.
1150
+
1151
+ "License" shall mean the terms and conditions for use, reproduction,
1152
+ and distribution as defined by Sections 1 through 9 of this document.
1153
+
1154
+ "Licensor" shall mean the copyright owner or entity authorized by
1155
+ the copyright owner that is granting the License.
1156
+
1157
+ "Legal Entity" shall mean the union of the acting entity and all
1158
+ other entities that control, are controlled by, or are under common
1159
+ control with that entity. For the purposes of this definition,
1160
+ "control" means (i) the power, direct or indirect, to cause the
1161
+ direction or management of such entity, whether by contract or
1162
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1163
+ outstanding shares, or (iii) beneficial ownership of such entity.
1164
+
1165
+ "You" (or "Your") shall mean an individual or Legal Entity
1166
+ exercising permissions granted by this License.
1167
+
1168
+ "Source" form shall mean the preferred form for making modifications,
1169
+ including but not limited to software source code, documentation
1170
+ source, and configuration files.
1171
+
1172
+ "Object" form shall mean any form resulting from mechanical
1173
+ transformation or translation of a Source form, including but
1174
+ not limited to compiled object code, generated documentation,
1175
+ and conversions to other media types.
1176
+
1177
+ "Work" shall mean the work of authorship, whether in Source or
1178
+ Object form, made available under the License, as indicated by a
1179
+ copyright notice that is included in or attached to the work
1180
+ (an example is provided in the Appendix below).
1181
+
1182
+ "Derivative Works" shall mean any work, whether in Source or Object
1183
+ form, that is based on (or derived from) the Work and for which the
1184
+ editorial revisions, annotations, elaborations, or other modifications
1185
+ represent, as a whole, an original work of authorship. For the purposes
1186
+ of this License, Derivative Works shall not include works that remain
1187
+ separable from, or merely link (or bind by name) to the interfaces of,
1188
+ the Work and Derivative Works thereof.
1189
+
1190
+ "Contribution" shall mean any work of authorship, including
1191
+ the original version of the Work and any modifications or additions
1192
+ to that Work or Derivative Works thereof, that is intentionally
1193
+ submitted to Licensor for inclusion in the Work by the copyright owner
1194
+ or by an individual or Legal Entity authorized to submit on behalf of
1195
+ the copyright owner. For the purposes of this definition, "submitted"
1196
+ means any form of electronic, verbal, or written communication sent
1197
+ to the Licensor or its representatives, including but not limited to
1198
+ communication on electronic mailing lists, source code control systems,
1199
+ and issue tracking systems that are managed by, or on behalf of, the
1200
+ Licensor for the purpose of discussing and improving the Work, but
1201
+ excluding communication that is conspicuously marked or otherwise
1202
+ designated in writing by the copyright owner as "Not a Contribution."
1203
+
1204
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1205
+ on behalf of whom a Contribution has been received by Licensor and
1206
+ subsequently incorporated within the Work.
1207
+
1208
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1209
+ this License, each Contributor hereby grants to You a perpetual,
1210
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1211
+ copyright license to reproduce, prepare Derivative Works of,
1212
+ publicly display, publicly perform, sublicense, and distribute the
1213
+ Work and such Derivative Works in Source or Object form.
1214
+
1215
+ 3. Grant of Patent License. Subject to the terms and conditions of
1216
+ this License, each Contributor hereby grants to You a perpetual,
1217
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1218
+ (except as stated in this section) patent license to make, have made,
1219
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1220
+ where such license applies only to those patent claims licensable
1221
+ by such Contributor that are necessarily infringed by their
1222
+ Contribution(s) alone or by combination of their Contribution(s)
1223
+ with the Work to which such Contribution(s) was submitted. If You
1224
+ institute patent litigation against any entity (including a
1225
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1226
+ or a Contribution incorporated within the Work constitutes direct
1227
+ or contributory patent infringement, then any patent licenses
1228
+ granted to You under this License for that Work shall terminate
1229
+ as of the date such litigation is filed.
1230
+
1231
+ 4. Redistribution. You may reproduce and distribute copies of the
1232
+ Work or Derivative Works thereof in any medium, with or without
1233
+ modifications, and in Source or Object form, provided that You
1234
+ meet the following conditions:
1235
+
1236
+ (a) You must give any other recipients of the Work or
1237
+ Derivative Works a copy of this License; and
1238
+
1239
+ (b) You must cause any modified files to carry prominent notices
1240
+ stating that You changed the files; and
1241
+
1242
+ (c) You must retain, in the Source form of any Derivative Works
1243
+ that You distribute, all copyright, patent, trademark, and
1244
+ attribution notices from the Source form of the Work,
1245
+ excluding those notices that do not pertain to any part of
1246
+ the Derivative Works; and
1247
+
1248
+ (d) If the Work includes a "NOTICE" text file as part of its
1249
+ distribution, then any Derivative Works that You distribute must
1250
+ include a readable copy of the attribution notices contained
1251
+ within such NOTICE file, excluding those notices that do not
1252
+ pertain to any part of the Derivative Works, in at least one
1253
+ of the following places: within a NOTICE text file distributed
1254
+ as part of the Derivative Works; within the Source form or
1255
+ documentation, if provided along with the Derivative Works; or,
1256
+ within a display generated by the Derivative Works, if and
1257
+ wherever such third-party notices normally appear. The contents
1258
+ of the NOTICE file are for informational purposes only and
1259
+ do not modify the License. You may add Your own attribution
1260
+ notices within Derivative Works that You distribute, alongside
1261
+ or as an addendum to the NOTICE text from the Work, provided
1262
+ that such additional attribution notices cannot be construed
1263
+ as modifying the License.
1264
+
1265
+ You may add Your own copyright statement to Your modifications and
1266
+ may provide additional or different license terms and conditions
1267
+ for use, reproduction, or distribution of Your modifications, or
1268
+ for any such Derivative Works as a whole, provided Your use,
1269
+ reproduction, and distribution of the Work otherwise complies with
1270
+ the conditions stated in this License.
1271
+
1272
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1273
+ any Contribution intentionally submitted for inclusion in the Work
1274
+ by You to the Licensor shall be under the terms and conditions of
1275
+ this License, without any additional terms or conditions.
1276
+ Notwithstanding the above, nothing herein shall supersede or modify
1277
+ the terms of any separate license agreement you may have executed
1278
+ with Licensor regarding such Contributions.
1279
+
1280
+ 6. Trademarks. This License does not grant permission to use the trade
1281
+ names, trademarks, service marks, or product names of the Licensor,
1282
+ except as required for reasonable and customary use in describing the
1283
+ origin of the Work and reproducing the content of the NOTICE file.
1284
+
1285
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1286
+ agreed to in writing, Licensor provides the Work (and each
1287
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1288
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1289
+ implied, including, without limitation, any warranties or conditions
1290
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1291
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1292
+ appropriateness of using or redistributing the Work and assume any
1293
+ risks associated with Your exercise of permissions under this License.
1294
+
1295
+ 8. Limitation of Liability. In no event and under no legal theory,
1296
+ whether in tort (including negligence), contract, or otherwise,
1297
+ unless required by applicable law (such as deliberate and grossly
1298
+ negligent acts) or agreed to in writing, shall any Contributor be
1299
+ liable to You for damages, including any direct, indirect, special,
1300
+ incidental, or consequential damages of any character arising as a
1301
+ result of this License or out of the use or inability to use the
1302
+ Work (including but not limited to damages for loss of goodwill,
1303
+ work stoppage, computer failure or malfunction, or any and all
1304
+ other commercial damages or losses), even if such Contributor
1305
+ has been advised of the possibility of such damages.
1306
+
1307
+ 9. Accepting Warranty or Additional Liability. While redistributing
1308
+ the Work or Derivative Works thereof, You may choose to offer,
1309
+ and charge a fee for, acceptance of support, warranty, indemnity,
1310
+ or other liability obligations and/or rights consistent with this
1311
+ License. However, in accepting such obligations, You may act only
1312
+ on Your own behalf and on Your sole responsibility, not on behalf
1313
+ of any other Contributor, and only if You agree to indemnify,
1314
+ defend, and hold each Contributor harmless for any liability
1315
+ incurred by, or claims asserted against, such Contributor by reason
1316
+ of your accepting any such warranty or additional liability.
1317
+
1318
+ END OF TERMS AND CONDITIONS
1319
+
1320
+ APPENDIX: How to apply the Apache License to your work.
1321
+
1322
+ To apply the Apache License to your work, attach the following
1323
+ boilerplate notice, with the fields enclosed by brackets "[]"
1324
+ replaced with your own identifying information. (Don't include
1325
+ the brackets!) The text should be enclosed in the appropriate
1326
+ comment syntax for the file format. We also recommend that a
1327
+ file or class name and description of purpose be included on the
1328
+ same "printed page" as the copyright notice for easier
1329
+ identification within third-party archives.
1330
+
1331
+ Copyright [yyyy] [name of copyright owner]
1332
+
1333
+ Licensed under the Apache License, Version 2.0 (the "License");
1334
+ you may not use this file except in compliance with the License.
1335
+ You may obtain a copy of the License at
1336
+
1337
+ http://www.apache.org/licenses/LICENSE-2.0
1338
+
1339
+ Unless required by applicable law or agreed to in writing, software
1340
+ distributed under the License is distributed on an "AS IS" BASIS,
1341
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1342
+ See the License for the specific language governing permissions and
1343
+ limitations under the License.
1344
+ </string>
1345
+ <key>License</key>
1346
+ <string>Apache</string>
1347
+ <key>Title</key>
1348
+ <string>PromisesObjC</string>
1349
+ <key>Type</key>
1350
+ <string>PSGroupSpecifier</string>
1351
+ </dict>
1352
+ <dict>
1353
+ <key>FooterText</key>
1354
+ <string>Copyright (c) 2011 Petteri Aimonen &lt;jpa at nanopb.mail.kapsi.fi&gt;
1355
+
1356
+ This software is provided 'as-is', without any express or
1357
+ implied warranty. In no event will the authors be held liable
1358
+ for any damages arising from the use of this software.
1359
+
1360
+ Permission is granted to anyone to use this software for any
1361
+ purpose, including commercial applications, and to alter it and
1362
+ redistribute it freely, subject to the following restrictions:
1363
+
1364
+ 1. The origin of this software must not be misrepresented; you
1365
+ must not claim that you wrote the original software. If you use
1366
+ this software in a product, an acknowledgment in the product
1367
+ documentation would be appreciated but is not required.
1368
+
1369
+ 2. Altered source versions must be plainly marked as such, and
1370
+ must not be misrepresented as being the original software.
1371
+
1372
+ 3. This notice may not be removed or altered from any source
1373
+ distribution.
1374
+ </string>
1375
+ <key>License</key>
1376
+ <string>zlib</string>
1377
+ <key>Title</key>
1378
+ <string>nanopb</string>
1379
+ <key>Type</key>
1380
+ <string>PSGroupSpecifier</string>
1381
+ </dict>
1382
+ <dict>
1383
+ <key>FooterText</key>
1384
+ <string>Generated by CocoaPods - https://cocoapods.org</string>
1385
+ <key>Title</key>
1386
+ <string></string>
1387
+ <key>Type</key>
1388
+ <string>PSGroupSpecifier</string>
1389
+ </dict>
1390
+ </array>
1391
+ <key>StringsTable</key>
1392
+ <string>Acknowledgements</string>
1393
+ <key>Title</key>
1394
+ <string>Acknowledgements</string>
1395
+ </dict>
1396
+ </plist>