@@ -36,25 +36,20 @@ To integrate a Firebase SDK with your app:
36
36
[ static frameworks] ( https://www.raywenderlich.com/65964/create-a-framework-for-ios )
37
37
which cannot be embedded into your application's bundle.*
38
38
39
- 7 . If the SDK has resources, go into the Resources folders, which will be in
40
- the SDK folder. Drag all of those resources into the Project Navigator, just
41
- like the frameworks, again making sure that the target you want to add these
42
- resources to has a checkmark next to it, and that you've selected "Copy items
43
- if needed".
44
- 8 . Add the -ObjC flag to "Other Linker Settings":
39
+ 7 . Add the -ObjC flag to "Other Linker Settings":
45
40
a. In your project settings, open the Settings panel for your target
46
41
b. Go to the Build Settings tab and find the "Other Linker Flags" setting
47
42
in the Linking section.
48
43
c. Double-click the setting, click the '+' button, and add "-ObjC" (without
49
44
quotes)
50
- 9 . Drag the ` Firebase.h ` header in this directory into your project. This will
45
+ 8 . Drag the ` Firebase.h ` header in this directory into your project. This will
51
46
allow you to ` #import "Firebase.h" ` and start using any Firebase SDK that you
52
47
have.
53
- 10 . If you're using Swift or want to use modules from Objective C, drag
48
+ 9 . If you're using Swift or want to use modules from Objective C, drag
54
49
` module.modulemap ` into your project and update the
55
50
"User Header Search Paths" in your project's Build Settings to include the
56
51
directory that contains the added module map.
57
- 11 . You're done! Compile your target and start using Firebase.
52
+ 10 . You're done! Compile your target and start using Firebase.
58
53
59
54
If you want to add another SDK, repeat the steps above with the frameworks for
60
55
the new SDK. You only need to add each framework once, so if you've already
0 commit comments