ios - In Xcode 7 how can I have a static lib target and a framework target with the same name? -
i'm trying convert existing github repo (rmstore, apply repo) compatible carthage. requires adding framework target xcode project. want resulting framework called rmstore.framework
, cannot create new target xcode project called rmstore because there target name, builds static library (and don't want rid of target).
i created new target called rmstoreframework, resulting framework called rmstoreframework.framework
, not want. so, there way either:
- create 2 targets same name or alternatively,
- make name of resulting framework different target name?
you can change name of resulting framework. on build settings -> product name, can choose name want.
this pattern can seen in projects support carthage , support both ios , mac platforms.
Comments
Post a Comment