Flipper Release: v0.19.0
Summary: == Highlights - **Layout 2.0**: We have a new layout inspector that was rewritten from the ground to address all sorts of small bugs that like nodes not expanding that should all be gone now. - **New Crash Reporter**: Flipper will now detect crashes on your device and give you easy access to them through a device plugin that you can find next to logs. Learn more at https://fbflipper.com/docs/crash-reporter-plugin.html. - **Import/Export**: You can now import and export Flipper sessions as data to share them with others. Learn more at https://fbflipper.com/docs/share-flipper-data.html. == Fixes - Improved error reporting for what was previously summarised under "RecurringError". (bf9be74ad2) - Fixed an issue where the color picker could get cut off. (f9ec0cd326) (https://github.com/facebook/flipper/issues/396) Full list: https://github.com/facebook/flipper/compare/v0.18.0...v0.19.0 Reviewed By: priteshrnandgaonkar Differential Revision: D14665281 fbshipit-source-id: 78ed042d38642356180f25455d0d17a03ed59c6b
This commit is contained in:
committed by
Facebook Github Bot
parent
b20d0a4c8b
commit
9ff6cfa9a4
24
Specs/Flipper/0.19.0/Flipper.podspec
Normal file
24
Specs/Flipper/0.19.0/Flipper.podspec
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
flipperkit_version = '0.19.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','xplat/utils/*.h'
|
||||||
|
spec.source_files = 'xplat/Flipper/*.{h,cpp,m,mm}','xplat/Flipper/utils/*.{h,cpp,m,mm}'
|
||||||
|
spec.libraries = "stdc++"
|
||||||
|
spec.dependency 'Flipper-Folly', '~>1.2'
|
||||||
|
spec.dependency 'Flipper-RSocket', '~>0.10'
|
||||||
|
spec.compiler_flags = '-DFLIPPER_OSS=1 -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)/Flipper-RSocket\" \"$(PODS_ROOT)/DoubleConversion\"" }
|
||||||
|
end
|
||||||
169
Specs/FlipperKit/0.19.0/FlipperKit.podspec
Normal file
169
Specs/FlipperKit/0.19.0/FlipperKit.podspec
Normal file
@@ -0,0 +1,169 @@
|
|||||||
|
folly_compiler_flags = '-DFLIPPER_OSS=1 -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.10'
|
||||||
|
flipperkit_version = '0.19.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 FBDefines.h is imported as <FBDefines/FBDefines.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/FBDefines.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 FlipperKit 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 FlipperKit source files
|
||||||
|
ss.private_header_files = 'iOS/FlipperKit/FBCxxUtils/**/*.h'
|
||||||
|
end
|
||||||
|
|
||||||
|
spec.subspec "FKPortForwarding" do |ss|
|
||||||
|
ss.header_dir = "FKPortForwarding"
|
||||||
|
ss.dependency 'CocoaAsyncSocket', '~> 7.6'
|
||||||
|
ss.dependency 'PeerTalk', '~>0.0.2'
|
||||||
|
ss.compiler_flags = folly_compiler_flags
|
||||||
|
ss.source_files = 'iOS/FlipperKit/FKPortForwarding/FKPortForwarding{Server,Common}.{h,m}'
|
||||||
|
ss.private_header_files = 'iOS/FlipperKit/FKPortForwarding/FKPortForwarding{Server,Common}.h'
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
spec.subspec "Core" do |ss|
|
||||||
|
ss.dependency 'FlipperKit/FBDefines'
|
||||||
|
ss.dependency 'FlipperKit/FBCxxUtils'
|
||||||
|
ss.dependency 'FlipperKit/CppBridge'
|
||||||
|
ss.dependency 'FlipperKit/FKPortForwarding'
|
||||||
|
ss.dependency 'Flipper-Folly', '~>1.2'
|
||||||
|
ss.dependency 'Flipper', '~>'+flipperkit_version
|
||||||
|
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/*.{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/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListener.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutComponentKitSupport/FlipperKitLayoutComponentKitSupport.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutComponentKitSupport/SKSubDescriptor.h',
|
||||||
|
'iOS/FBDefines/FBDefines.h',
|
||||||
|
'iOS/Plugins/FlipperKitExamplePlugin/FlipperKitExamplePlugin/FlipperKitExamplePlugin.h',
|
||||||
|
'iOS/Plugins/FlipperKitCrashReporterPlugin/FlipperKitCrashReporterPlugin/FlipperKitCrashReporterPlugin.h',
|
||||||
|
'iOS/FlipperKit/**/{FlipperDiagnosticsViewController,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/SKTapListener.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.h'
|
||||||
|
ss.private_header_files = 'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.h',
|
||||||
|
'iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.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}'
|
||||||
|
ss.pod_target_xcconfig = { "HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)\"/Headers/Private/FlipperKit/**" }
|
||||||
|
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/SKSubDescriptor.h'
|
||||||
|
ss.source_files = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutComponentKitSupport/**/*.{h,cpp,m,mm}"
|
||||||
|
ss.pod_target_xcconfig = { "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
|
||||||
|
|
||||||
|
spec.subspec "FlipperKitUserDefaultsPlugin" do |ss|
|
||||||
|
ss.header_dir = "FlipperKitUserDefaultsPlugin"
|
||||||
|
ss.dependency 'FlipperKit/Core'
|
||||||
|
ss.compiler_flags = folly_compiler_flags
|
||||||
|
ss.public_header_files = 'iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h'
|
||||||
|
ss.source_files = "iOS/Plugins/FlipperKitUserDefaultsPlugin/**/*.{h,m}"
|
||||||
|
ss.pod_target_xcconfig = { "HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)\"/Headers/Private/FlipperKit/**" }
|
||||||
|
end
|
||||||
|
|
||||||
|
spec.subspec "FlipperKitExamplePlugin" do |ss|
|
||||||
|
ss.header_dir = "FlipperKitExamplePlugin"
|
||||||
|
ss.dependency 'FlipperKit/Core'
|
||||||
|
ss.compiler_flags = folly_compiler_flags
|
||||||
|
ss.public_header_files = 'iOS/Plugins/FlipperKitExamplePlugin/FlipperKitExamplePlugin.h'
|
||||||
|
ss.source_files = "iOS/Plugins/FlipperKitExamplePlugin/**/*.{h,mm}"
|
||||||
|
ss.pod_target_xcconfig = { "HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)\"/Headers/Private/FlipperKit/**" }
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -48,7 +48,7 @@ repositories {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
debugImplementation 'com.facebook.flipper:flipper:0.18.0'
|
debugImplementation 'com.facebook.flipper:flipper:0.19.0'
|
||||||
debugImplementation 'com.facebook.soloader:soloader:0.5.1'
|
debugImplementation 'com.facebook.soloader:soloader:0.5.1'
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
@@ -105,7 +105,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.18.0'
|
flipperkit_version = '0.19.0'
|
||||||
|
|
||||||
target 'MyApp' do
|
target 'MyApp' do
|
||||||
platform :ios, '9.0'
|
platform :ios, '9.0'
|
||||||
@@ -180,7 +180,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.18.0'
|
flipperkit_version = '0.19.0'
|
||||||
|
|
||||||
target 'MyApp' do
|
target 'MyApp' do
|
||||||
platform :ios, '9.0'
|
platform :ios, '9.0'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# POM publishing constants
|
# POM publishing constants
|
||||||
VERSION_NAME=0.18.1-SNAPSHOT
|
VERSION_NAME=0.19.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 = '-DFLIPPER_OSS=1 -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 = '-DFLIPPER_OSS=1 -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.10'
|
yogakit_version = '~>1.10'
|
||||||
flipperkit_version = '0.18.0'
|
flipperkit_version = '0.19.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.18.0",
|
"version": "0.19.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.18.0'
|
flipperkit_version = '0.19.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