Kiran Jasvanee
Kiran Jasvanee

Reputation: 6564

Github swift repository tagged Objective-c

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
enter image description here

Upvotes: 0

Views: 83

Answers (1)

Ronak Shah
Ronak Shah

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

Related Questions