From ccacb430ea663634528c0f0a50ae4252231b6d84 Mon Sep 17 00:00:00 2001 From: Vlad Mitkovsky Date: Mon, 19 Apr 2021 22:49:24 -0300 Subject: [PATCH] Master > Develop (#631) --- ios/Podfile | 4 +++- ios/Voke/AppDelegate.m | 5 +++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ios/Podfile b/ios/Podfile index 76be5b34..3a533cbe 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -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| diff --git a/ios/Voke/AppDelegate.m b/ios/Voke/AppDelegate.m index 5f31780f..01b81189 100644 --- a/ios/Voke/AppDelegate.m +++ b/ios/Voke/AppDelegate.m @@ -4,6 +4,9 @@ #import #import +#import // Voke: Firebase. +// Dont't move firebase bellow. https://stackoverflow.com/a/64661093/655381 + #import // Voke: FB login #import "Orientation.h" // Voke: Needed to handle orientation changes #import // Voke: Needed for push notifications @@ -18,8 +21,6 @@ #import #import -#import // Voke: Firebase. - static void InitializeFlipper(UIApplication *application) { FlipperClient *client = [FlipperClient sharedClient]; SKDescriptorMapper *layoutDescriptorMapper = [[SKDescriptorMapper alloc] initWithDefaults];