Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Swift Package Manager
All
Importing FirebaseStorage or FirebaseFunctions publicizes internal FirebaseCore APIs.
FirebaseStorage
FirebaseFunctions
Commenting out import FirebaseFunctions causes the build to fail, as expected.
import FirebaseFunctions
import SwiftUI import FirebaseCore import FirebaseFunctions @main struct Xcode14B1TestingApp: App { var body: some Scene { WindowGroup { ContentView() .onAppear { // Should not compile, but does. FirebaseApp.isDefaultAppConfigured() FirebaseApp.resetApps() } } } }
The text was updated successfully, but these errors were encountered:
@_implementationOnly import
Fixed in #9887
[REQUIRED] Step 1: Describe your environment
Swift Package Manager
, haven't tested CocoaPods yetAll
[REQUIRED] Step 2: Describe the problem
Importing
FirebaseStorage
orFirebaseFunctions
publicizes internal FirebaseCore APIs.Steps to reproduce:
Relevant Code:
Commenting out
import FirebaseFunctions
causes the build to fail, as expected.The text was updated successfully, but these errors were encountered: