Android Studio: How do I upload a project into my Mobile Phone? I have sucessfuly compiled it but I do not know how to upload it into my Mobile Phone.
Android Studio: How do I upload a project into my Mobile Phone? I have sucessfuly compiled it but I do not know how to upload it into my Mobile Phone
You can just use the debug tool to debug directly with your phone. See the documentation here: https://developer.android.com/studio/run/device
Or
You can just locate the debug APK file in the folder app/build/outputs/apk/debug/app-debug.apk
or find the release APK in the app/build/outputs/apk/release/app-release.apk
folder.
There are other options but these two will get you there easily.