Flipper Release: v0.8.0
Summary: New 0.8.0 release which includes name changes from sonar to flipper. Reviewed By: passy, danielbuechele Differential Revision: D10050160 fbshipit-source-id: 5394ea0d032cea39f40cc9ed8e0f054e506d4f04
This commit is contained in:
committed by
Facebook Github Bot
parent
ddcc74edb8
commit
7e296467d2
24
Specs/Flipper/0.8.0/Flipper.podspec
Normal file
24
Specs/Flipper/0.8.0/Flipper.podspec
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
flipperkit_version = '0.8.0'
|
||||||
|
Pod::Spec.new do |spec|
|
||||||
|
spec.name = 'Flipper'
|
||||||
|
spec.version = flipperkit_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'+flipperkit_version }
|
||||||
|
spec.module_name = 'Flipper'
|
||||||
|
spec.public_header_files = 'xplat/Flipper/*.h'
|
||||||
|
spec.source_files = 'xplat/Flipper/*.{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/FlipperKit/0.8.0/FlipperKit.podspec
Normal file
134
Specs/FlipperKit/0.8.0/FlipperKit.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'
|
||||||
|
flipperkit_version = '0.8.0'
|
||||||
|
Pod::Spec.new do |spec|
|
||||||
|
spec.name = 'FlipperKit'
|
||||||
|
spec.version = flipperkit_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"+flipperkit_version }
|
||||||
|
spec.module_name = 'FlipperKit'
|
||||||
|
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 <FlipperKit/t/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/FlipperKit/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/FlipperKit/CppBridge/**/*.h'
|
||||||
|
ss.preserve_path = 'FlipperKit/CppBridge/**/*.h'
|
||||||
|
end
|
||||||
|
|
||||||
|
spec.subspec 'FBCxxUtils' do |ss|
|
||||||
|
ss.header_dir = 'FBCxxUtils'
|
||||||
|
ss.compiler_flags = folly_compiler_flags
|
||||||
|
ss.source_files = 'iOS/FlipperKit/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/FlipperKit/FBCxxUtils/**/*.h'
|
||||||
|
end
|
||||||
|
|
||||||
|
spec.subspec "Core" do |ss|
|
||||||
|
ss.dependency 'FlipperKit/FBDefines'
|
||||||
|
ss.dependency 'FlipperKit/FBCxxUtils'
|
||||||
|
ss.dependency 'FlipperKit/CppBridge'
|
||||||
|
ss.dependency 'Folly', '~>1.1'
|
||||||
|
ss.dependency 'Flipper', '~>'+flipperkit_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/FlipperKit/FBDefines/*.{h,cpp,m,mm}', 'iOS/FlipperKit/CppBridge/*.{h,mm}', 'iOS/FlipperKit/FBCxxUtils/*.{h,mm}', 'iOS/FlipperKit/Utilities/**/*.{h,m}', 'iOS/FlipperKit/*.{h,m,mm}'
|
||||||
|
ss.public_header_files = 'iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.h',
|
||||||
|
'iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.h',
|
||||||
|
'iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKNetworkReporter.h',
|
||||||
|
'iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.h',
|
||||||
|
'iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.h',
|
||||||
|
'iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h',
|
||||||
|
'iOS/FBDefines/FBMacros.h',
|
||||||
|
'iOS/FlipperKit/**/{FlipperStateUpdateListener,FlipperClient,FlipperPlugin,FlipperConnection,FlipperResponder,SKMacros}.h'
|
||||||
|
header_search_paths = "\"$(PODS_ROOT)/FlipperKit/iOS/FlipperKit\" \"$(PODS_ROOT)\"/Headers/Private/FlipperKit/** \"$(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 "FlipperKitLayoutPlugin" do |ss|
|
||||||
|
ss.header_dir = "FlipperKitLayoutPlugin"
|
||||||
|
ss.dependency 'FlipperKit/Core'
|
||||||
|
ss.dependency 'Yoga', yoga_version
|
||||||
|
ss.dependency 'YogaKit', yogakit_version
|
||||||
|
ss.compiler_flags = folly_compiler_flags
|
||||||
|
ss.public_header_files = 'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListener.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKObject.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKHighlightOverlay.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIColor+SKSonarValueCoder.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKObjectHash.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKSwizzle.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKYogaKitHelper.h'
|
||||||
|
ss.source_files = 'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/**/*.{h,cpp,m,mm}'
|
||||||
|
end
|
||||||
|
|
||||||
|
spec.subspec "FlipperKitLayoutComponentKitSupport" do |ss|
|
||||||
|
ss.header_dir = "FlipperKitLayoutComponentKitSupport"
|
||||||
|
ss.dependency 'FlipperKit/Core'
|
||||||
|
ss.dependency 'Yoga', yoga_version
|
||||||
|
ss.dependency 'ComponentKit'
|
||||||
|
ss.dependency 'FlipperKit/FlipperKitLayoutPlugin'
|
||||||
|
ss.compiler_flags = folly_compiler_flags
|
||||||
|
ss.dependency 'FlipperKit/FlipperKitLayoutPlugin'
|
||||||
|
ss.public_header_files = 'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutComponentKitSupport/FlipperKitLayoutComponentKitSupport.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutComponentKitSupport/SKComponentLayoutWrapper.h'
|
||||||
|
|
||||||
|
ss.source_files = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutComponentKitSupport/**/*.{h,cpp,m,mm}"
|
||||||
|
ss.pod_target_xcconfig = { "USE_HEADERMAP" => "NO",
|
||||||
|
"HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)\"/Headers/Private/FlipperKit/**" }
|
||||||
|
end
|
||||||
|
|
||||||
|
spec.subspec "FlipperKitNetworkPlugin" do |ss|
|
||||||
|
ss.header_dir = "FlipperKitNetworkPlugin"
|
||||||
|
ss.dependency 'FlipperKit/Core'
|
||||||
|
ss.compiler_flags = folly_compiler_flags
|
||||||
|
ss.public_header_files = 'iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.h',
|
||||||
|
'iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKNetworkReporter.h',
|
||||||
|
'iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.h',
|
||||||
|
'iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.h',
|
||||||
|
'iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h'
|
||||||
|
ss.source_files = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/*.{h,cpp,m,mm}"
|
||||||
|
ss.pod_target_xcconfig = { "HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)\"/Headers/Private/FlipperKit/**" }
|
||||||
|
end
|
||||||
|
|
||||||
|
spec.subspec "SKIOSNetworkPlugin" do |ss|
|
||||||
|
ss.header_dir = "SKIOSNetworkPlugin"
|
||||||
|
ss.dependency 'FlipperKit/Core'
|
||||||
|
ss.dependency 'FlipperKit/FlipperKitNetworkPlugin'
|
||||||
|
ss.compiler_flags = folly_compiler_flags
|
||||||
|
ss.public_header_files = 'iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.h'
|
||||||
|
ss.source_files = "iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/**/*.{h,cpp,m,mm}"
|
||||||
|
ss.pod_target_xcconfig = { "HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)\"/Headers/Private/FlipperKit/**" }
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -45,7 +45,7 @@ repositories {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
debugImplementation 'com.facebook.flipper:flipper:0.7.2'
|
debugImplementation 'com.facebook.flipper:flipper:0.8.0'
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -81,7 +81,7 @@ repositories {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
debugImplementation 'com.facebook.flipper:flipper:0.7.2'
|
debugImplementation 'com.facebook.flipper:flipper:0.8.0'
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -94,7 +94,7 @@ project 'MyApp.xcodeproj'
|
|||||||
source 'https://github.com/facebook/flipper.git'
|
source 'https://github.com/facebook/flipper.git'
|
||||||
source 'https://github.com/CocoaPods/Specs'
|
source 'https://github.com/CocoaPods/Specs'
|
||||||
swift_version = "4.1"
|
swift_version = "4.1"
|
||||||
flipperkit_version = '0.7.2'
|
flipperkit_version = '0.8.0'
|
||||||
|
|
||||||
target 'MyApp' do
|
target 'MyApp' do
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# POM publishing constants
|
# POM publishing constants
|
||||||
VERSION_NAME=0.7.2
|
VERSION_NAME=0.8.0
|
||||||
GROUP=com.facebook.flipper
|
GROUP=com.facebook.flipper
|
||||||
POM_URL=https://github.com/facebook/flipper
|
POM_URL=https://github.com/facebook/flipper
|
||||||
POM_SCM_URL=https://github.com/facebook/flipper.git
|
POM_SCM_URL=https://github.com/facebook/flipper.git
|
||||||
|
|||||||
@@ -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'
|
||||||
flipperkit_version = '0.7.2'
|
flipperkit_version = '0.8.0'
|
||||||
Pod::Spec.new do |spec|
|
Pod::Spec.new do |spec|
|
||||||
spec.name = 'FlipperKit'
|
spec.name = 'FlipperKit'
|
||||||
spec.version = flipperkit_version
|
spec.version = flipperkit_version
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "flipper",
|
"name": "flipper",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.7.2",
|
"version": "0.8.0",
|
||||||
"versionDate": "2018-4-12",
|
"versionDate": "2018-4-12",
|
||||||
"description": "Mobile development tool",
|
"description": "Mobile development tool",
|
||||||
"productName": "Flipper",
|
"productName": "Flipper",
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
flipperkit_version = '0.7.2'
|
flipperkit_version = '0.8.0'
|
||||||
Pod::Spec.new do |spec|
|
Pod::Spec.new do |spec|
|
||||||
spec.name = 'Flipper'
|
spec.name = 'Flipper'
|
||||||
spec.version = flipperkit_version
|
spec.version = flipperkit_version
|
||||||
|
|||||||
Reference in New Issue
Block a user