Reputation: 259
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
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:
Upvotes: 1
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
Upvotes: 0
Reputation: 292
Using Android Studio Build -> Generate APK then the output apk build location will appear.
Or
YourProjectName -> app -> build -> outputs -> apk
Upvotes: 0
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