chandra
chandra

Reputation: 259

How can I get Apk file...?

I am new for Android that's why i'm asking this much of doubts. I Developed one project i want send Apk file to some one else.i want get my APK file from my project please help me.

Upvotes: 2

Views: 238

Answers (4)

Paraskevas Ntsounos
Paraskevas Ntsounos

Reputation: 1777

Build -> Build APK. If you want to create a signed APK you should follow other process but i think you will be ok with this. Then Android Studio generate link to your local folder in event log with apk.

Like this:

enter image description here

Upvotes: 1

Saurabh Vardani
Saurabh Vardani

Reputation: 1861

Open your project is file explorer then open app folder then open build folder then open output folder then open apk folder...here you will get your apks.
File Explorer-->app-->build-->Output-->apk folder

enter image description here

Upvotes: 0

Laurence Pardz
Laurence Pardz

Reputation: 292

Using Android Studio Build -> Generate APK then the output apk build location will appear.

Or

YourProjectName -> app -> build -> outputs -> apk

Upvotes: 0

Jay Rathod
Jay Rathod

Reputation: 11255

For Eclipse.

You can take it from Your Project -> bin folder.

From Android Studio.

You can take it from Your Project -> app -> build -> outputs -> apk -> app-debug.apk

If you want to generate signed APK it will give you option where you want to generate your APK and set your path.

Upvotes: 0

Related Questions