I'm doing a collaborative project study. I'd like to put the Android app project folder and file you're making in the Android directory you see in the picture. I'm not sure what to do.
Can't I put it in that directory directly from the Android studio? I've linked the project to the url of GitHub that you see.
android github
Copy the project directory as it is, put it in, and commit and push it.
For example, if you use bash, it's like this.
# Clone store.
$ $ git clone https://github.com/(user)/(repo).git
# Copy the original project.
$ $ cp -R /path/to/project .
# Push
$ $ git add -A
$ git commit-m (summary)
$ $ git push
If you just write GitHub Desktop in File Explorer, you can do the same.
If you open the directory in Android studio after you put it in, it opens well.
© 2025 OneMinuteCode. All rights reserved.