Flipper Release: v0.32.0
Summary: == Highlights == - Android: Theme information for Application, Activity and View descriptors are now visible in the Layout plugin. (6f4de969fb) - App Visualiser: When importing an archived device, you can now see and inspect the last screen of the app. (20db85adf4) == Fixes == - Fix `FlipperKit` warnings in XCode. (972277b031) - Upgrade Folly to v2020.02.17.00 (GH809) - Several performance improvements, originally caused by unnecessary rerenders. - Crash reports weren't scrollable. (e1e8bb841c) - Kill orhpaned instruments processes. (GH819) Reviewed By: nikoant Differential Revision: D20067792 fbshipit-source-id: 3f0ebcb03881373fd909f513e5d82e23a5f9f1f1
This commit is contained in:
committed by
Facebook Github Bot
parent
f6cc7c93ef
commit
6c72fa3dbb
@@ -43,10 +43,10 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
debugImplementation 'com.facebook.flipper:flipper:0.31.2'
|
||||
debugImplementation 'com.facebook.flipper:flipper:0.32.0'
|
||||
debugImplementation 'com.facebook.soloader:soloader:0.8.2'
|
||||
|
||||
releaseImplementation 'com.facebook.flipper:flipper-noop:0.31.2'
|
||||
releaseImplementation 'com.facebook.flipper:flipper-noop:0.32.0'
|
||||
}
|
||||
```
|
||||
|
||||
@@ -122,7 +122,7 @@ We support both Swift and Objective-C for Flipper with CocoaPods as build and di
|
||||
|
||||
```ruby
|
||||
project 'MyApp.xcodeproj'
|
||||
flipperkit_version = '0.31.2'
|
||||
flipperkit_version = '0.32.0'
|
||||
|
||||
target 'MyApp' do
|
||||
platform :ios, '9.0'
|
||||
@@ -184,7 +184,7 @@ end
|
||||
|
||||
```ruby
|
||||
project 'MyApp.xcodeproj'
|
||||
flipperkit_version = '0.31.2'
|
||||
flipperkit_version = '0.32.0'
|
||||
|
||||
target 'MyApp' do
|
||||
platform :ios, '9.0'
|
||||
@@ -566,7 +566,7 @@ If you can't build your app after adding Flipper, you may need to configure the
|
||||
platform :ios, '9.0'
|
||||
|
||||
def flipper_pods()
|
||||
flipperkit_version = '0.31.2'
|
||||
flipperkit_version = '0.32.0'
|
||||
pod 'FlipperKit', '~>' + flipperkit_version, :configuration => 'Debug'
|
||||
pod 'FlipperKit/FlipperKitLayoutPlugin', '~>' + flipperkit_version, :configuration => 'Debug'
|
||||
pod 'FlipperKit/SKIOSNetworkPlugin', '~>' + flipperkit_version, :configuration => 'Debug'
|
||||
|
||||
@@ -28,7 +28,7 @@ gradle configuration:
|
||||
|
||||
```groovy
|
||||
dependencies {
|
||||
debugImplementation 'com.facebook.flipper:flipper-litho-plugin:0.31.2'
|
||||
debugImplementation 'com.facebook.flipper:flipper-litho-plugin:0.32.0'
|
||||
debugImplementation 'com.facebook.litho:litho-annotations:0.19.0'
|
||||
// ...
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ Ensure that you already have an explicit dependency in your application's
|
||||
|
||||
```groovy
|
||||
dependencies {
|
||||
debugImplementation 'com.facebook.flipper:flipper-leakcanary-plugin:0.31.2'
|
||||
debugImplementation 'com.facebook.flipper:flipper-leakcanary-plugin:0.32.0'
|
||||
debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.6.1'
|
||||
releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.6.1'
|
||||
}
|
||||
|
||||
@@ -12,7 +12,7 @@ The network plugin is shipped as a separate Maven artifact:
|
||||
|
||||
```groovy
|
||||
dependencies {
|
||||
debugImplementation 'com.facebook.flipper:flipper-network-plugin:0.31.2'
|
||||
debugImplementation 'com.facebook.flipper:flipper-network-plugin:0.32.0'
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user