2016-12-25 14 views
5

Uruchomiłem pusty projekt Xcode i wszystko co zrobiłem to dodać framework Firebase przez Cocoapods i zaimportować go do Appdelegate i viewcontroller. Kiedy dodam FIRApp.configure() do didFinishLoadingWithOptions Dostaję ten błąd. Jeśli usuniemy tę linię, ale nadal zaimportuję ją, działa bez żadnych błędów. Zdarza się to w pustym projekcie bez niczego w storybooku ani w viewcontroller.swift.Firebase powoduje "wątek 1: sygnał SIGABRT"

W konsoli jest powiedziane libC++ abi.dylib: zakończonego nieprzechwyconego wyjątkiem typu NSException (11dB)

Xcode 8.2 szybkiego 3

import UIKit 
import Firebase 

@UIApplicationMain 
class AppDelegate: UIResponder, UIApplicationDelegate { 

var window: UIWindow? 


func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 
    // Override point for customization after application launch. 
FIRApp.configure() 

    return true 
} 

func applicationWillResignActive(_ application: UIApplication) { 
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 
    // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game. 
} 

func applicationDidEnterBackground(_ application: UIApplication) { 
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 
} 

func applicationWillEnterForeground(_ application: UIApplication) { 
    // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background. 
} 

func applicationDidBecomeActive(_ application: UIApplication) { 
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 
} 

func applicationWillTerminate(_ application: UIApplication) { 
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 
} 

}

Podfile

# Uncomment the next line to define a global platform for your  project 
    # platform :ios, '9.0' 

    target 'dur2' do 
     # Comment the next line if you're not using Swift and don't want to use dynamic frameworks 
     use_frameworks! 

     # Pods for dur2 

pod 'Firebase/Core' 
pod 'Firebase/AdMob' 
pod 'Firebase/Messaging' 
pod 'Firebase/Database' 
pod 'Firebase/Invites' 
pod 'Firebase/DynamicLinks' 
pod 'Firebase/Crash' 
pod 'Firebase/RemoteConfig' 
pod 'Firebase/Auth' 
pod 'Firebase/Storage' 
pod 'SDWebImage' 

koniec

+0

czy dodać plik googleplist? – Ro4ch

+0

Czy dodałeś plik .plist do Firebase? –

+0

Tak, zrobiłem @ Ro4ch – Henry

Odpowiedz

2

Spróbujmy testu.

Utwórz nowy projekt zgodnie z instrukcjami w witrynie Firebase, dzięki czemu dodasz do projektu GoogleService-Info.plist.

Na etapie, na którym zostanie utworzony plik Pod, upewnij się, że jesteś w katalogu projektów i korzystać z tego tekstu:

# Uncomment the next line to define a global platform for your project 
# platform :ios, '9.0' 

target 'your-project-name' do 
    # Comment the next line if you're not using Swift and don't want to use dynamic frameworks 
    use_frameworks! 

    # Pods for Firesearch 
    pod ‘Firebase/Core’ 
end 

i umieścić swoją nazwę projektu w miejscu -projekt-name Twój

Zapisz plik, a następnie zrobić

pod install 

następnie otwórz Project-name.xcworkspace i zbudować.

+0

OK Zrobiłem to i uruchomiłem na moim urządzeniu i nie pojawiły się żadne błędy, moja konsola Firebase potwierdza instalację aplikacji. Z tego mogę tylko myśleć, że dodatkowe strąki, które zainstalowałem, spowodowały błąd, jakieś pomysły? – Henry

+0

Jak mogę usunąć dodatkowe kapsuły, które zainstalowałem z moim poprzednim projektem? – Henry

+0

@Henry Możesz wypróbować [Automatyczną aplikację] (https://github.com/CocoaPods/cocoapods-deintegrate), które mogą pomóc. Poza tym muszą być ręcznie usunięte. Możesz również spróbować usunąć strąk z podfile, a następnie ponownie uruchomić instalację pod. – Jay

1

Jeśli jeszcze nie,

Przejdź do swojego projektu w firebase i pobierz plik google.plist i dodaj go do swojego projektu i uruchom.

2

Pracował dla Xcode 9

Jeśli żadna z rozwiązań pracował spróbować tego:

  1. Zamknij Xcode
  2. W Finderze:

    • Usuń .xcworkspace plik
    • Usuń Podfile.zablokować plik
    • Usuń Pods folderu
  3. W Terminalu (w folderze projektu): pod zainstalować

  4. Upewnij się, że GoogleService-Info.plist dodaje do celu i wygenerowane dla twojego BUNDLE_ID.

Z nieznanych powodów podczas korzystania zarówno „Firebase/AdMob” i „Firebase/Core” strąki Xcode może zepsuć przestrzeń roboczą i wytwarzają złe build że padnie w czasie wykonywania, jeśli spróbujesz zadzwoń FirebaseApp.configure() lub GADMobileAds.configure (withApplicationID: "APP_ID")

Powiązane problemy