I want to play my game on the phone

I am just getting into corona and made my first game for android.
I programed it on pc but i want to play on my phone.
How can i send the game to my phone as an .apk?

I think you are looking for this: https://docs.coronalabs.com/guide/distribution/androidBuild/index.html

More here - https://docs.coronalabs.com/guide/distribution/index.html

Connect the device ( your phone ) to the computer with a USB cable and save the application (yourgame.apk) to the SD card or the device.
In your phone follow the path: Settings - Security - Unknown sources, where you select the “Allow installation of applications other than Play Store” checkbox.
Then from “My Files” reach the application (yourgame.apk).
Click on the application (yourgame.apk) and select Package Installer.
Done, you have the yourgame.apk application installed and you can try it out.
All this is for Android OS.

@Crasty0 good advice from @bulcolimpex - I would add to this and say that I find getting “adb” working is vital to development. I’m using a Mac and all I have to do is "adb install -r “appname.apk” to test it. And to see the log in real-time (things you use the print command with) can be seen by typing “adb logcat Corona:v *:s”

For Mac: https://www.youtube.com/results?search_query=how+to+setup+adb+on+mac

For Windows: https://www.youtube.com/results?search_query=how+to+setup+adb+on+windows+10

Thank you for your help.