Add getting-started section about snapshots
Summary: Mention the snapshot releases we now publish and how to use them. Reviewed By: jknoxville Differential Revision: D9654559 fbshipit-source-id: 0b4721a29f93d92a27cc1833bfc98b5642461d94
This commit is contained in:
committed by
Facebook Github Bot
parent
9bb898c846
commit
36975a5d8e
@@ -68,6 +68,23 @@ public class MyApplication extends Application {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Android Snapshots
|
||||||
|
|
||||||
|
Feeling adventurous? We publish Android snapshot releases directly off of `master`.
|
||||||
|
|
||||||
|
You can get the latest version by adding the Maven Snapshot repository to your sources
|
||||||
|
and pointing to the most recent `-SNAPSHOT` version.
|
||||||
|
|
||||||
|
```groovy
|
||||||
|
repositories {
|
||||||
|
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
debugImplementation 'com.facebook.flipper:flipper:0.6.19-SNAPSHOT'
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
### Setup your iOS app
|
### Setup your iOS app
|
||||||
|
|
||||||
To integrate with an iOS app, you can use [CocoaPods](https://cocoapods.org). Add the mobile Flipper SDK and its dependencies to your `Podfile`:
|
To integrate with an iOS app, you can use [CocoaPods](https://cocoapods.org). Add the mobile Flipper SDK and its dependencies to your `Podfile`:
|
||||||
@@ -120,13 +137,14 @@ and install the dependencies by running `pod install`. When you open the Xcode w
|
|||||||
@end
|
@end
|
||||||
```
|
```
|
||||||
|
|
||||||
<div class='warning'>
|
<div class="warning">
|
||||||
|
|
||||||
- We haven't released the dependency to CocoaPods yet, here is the [issue](https://github.com/facebook/flipper/issues/132) by which you can track.
|
- We haven't released the dependency to CocoaPods yet, here is the [issue](https://github.com/facebook/flipper/issues/132) by which you can track.
|
||||||
- If you do not use CocoaPods as a dependency management tool then currently there is no way to integrate SonarKit other than manually including all the dependencies and building it.
|
- If you do not use CocoaPods as a dependency management tool then currently there is no way to integrate SonarKit other than manually including all the dependencies and building it.
|
||||||
- For Android, Flipper works with both emulators and physical devices connected through USB. However on iOS, we don't yet support physical devices.
|
- For Android, Flipper works with both emulators and physical devices connected through USB. However on iOS, we don't yet support physical devices.
|
||||||
- The Flipper layout plugin isn't supported in Swift projects since they include C++ dependencies. We're working on supporting it for Swift apps. You can join the discussion on the [issues page](https://github.com/facebook/flipper/issues).
|
- The Flipper layout plugin isn't supported in Swift projects since they include C++ dependencies. We're working on supporting it for Swift apps. You can join the discussion on the [issues page](https://github.com/facebook/flipper/issues).
|
||||||
</div>
|
|
||||||
|
</div>
|
||||||
|
|
||||||
## Ready for takeoff
|
## Ready for takeoff
|
||||||
|
|
||||||
|
|||||||
@@ -12,12 +12,14 @@
|
|||||||
"Create Table Plugin": "Create Table Plugin",
|
"Create Table Plugin": "Create Table Plugin",
|
||||||
"error-handling": "Error Handling",
|
"error-handling": "Error Handling",
|
||||||
"Error Handling": "Error Handling",
|
"Error Handling": "Error Handling",
|
||||||
"establishing-a-connection": "establishing-a-connection",
|
"establishing-a-connection": "Establishing a connection",
|
||||||
|
"Establishing a connection": "Establishing a connection",
|
||||||
"getting-started": "Getting Started",
|
"getting-started": "Getting Started",
|
||||||
"Getting Started": "Getting Started",
|
"Getting Started": "Getting Started",
|
||||||
"js-setup": "JavaScript Setup",
|
"js-setup": "JavaScript Setup",
|
||||||
"JavaScript Setup": "JavaScript Setup",
|
"JavaScript Setup": "JavaScript Setup",
|
||||||
"layout-plugin": "Layout Inspector",
|
"layout-plugin": "Layout Inspector",
|
||||||
|
"leak-canary-plugin": "LeakCanary",
|
||||||
"logs-plugin": "Logs",
|
"logs-plugin": "Logs",
|
||||||
"network-plugin": "Network",
|
"network-plugin": "Network",
|
||||||
"sandbox-plugin": "Sandbox",
|
"sandbox-plugin": "Sandbox",
|
||||||
@@ -39,7 +41,8 @@
|
|||||||
"Using Flipper": "Using Flipper",
|
"Using Flipper": "Using Flipper",
|
||||||
"Built-in Plugins": "Built-in Plugins",
|
"Built-in Plugins": "Built-in Plugins",
|
||||||
"Plugins: Desktop part": "Plugins: Desktop part",
|
"Plugins: Desktop part": "Plugins: Desktop part",
|
||||||
"Plugins: Mobile part": "Plugins: Mobile part"
|
"Plugins: Mobile part": "Plugins: Mobile part",
|
||||||
|
"Flipper Internals": "Flipper Internals"
|
||||||
},
|
},
|
||||||
"pages-strings": {
|
"pages-strings": {
|
||||||
"Help Translate|recruit community translators for your project": "Help Translate",
|
"Help Translate|recruit community translators for your project": "Help Translate",
|
||||||
|
|||||||
Reference in New Issue
Block a user