Skip to content

Commit

Permalink
fix(ios): watchOS embedded apps (#250)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielbiga committed May 14, 2024
1 parent c1c95cf commit 1df9ea2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions project-template-ios/internal/Swift-ObjC-Bridging-Header.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,9 @@
// the *-Swift.h*.
// https://developer.apple.com/documentation/swift/imported_c_and_objective-c_apis/importing_objective-c_into_swift

#import "NativeScript/NativeScript.h"
#import "NativeScriptStart.h"
#import "TargetConditionals.h"

#ifndef TARGET_OS_WATCH
#import "NativeScript/NativeScript.h"
#import "NativeScriptStart.h"
#endif

0 comments on commit 1df9ea2

Please sign in to comment.