Replies: 1 comment
-
Capacitor 3 has a But make sure you read the upgrade guide first |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
My dev setup is a bit unorthodox. I have my editor running on a Macbook, but through ssh I am actually editing my project's source files on a remote linux minipc (on the same LAN) where I have configured android studio appropriately to work on flutter projects. I connect
adb
to my physical android phone via wifi (is listed when runningadb devices
) and so on that remote host I can just runflutter run
(https://flutter.dev/docs/get-started/test-drive?tab=terminal) and it will launch the app on my phone wirelessly.This is all being done for performance reasons (Macbooks generally have limited hardware specs). This still requires Android Studio to be configured on the remote host, but it works seamlessly and I never have to interact with it.
Currently I can't have the same workflow when using Capacitor since I have to do
npx cap open android
to open the editor first and then run the project from there. There should be anpx cap run android
that works in a similar manner toflutter run
.Beta Was this translation helpful? Give feedback.
All reactions