How can I send an Android app that I'm developing to someone over e-mail?

后端 未结 9 754
[愿得一人]
[愿得一人] 2020-12-29 11:10

This is my first Android app. I need to email what I have so far to someone for testing.

How should I do I export the app and attach it, so it is not being treated a

相关标签:
9条回答
  • 2020-12-29 11:33

    compile/build your app, it should produce a file like myAppName.apk, just send it via email to your friend

    try to look in yourProjectPath/bin folder

    0 讨论(0)
  • 2020-12-29 11:36

    Export Android Application would be the correct way to generate the apk. Using the one that eclipse uses has debugging info, plus it is signed with debug key, not an actual key. If you install an application signed with one key, and then later try to install an application (same package name) with a different key, you will first have to uninstall the original application first.

    0 讨论(0)
  • 2020-12-29 11:36

    You can use the Microsoft App Center to build and distribute your Signed/Unsigned APK with your beta testers.

    Or you can also use Google Drive, DropBox, Amazon S3 to distribute your APK

    0 讨论(0)
提交回复
热议问题