subrata sharma
subrata sharma

Reputation: 344

Can I install android app in windows 11 from android studio?

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

Answers (2)

George
George

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

Bakavani
Bakavani

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

Hyper-V on Windows home edition

Upvotes: 1

Related Questions