You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have several custom build configurations, which are copies of 'release' configuration. But i can't archive using any of them and if i use default 'release' configuration, it successfully archives it.
i build for iOS 9, Charts.framework is in 'embedded binaries'. Embedded content contains swift - set to yes. It's objc project, so i created an empty swift file. In that file i wrote
import Foundation
import UIKit;
import Charts;
Third line is where i receive an error No such module.
And in my viewcontroller, i have #import "(ProductModuleName)-Swift.h". Any idea why i can't archive for custom configuration?
The text was updated successfully, but these errors were encountered:
I got it. Charts project should also contain the same build configurations as your project. That's why it couldn't find charts for other configurations and for release it worked.
I have several custom build configurations, which are copies of 'release' configuration. But i can't archive using any of them and if i use default 'release' configuration, it successfully archives it.
i build for iOS 9, Charts.framework is in 'embedded binaries'. Embedded content contains swift - set to yes. It's objc project, so i created an empty swift file. In that file i wrote
Third line is where i receive an error
No such module
.And in my viewcontroller, i have
#import "(ProductModuleName)-Swift.h"
. Any idea why i can't archive for custom configuration?The text was updated successfully, but these errors were encountered: