I've created one pod repository with swift language, after completion of all process it shows Objective-c tagged language for that repository?
Is that anything I've done wrong while creating library?
Library link - https://github.com/KiranJasvanee/KJCurveSlider
Asked
Active
Viewed 80 times
0

Inder Kumar Rathore
- 39,458
- 17
- 135
- 184

Kiran Jasvanee
- 6,362
- 1
- 36
- 52
1 Answers
3
This is because your podfile has downloaded a library that is coded in ObjectiveC. That code is greater than your actual code, thus Github thinks the language is Obj C
I'd recommend looking at this stack overflow to solve your problem
Also, this link describes how to work with cocoa pods with git

Community
- 1
- 1

Ronak Shah
- 936
- 9
- 17
-
Hi Ronak, You'r right. There was FBSnapshotTestCase Objective-c library been installed through dependency mentioned on pod file in Example. I've removed it, and it shown 'Swift' tagged! – Kiran Jasvanee Mar 06 '17 at 05:56