Flipper Release: v0.37.0
Summary: Releasing version 0.37.0 Reviewed By: jknoxville Differential Revision: D20919249 fbshipit-source-id: 59ec28ba10043da03c460d9eaadb30a8fd2e4a6f
This commit is contained in:
committed by
Facebook GitHub Bot
parent
25222606c6
commit
2d27b90bd9
@@ -24,10 +24,10 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
debugImplementation 'com.facebook.flipper:flipper:0.36.0'
|
||||
debugImplementation 'com.facebook.flipper:flipper:0.37.0'
|
||||
debugImplementation 'com.facebook.soloader:soloader:0.8.2'
|
||||
|
||||
releaseImplementation 'com.facebook.flipper:flipper-noop:0.36.0'
|
||||
releaseImplementation 'com.facebook.flipper:flipper-noop:0.37.0'
|
||||
}
|
||||
```
|
||||
|
||||
@@ -112,4 +112,4 @@ Finally, you need to add plugins to your Flipper client. Above, we have only add
|
||||
|
||||
## Having trouble?
|
||||
|
||||
See the [troubleshooting page](troubleshooting.html) for help with known problems.
|
||||
See the [troubleshooting page](troubleshooting.html) for help with known problems.
|
||||
|
||||
@@ -15,7 +15,7 @@ The following configuration assumed CocoaPods 1.9+.
|
||||
|
||||
```ruby
|
||||
project 'MyApp.xcodeproj'
|
||||
flipperkit_version = '0.36.0'
|
||||
flipperkit_version = '0.37.0'
|
||||
|
||||
target 'MyApp' do
|
||||
platform :ios, '9.0'
|
||||
@@ -77,7 +77,7 @@ end
|
||||
|
||||
```ruby
|
||||
project 'MyApp.xcodeproj'
|
||||
flipperkit_version = '0.36.0'
|
||||
flipperkit_version = '0.37.0'
|
||||
|
||||
target 'MyApp' do
|
||||
platform :ios, '9.0'
|
||||
|
||||
@@ -114,4 +114,4 @@ public class MainApplication extends Application implements ReactApplication {
|
||||
|
||||
## Further Steps
|
||||
|
||||
To create your own plugins and integrate with Flipper using JavaScript, check out our [writing plugins for React Native](tutorial/react-native) tutorial!
|
||||
To create your own plugins and integrate with Flipper using JavaScript, check out our [writing plugins for React Native](tutorial/react-native) tutorial!
|
||||
|
||||
@@ -16,7 +16,7 @@ Add this code to your `ios/Podfile`:
|
||||
platform :ios, '9.0'
|
||||
|
||||
def flipper_pods()
|
||||
flipperkit_version = '0.36.0'
|
||||
flipperkit_version = '0.37.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.36.0'
|
||||
debugImplementation 'com.facebook.flipper:flipper-litho-plugin:0.37.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.36.0'
|
||||
debugImplementation 'com.facebook.flipper:flipper-leakcanary-plugin:0.37.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.36.0'
|
||||
debugImplementation 'com.facebook.flipper:flipper-network-plugin:0.37.0'
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user