Q: I created my project with some wizard (<https:/...
# multiplatform
r
Q: I created my project with some wizard (https://kmp.jetbrains.com/) then committed the file to GitHub. But it did not commit the .idea folder and therefore my debug/run config is no longer available when opening a fresh copy in my Android Studio IDE. Can I recreate it with some command, or do I have to recreate it manually/run the wizard again?
d
I think by default the
.idea
directory may be part of the
.gitignore
. If you really want to include it, you can uncomment
.idea
. When you start the IDE (IntelliJ? Android Studio?) the
.idea
directory should be recreated and you can commit it. I would recommend taking a look at JetBrains How to manage projects under Version Control Systems before you add the .idea directory.