Summary: - New [Crash Reporter Plugin](https://fbflipper.com/docs/crash-reporter-plugin.html). - "Where is my plugin?" screen can show you why a plugin wasn't loaded. - New reusable components for StackTrace and MarkerTimeline. - Support for remote Android devices when connected with adb. - Avoid indexing 0s videos on Android when recording screencaps. (7471dc6481) - Fix emulator launching on Linux. (7471dc6481) - Several fixes to the certificate negotiation process. Reviewed By: priteshrnandgaonkar Differential Revision: D13589524 fbshipit-source-id: 3bc0b2ff4d7802b0b767bb5fc55046a84e4a3ec8
25 lines
1.3 KiB
Ruby
25 lines
1.3 KiB
Ruby
flipperkit_version = '0.14.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 = '-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)/RSocket\" \"$(PODS_ROOT)/DoubleConversion\"" }
|
|
end
|