Enable flipper android to use different ports based on prop
Summary: Part 1 of enabling flipper to run on custom ports: android SDK. Still to go: iOS SDK and desktop This should allow you to run mobile apps that use flipper on different ports than the default (8089,8088). `adb shell` `su` `setprop flipper.ports 1111,2222` From what I can tell, this only works on rooted devices. Reviewed By: passy Differential Revision: D13753238 fbshipit-source-id: c5f370c9d8c7382e8c17fb81d4010c642ef7c114
This commit is contained in:
committed by
Facebook Github Bot
parent
c68e74c6a0
commit
324a7ae873
@@ -24,8 +24,6 @@
|
||||
|
||||
static constexpr int reconnectIntervalSeconds = 2;
|
||||
static constexpr int connectionKeepaliveSeconds = 10;
|
||||
static constexpr int securePort = 8088;
|
||||
static constexpr int insecurePort = 8089;
|
||||
|
||||
static constexpr int maxPayloadSize = 0xFFFFFF;
|
||||
|
||||
@@ -84,6 +82,8 @@ FlipperConnectionManagerImpl::FlipperConnectionManagerImpl(
|
||||
std::shared_ptr<ConnectionContextStore> contextStore)
|
||||
: deviceData_(config.deviceData),
|
||||
flipperState_(state),
|
||||
insecurePort(config.insecurePort),
|
||||
securePort(config.securePort),
|
||||
flipperEventBase_(config.callbackWorker),
|
||||
connectionEventBase_(config.connectionWorker),
|
||||
contextStore_(contextStore) {
|
||||
|
||||
Reference in New Issue
Block a user