Reputation: 344
As new windows 11 has android app support, and you can install your favorite app from google playstore to windows 11. I'm wondering if I can install my app directly from the android studio through ADB.
Upvotes: 2
Views: 846
Reputation: 2512
Yes you can , follow this on how to use apk on windows .
Then you build the apk using android studio or gradle build , and locate the apk and run as described.
Upvotes: 3
Reputation: 131
The article link given by George indeed is no nonsense walk through, though it is bit long with many steps it just works. If you are in widows 10 home edition, you can enable hyper-v by following the steps at hyper-v on windows home edition .
After connecting with adb it does appear as a device in android studio.
#adb.exe connect 127.0.0.1:58526
Upvotes: 1