Release 0.6.16 for iOS
Summary: Releases a new iOS version 0.6.16. After landing this I will release 0.6.16 tag on github Reviewed By: danielbuechele Differential Revision: D9194965 fbshipit-source-id: 13d5e346d6d34a7bf7b6dfb568ca622d97660132
This commit is contained in:
committed by
Facebook Github Bot
parent
128a837304
commit
ae0b8f6b53
24
Specs/Sonar/0.6.16/Sonar.podspec
Normal file
24
Specs/Sonar/0.6.16/Sonar.podspec
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
sonarkit_version = '0.6.16'
|
||||||
|
Pod::Spec.new do |spec|
|
||||||
|
spec.name = 'Sonar'
|
||||||
|
spec.version = sonarkit_version
|
||||||
|
spec.license = { :type => 'MIT' }
|
||||||
|
spec.homepage = 'https://github.com/facebook/sonar'
|
||||||
|
spec.summary = 'SonarKit core cpp code with network implementation'
|
||||||
|
spec.authors = 'Facebook'
|
||||||
|
spec.source = { :git => 'https://github.com/facebook/Sonar.git',
|
||||||
|
:tag => 'v'+sonarkit_version }
|
||||||
|
spec.module_name = 'Sonar'
|
||||||
|
spec.public_header_files = 'xplat/Sonar/*.h'
|
||||||
|
spec.source_files = 'xplat/Sonar/*.{h,cpp,m,mm}'
|
||||||
|
spec.libraries = "stdc++"
|
||||||
|
spec.dependency 'Folly', '~>1.1'
|
||||||
|
spec.dependency 'RSocket', '~>0.10'
|
||||||
|
spec.compiler_flags = '-DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall
|
||||||
|
-std=c++14
|
||||||
|
-Wno-global-constructors'
|
||||||
|
spec.platforms = { :ios => "8.0" }
|
||||||
|
spec.pod_target_xcconfig = { "USE_HEADERMAP" => "NO",
|
||||||
|
"CLANG_CXX_LANGUAGE_STANDARD" => "c++14",
|
||||||
|
"HEADER_SEARCH_PATHS" => "\"$(PODS_TARGET_SRCROOT)\" \"$(PODS_ROOT)/boost-for-react-native\" \"$(PODS_ROOT)/RSocket\" \"$(PODS_ROOT)/DoubleConversion\"" }
|
||||||
|
end
|
||||||
134
Specs/SonarKit/0.6.16/SonarKit.podspec
Normal file
134
Specs/SonarKit/0.6.16/SonarKit.podspec
Normal file
@@ -0,0 +1,134 @@
|
|||||||
|
folly_compiler_flags = '-DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0'
|
||||||
|
yoga_version = '~> 1.9'
|
||||||
|
yogakit_version = '~>1.8'
|
||||||
|
sonarkit_version = '0.6.16'
|
||||||
|
Pod::Spec.new do |spec|
|
||||||
|
spec.name = 'SonarKit'
|
||||||
|
spec.version = sonarkit_version
|
||||||
|
spec.license = { :type => 'MIT' }
|
||||||
|
spec.homepage = 'https://github.com/facebook/Sonar'
|
||||||
|
spec.summary = 'Sonar iOS podspec'
|
||||||
|
spec.authors = 'Facebook'
|
||||||
|
spec.static_framework = true
|
||||||
|
spec.source = { :git => 'https://github.com/facebook/Sonar.git',
|
||||||
|
:tag=> "v"+sonarkit_version }
|
||||||
|
spec.module_name = 'SonarKit'
|
||||||
|
spec.platforms = { :ios => "8.4" }
|
||||||
|
spec.default_subspecs = "Core"
|
||||||
|
|
||||||
|
# This subspec is necessary since FBMacros.h is imported as <FBDefines/FBMacros.h>
|
||||||
|
# inside SKMacros.h, which is a public header file. Defining this directory as a
|
||||||
|
# subspec with header_dir = 'FBDefines' allows this to work, even though it wouldn't
|
||||||
|
# generally (you would need to import <SonarKit/FBDefines/FBMacros.h>)
|
||||||
|
spec.subspec 'FBDefines' do |ss|
|
||||||
|
ss.header_dir = 'FBDefines'
|
||||||
|
ss.compiler_flags = folly_compiler_flags
|
||||||
|
ss.source_files = 'iOS/FBDefines/**/*.h'
|
||||||
|
ss.public_header_files = 'iOS/FBDefines/**/*.h'
|
||||||
|
end
|
||||||
|
|
||||||
|
spec.subspec 'CppBridge' do |ss|
|
||||||
|
ss.header_dir = 'CppBridge'
|
||||||
|
ss.compiler_flags = folly_compiler_flags
|
||||||
|
ss.source_files = 'iOS/SonarKit/CppBridge/**/*.{h,mm}'
|
||||||
|
# We set these files as private headers since they only need to be accessed
|
||||||
|
# by other SonarKit source files
|
||||||
|
ss.private_header_files = 'iOS/SonarKit/CppBridge/**/*.h'
|
||||||
|
ss.preserve_path = 'SonarKit/CppBridge/**/*.h'
|
||||||
|
end
|
||||||
|
|
||||||
|
spec.subspec 'FBCxxUtils' do |ss|
|
||||||
|
ss.header_dir = 'FBCxxUtils'
|
||||||
|
ss.compiler_flags = folly_compiler_flags
|
||||||
|
ss.source_files = 'iOS/SonarKit/FBCxxUtils/**/*.{h,mm}'
|
||||||
|
# We set these files as private headers since they only need to be accessed
|
||||||
|
# by other SonarKit source files
|
||||||
|
ss.private_header_files = 'iOS/SonarKit/FBCxxUtils/**/*.h'
|
||||||
|
end
|
||||||
|
|
||||||
|
spec.subspec "Core" do |ss|
|
||||||
|
ss.dependency 'SonarKit/FBDefines'
|
||||||
|
ss.dependency 'SonarKit/FBCxxUtils'
|
||||||
|
ss.dependency 'SonarKit/CppBridge'
|
||||||
|
ss.dependency 'Folly', '~>1.1'
|
||||||
|
ss.dependency 'Sonar', '~>'+sonarkit_version
|
||||||
|
ss.dependency 'CocoaAsyncSocket', '~> 7.6'
|
||||||
|
ss.dependency 'PeerTalk', '~>0.0.2'
|
||||||
|
ss.dependency 'OpenSSL-Static', '1.0.2.c1'
|
||||||
|
ss.compiler_flags = folly_compiler_flags
|
||||||
|
ss.source_files = 'iOS/SonarKit/FBDefines/*.{h,cpp,m,mm}', 'iOS/SonarKit/CppBridge/*.{h,mm}', 'iOS/SonarKit/FBCxxUtils/*.{h,mm}', 'iOS/SonarKit/Utilities/**/*.{h,m}', 'iOS/SonarKit/*.{h,m,mm}'
|
||||||
|
ss.public_header_files = 'iOS/Plugins/SonarKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.h',
|
||||||
|
'iOS/Plugins/SonarKitNetworkPlugin/SonarKitNetworkPlugin/SKBufferingPlugin.h',
|
||||||
|
'iOS/Plugins/SonarKitNetworkPlugin/SonarKitNetworkPlugin/SKNetworkReporter.h',
|
||||||
|
'iOS/Plugins/SonarKitNetworkPlugin/SonarKitNetworkPlugin/SKRequestInfo.h',
|
||||||
|
'iOS/Plugins/SonarKitNetworkPlugin/SonarKitNetworkPlugin/SKResponseInfo.h',
|
||||||
|
'iOS/Plugins/SonarKitNetworkPlugin/SonarKitNetworkPlugin/SonarKitNetworkPlugin.h',
|
||||||
|
'iOS/FBDefines/FBMacros.h',
|
||||||
|
'iOS/SonarKit/**/{SonarClient,SonarPlugin,SonarConnection,SonarResponder,SKMacros}.h'
|
||||||
|
header_search_paths = "\"$(PODS_ROOT)/SonarKit/iOS/SonarKit\" \"$(PODS_ROOT)\"/Headers/Private/SonarKit/** \"$(PODS_ROOT)/boost-for-react-native\" \"$(PODS_ROOT)/DoubleConversion\" \"$(PODS_ROOT)/PeerTalkSonar\""
|
||||||
|
ss.pod_target_xcconfig = { "USE_HEADERMAP" => "NO",
|
||||||
|
"DEFINES_MODULE" => "YES",
|
||||||
|
"HEADER_SEARCH_PATHS" => header_search_paths }
|
||||||
|
end
|
||||||
|
|
||||||
|
spec.subspec "SonarKitLayoutPlugin" do |ss|
|
||||||
|
ss.header_dir = "SonarKitLayoutPlugin"
|
||||||
|
ss.dependency 'SonarKit/Core'
|
||||||
|
ss.dependency 'Yoga', yoga_version
|
||||||
|
ss.dependency 'YogaKit', yogakit_version
|
||||||
|
ss.compiler_flags = folly_compiler_flags
|
||||||
|
ss.public_header_files = 'iOS/Plugins/SonarKitLayoutPlugin/SonarKitLayoutPlugin/SonarKitLayoutPlugin.h',
|
||||||
|
'iOS/Plugins/SonarKitLayoutPlugin/SonarKitLayoutPlugin/SKTouch.h',
|
||||||
|
'iOS/Plugins/SonarKitLayoutPlugin/SonarKitLayoutPlugin/SKDescriptorMapper.h',
|
||||||
|
'iOS/Plugins/SonarKitLayoutPlugin/SonarKitLayoutPlugin/SKNodeDescriptor.h',
|
||||||
|
'iOS/Plugins/SonarKitLayoutPlugin/SonarKitLayoutPlugin/SKInvalidation.h',
|
||||||
|
'iOS/Plugins/SonarKitLayoutPlugin/SonarKitLayoutPlugin/SKNamed.h',
|
||||||
|
'iOS/Plugins/SonarKitLayoutPlugin/SonarKitLayoutPlugin/SKTapListener.h',
|
||||||
|
'iOS/Plugins/SonarKitLayoutPlugin/SonarKitLayoutPlugin/SKObject.h',
|
||||||
|
'iOS/Plugins/SonarKitLayoutPlugin/SonarKitLayoutPlugin/SKHighlightOverlay.h',
|
||||||
|
'iOS/Plugins/SonarKitLayoutPlugin/SonarKitLayoutPlugin/UIColor+SKSonarValueCoder.h',
|
||||||
|
'iOS/Plugins/SonarKitLayoutPlugin/SonarKitLayoutPlugin/utils/SKObjectHash.h',
|
||||||
|
'iOS/Plugins/SonarKitLayoutPlugin/SonarKitLayoutPlugin/utils/SKSwizzle.h',
|
||||||
|
'iOS/Plugins/SonarKitLayoutPlugin/SonarKitLayoutPlugin/utils/SKYogaKitHelper.h'
|
||||||
|
ss.source_files = 'iOS/Plugins/SonarKitLayoutPlugin/SonarKitLayoutPlugin/**/*.{h,cpp,m,mm}'
|
||||||
|
end
|
||||||
|
|
||||||
|
spec.subspec "SonarKitLayoutComponentKitSupport" do |ss|
|
||||||
|
ss.header_dir = "SonarKitLayoutComponentKitSupport"
|
||||||
|
ss.dependency 'SonarKit/Core'
|
||||||
|
ss.dependency 'Yoga', yoga_version
|
||||||
|
ss.dependency 'ComponentKit'
|
||||||
|
ss.dependency 'SonarKit/SonarKitLayoutPlugin'
|
||||||
|
ss.compiler_flags = folly_compiler_flags
|
||||||
|
ss.dependency 'SonarKit/SonarKitLayoutPlugin'
|
||||||
|
ss.public_header_files = 'iOS/Plugins/SonarKitLayoutPlugin/SonarKitLayoutComponentKitSupport/SonarKitLayoutComponentKitSupport.h',
|
||||||
|
'iOS/Plugins/SonarKitLayoutPlugin/SonarKitLayoutComponentKitSupport/SKComponentLayoutWrapper.h'
|
||||||
|
|
||||||
|
ss.source_files = "iOS/Plugins/SonarKitLayoutPlugin/SonarKitLayoutComponentKitSupport/**/*.{h,cpp,m,mm}"
|
||||||
|
ss.pod_target_xcconfig = { "USE_HEADERMAP" => "NO",
|
||||||
|
"HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)\"/Headers/Private/SonarKit/**" }
|
||||||
|
end
|
||||||
|
|
||||||
|
spec.subspec "SonarKitNetworkPlugin" do |ss|
|
||||||
|
ss.header_dir = "SonarKitNetworkPlugin"
|
||||||
|
ss.dependency 'SonarKit/Core'
|
||||||
|
ss.compiler_flags = folly_compiler_flags
|
||||||
|
ss.public_header_files = 'iOS/Plugins/SonarKitNetworkPlugin/SonarKitNetworkPlugin/SKBufferingPlugin.h',
|
||||||
|
'iOS/Plugins/SonarKitNetworkPlugin/SonarKitNetworkPlugin/SKNetworkReporter.h',
|
||||||
|
'iOS/Plugins/SonarKitNetworkPlugin/SonarKitNetworkPlugin/SKRequestInfo.h',
|
||||||
|
'iOS/Plugins/SonarKitNetworkPlugin/SonarKitNetworkPlugin/SKResponseInfo.h',
|
||||||
|
'iOS/Plugins/SonarKitNetworkPlugin/SonarKitNetworkPlugin/SonarKitNetworkPlugin.h'
|
||||||
|
ss.source_files = "iOS/Plugins/SonarKitNetworkPlugin/SonarKitNetworkPlugin/*.{h,cpp,m,mm}"
|
||||||
|
ss.pod_target_xcconfig = { "HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)\"/Headers/Private/SonarKit/**" }
|
||||||
|
end
|
||||||
|
|
||||||
|
spec.subspec "SKIOSNetworkPlugin" do |ss|
|
||||||
|
ss.header_dir = "SKIOSNetworkPlugin"
|
||||||
|
ss.dependency 'SonarKit/Core'
|
||||||
|
ss.dependency 'SonarKit/SonarKitNetworkPlugin'
|
||||||
|
ss.compiler_flags = folly_compiler_flags
|
||||||
|
ss.public_header_files = 'iOS/Plugins/SonarKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.h'
|
||||||
|
ss.source_files = "iOS/Plugins/SonarKitNetworkPlugin/SKIOSNetworkPlugin/**/*.{h,cpp,m,mm}"
|
||||||
|
ss.pod_target_xcconfig = { "HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)\"/Headers/Private/SonarKit/**" }
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -71,11 +71,15 @@ source 'https://github.com/facebook/Sonar.git'
|
|||||||
source 'https://github.com/CocoaPods/Specs'
|
source 'https://github.com/CocoaPods/Specs'
|
||||||
# Uncomment the next line to define a global platform for your project
|
# Uncomment the next line to define a global platform for your project
|
||||||
swift_version = "4.1"
|
swift_version = "4.1"
|
||||||
sonarkit_version = '0.6.15'
|
sonarkit_version = '0.6.16'
|
||||||
|
|
||||||
target 'MyApp' do
|
target 'MyApp' do
|
||||||
|
|
||||||
pod 'SonarKit', '~>'+sonarkit_version
|
pod 'SonarKit', '~>'+sonarkit_version
|
||||||
|
# Layout and network plugins are not yet supported for swift projects
|
||||||
|
pod 'SonarKit/SonarKitLayoutComponentKitSupport', '~>' + sonarkit_version
|
||||||
|
pod 'SonarKit/SKIOSNetworkPlugin', '~>' + sonarkit_version
|
||||||
|
|
||||||
post_install do |installer|
|
post_install do |installer|
|
||||||
|
|
||||||
installer.pods_project.targets.each do |target|
|
installer.pods_project.targets.each do |target|
|
||||||
@@ -113,7 +117,7 @@ and install the dependencies by running `pod install`. When you open the Xcode w
|
|||||||
- We haven't released the dependency to CocoaPods yet, here is the [issue](https://github.com/facebook/flipper/issues/132) by which you can track.
|
- We haven't released the dependency to CocoaPods yet, here is the [issue](https://github.com/facebook/flipper/issues/132) by which you can track.
|
||||||
- If you do not use CocoaPods as a dependency management tool then currently there is no way to integrate SonarKit other than manually including all the dependencies and building it.
|
- If you do not use CocoaPods as a dependency management tool then currently there is no way to integrate SonarKit other than manually including all the dependencies and building it.
|
||||||
- For Android, Flipper works with both emulators and physical devices connected through USB. However on iOS, we don't yet support physical devices.
|
- For Android, Flipper works with both emulators and physical devices connected through USB. However on iOS, we don't yet support physical devices.
|
||||||
- The Flipper layout and network plugins aren't supported in Swift projects since they include C++ dependencies. We're working on supporting these plugins for Swift apps. You can join the discussion on the [issues page](https://github.com/facebook/flipper/issues).
|
- The Flipper layout plugin isn't supported in Swift projects since they include C++ dependencies. We're working on supporting it for Swift apps. You can join the discussion on the [issues page](https://github.com/facebook/flipper/issues).
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
## Ready for takeoff
|
## Ready for takeoff
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ project 'Sample.xcodeproj'
|
|||||||
source 'https://github.com/facebook/Sonar.git'
|
source 'https://github.com/facebook/Sonar.git'
|
||||||
source 'https://github.com/CocoaPods/Specs'
|
source 'https://github.com/CocoaPods/Specs'
|
||||||
swift_version = "4.1"
|
swift_version = "4.1"
|
||||||
sonarkit_version = '0.6.15'
|
sonarkit_version = '0.6.16'
|
||||||
|
|
||||||
target 'Sample' do
|
target 'Sample' do
|
||||||
pod 'SonarKit', '~>'+sonarkit_version
|
pod 'SonarKit', '~>'+sonarkit_version
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
folly_compiler_flags = '-DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0'
|
folly_compiler_flags = '-DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0'
|
||||||
yoga_version = '~> 1.9'
|
yoga_version = '~> 1.9'
|
||||||
yogakit_version = '~>1.8'
|
yogakit_version = '~>1.8'
|
||||||
sonarkit_version = '0.6.15'
|
sonarkit_version = '0.6.16'
|
||||||
Pod::Spec.new do |spec|
|
Pod::Spec.new do |spec|
|
||||||
spec.name = 'SonarKit'
|
spec.name = 'SonarKit'
|
||||||
spec.version = sonarkit_version
|
spec.version = sonarkit_version
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
sonarkit_version = '0.6.15'
|
sonarkit_version = '0.6.16'
|
||||||
Pod::Spec.new do |spec|
|
Pod::Spec.new do |spec|
|
||||||
spec.name = 'Sonar'
|
spec.name = 'Sonar'
|
||||||
spec.version = sonarkit_version
|
spec.version = sonarkit_version
|
||||||
|
|||||||
Reference in New Issue
Block a user