Skip to content

Commit

Permalink
Merge pull request #32 from jeongshin/main
Browse files Browse the repository at this point in the history
fix: ios build issue when using use_frameworks! static
  • Loading branch information
baronha authored Jul 23, 2024
2 parents 84d787f + 4872e28 commit bf19a9a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ios/Ting.mm
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
#import "Ting.h"

#import <ting-Swift.h>
#if __has_include("ting-Swift.h")
#import <ting-Swift.h>
#else
// When using use_frameworks! :linkage => :static in Podfile
#import <Ting/Ting-Swift.h>
#endif

@implementation Ting

Expand Down

0 comments on commit bf19a9a

Please sign in to comment.