I have successfully pushed everything to GitHub from Android Studio, except the generated apk file.
Can anyone help me how to push the apk file to the GitHub repo?
I have successfully pushed everything to GitHub from Android Studio, except the generated apk file.
Can anyone help me how to push the apk file to the GitHub repo?
You usually don't push any generated code or artifacts into a repository and Github lets you manually upload artifacts for that purpose (check Releases).
Check your .gitignore
file in your project for the line containing the build
folder. That's usually per default in every project since it's really bad practise putting those into version control.