Search code examples
gitandroid-studiogit-clone

Unversioned Files appear from nowhere


I shifted to Ubuntu from Windows and when i cloned the project from git repository and opened it in android studio, many files appear in un-versioned files. How to get rid of them?

Attached Picture


Solution

  • You need to add a .gitignore file, cf documentation

    In your case:

    # Gradle files
    .gradle/
    build/
    
    # Local configuration file (sdk path, etc)
    local.properties
    
    
    # Android Studio generated files and folders
    captures/
    .externalNativeBuild/
    .cxx/
    *.apk
    output.json
    
    # IntelliJ
    *.iml
    .idea/
    
    # Keystore files
    *.jks
    *.keystore
    
    
    # Android Profiling
    *.hprof