Skip to content

Commit

Permalink
Master > Develop (#631)
Browse files Browse the repository at this point in the history
  • Loading branch information
lumberman authored Apr 20, 2021
1 parent 87de036 commit ccacb43
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ target 'Voke' do
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable the next line.
use_flipper!({ 'Flipper' => '0.85.0' })
if !ENV['CI']
use_flipper!({ 'Flipper' => '0.85.0' })
end

post_install do |installer|
installer.pods_project.targets.each do |target|
Expand Down
5 changes: 3 additions & 2 deletions ios/Voke/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
#import <React/RCTBundleURLProvider.h>
#import <React/RCTRootView.h>

#import <Firebase.h> // Voke: Firebase.
// Dont't move firebase bellow. https://stackoverflow.com/a/64661093/655381

#import <FBSDKCoreKit/FBSDKCoreKit.h> // Voke: FB login
#import "Orientation.h" // Voke: Needed to handle orientation changes
#import <RNCPushNotificationIOS.h> // Voke: Needed for push notifications
Expand All @@ -18,8 +21,6 @@
#import <SKIOSNetworkPlugin/SKIOSNetworkAdapter.h>
#import <FlipperKitReactPlugin/FlipperKitReactPlugin.h>

#import <Firebase.h> // Voke: Firebase.

static void InitializeFlipper(UIApplication *application) {
FlipperClient *client = [FlipperClient sharedClient];
SKDescriptorMapper *layoutDescriptorMapper = [[SKDescriptorMapper alloc] initWithDefaults];
Expand Down

0 comments on commit ccacb43

Please sign in to comment.