0

I need to send my Android project APK through email. Do I just need to copy APK file from bin folder and send it in email so that they can test my project or is there any other process?

mmvsbg
  • 3,570
  • 17
  • 52
  • 73

1 Answers1

0

Sending the APK through email is perfectly fine. All you need to do is note where you download it.

Also before you can actually install the APK file, you’ll need to tell your device that it can install any apps outside of the Play Store without throwing a fit. You can find this switch in your Settings –> Security –> Unknown Sources.

Once this is enabled, you’re clear to fire up your file browser, locate the APK file, and open it. The Android OS should take over, identifying that the APK file is an app, and ask you whether you’d like to go ahead and install it, all permissions accounted for. That should be it.

mmvsbg
  • 3,570
  • 17
  • 52
  • 73