Reputation: 6564
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
Upvotes: 0
Views: 83
Reputation: 1058
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
Upvotes: 3