Infamous911
Infamous911

Reputation: 1531

Android - Exporting a Project

What are the options for exporting a project (into a jar or something) if I want to be able to allow anyone to easily install the app on their device by just having the jar (or whatever object it is). If this is done by making a jar, how does one install the app once they have the jar?

Upvotes: 0

Views: 39

Answers (2)

Shiv Buyya
Shiv Buyya

Reputation: 4130

Connect mobile to pc through usb, Run command adb install yourapp.apk.

P.S: enable usb debugging in developer option.

Upvotes: 1

Prashant Singh
Prashant Singh

Reputation: 151

To generate apk

Go Build option in Tool bar of Android Studio

click Generate Apk

Locate the Generated apk on disk and transfer or copy that apk file to mobile device

open apk file from mobile and it is got installed

Upvotes: 1

Related Questions