Qazi Maaz Arshad
Qazi Maaz Arshad

Reputation: 83

GitHub not showing languages used in repository

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.sstatic.net/6C3il.jpg

Upvotes: 8

Views: 6697

Answers (1)

iamdhavalparmar
iamdhavalparmar

Reputation: 1218

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

Upvotes: 7

Related Questions