6

I uploaded my android studio project in java on GitHub but it is not showing languages section. How do I add languages section. And why GitHub failed to detect languages used in repository?

Repository link - https://github.com/QAZIMAAZARSHAD/Bank-Android-App

https://i.stack.imgur.com/6C3il.jpg

1 Answers1

5

These files are considered documentation by Linguist because they're in the app/ folder. You can use the following.

make a file name called .gitattributes this file will override that behavior and paste the following in that file.

app/* linguist-documentation=false
app/* linguist-vendored
iamdhavalparmar
  • 1,090
  • 6
  • 23
  • 2
    I had the same problem when I had all my JavaScript files inside of the `env` folder then I just renamed it to `src` and then GitHub finally acknowledged the existence of those files. – Ayush Aug 19 '21 at 16:45