Android app running on Android Q emulator doesn't show up in Flipper
See original GitHub issueAndroid app running on Android Q emulator doesn’t show up in Flipper. I have this errors in Console:
Failed to create adb client using shell adb command. Trying with adbkit.
Error: Command failed: /opt/android_sdk/platform-tools/adb start-server
/bin/sh: /opt/android_sdk/platform-tools/adb: No such file or directory
Error: Command failed: /opt/android_sdk/tools/emulator -list-avds
/bin/sh: /opt/android_sdk/tools/emulator: No such file or directory
"FailError: Failure: 'cannot bind listener: Operation not permitted'
at file:///Applications/Flipper.app/Contents/Resources/app/bundle.js:59600:31
at tryCatcher (file:///Applications/Flipper.app/Contents/Resources/app/bundle.js:58596:27)
at Promise._settlePromiseFromHandler (file:///Applications/Flipper.app/Contents/Resources/app/bundle.js:56591:37)
at Promise._settlePromiseAt (file:///Applications/Flipper.app/Contents/Resources/app/bundle.js:56674:22)
at Async._drainQueue (file:///Applications/Flipper.app/Contents/Resources/app/bundle.js:53969:16)
at Async._drainQueues (file:///Applications/Flipper.app/Contents/Resources/app/bundle.js:53974:16)
at MutationObserver.Async.drainQueues (file:///Applications/Flipper.app/Contents/Resources/app/bundle.js:53841:18)
at process._tickCallback (internal/process/next_tick.js:68:7)"
Flipper 0.21.0
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
Android Emulator unable to connect to Flipper - Stack Overflow
1 Answer 1 · Open the Settings from the bottom left gear wheel, then "Settings" · Change the "Android SDK location" value to...
Read more >Troubleshooting General Issues - Flipper
If no app plugins are showing up, there may be a connectivity issue between Flipper and your app. Check connection issues to see...
Read more >Flipper Zero — Portable Multi-tool Device for Geeks
Flipper Zero is a portable multi-tool for pentesters and geeks in a toy-like body. It loves hacking digital stuff, such as radio protocols,...
Read more >App crash when trying to use Database Inspector [154871161]
BTW: I have upgraded emulator to v30.0.10-6421526, and are running andriod R on the emulator and android-Q on the device.
Read more >PSA: HOW TO REROLL ANDROID NO DOWNLOAD - Reddit
79 votes, 110 comments. Step 1: Fail your reroll Step 2: Root your phone or emulator Step 3: Go to /data/data/com.kakaogames.wdfp/ Step 4: ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I think this is probably due to Flipper not currently having a good way to deal with custom android sdk installation locations. It looks for an ANDROID_HOME env variable, and falls back to
/opt/android_sdk/
.However, env variables set in .bashrc files and similar aren’t loaded for GUI applications, unless you launch them from the terminal.
One way to workaround this would be to either move your android_sdk to /opt/ (though expect to have to update android studio and any other tools that know where it currently is), or symlink it (
ln -s /path/to/your/sdk /opt/android_sdk
)I’m cleaning up some old issues and this one hasn’t seen updates in a long time. Please let me know if this is still a problem and we can reopen it. Thanks!