Skip to content

Commit

Permalink
Merge pull request #1104 from firebase/mc/bug
Browse files Browse the repository at this point in the history
add bug link to import
  • Loading branch information
morganchen12 authored Sep 29, 2022
2 parents 0dbdefc + a24a3a3 commit c215437
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,18 @@
#if __has_include(<FirebaseStorage/FirebaseStorage.h>)
// Firebase 8.x
#import <FirebaseStorage/FirebaseStorage.h>
#elif (__has_include(<FirebaseStorage/FirebaseStorage-Swift.h>) && defined(COCOAPODS))
#elif (__has_include(<FirebaseStorage/FirebaseStorage-Swift.h>))
// Firebase 9.0+
#import <FirebaseStorage/FirebaseStorage-Swift.h>
#else
// If you're using FirebaseStorageUI via Swift Package Manager
// from a Swift or mixed Swift/ObjC build target, you will need
// to add
// -Xcc -fmodule-map-file=$(GENERATED_MODULEMAP_DIR)/FirebaseStorage.modulemap
// to your target's Other Swift Flags build setting.
// See
// https://github.com/firebase/FirebaseUI-iOS/issues/1028#issuecomment-1262689219
// for more details.
@import FirebaseStorage;
#endif
#import <SDWebImage/SDWebImage.h>
Expand Down

0 comments on commit c215437

Please sign in to comment.