Created
June 2, 2025 12:03
-
-
Save KevinBlock-GC/48d4dc762f373576b2f6932522952ee3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cocoapods.FirebaseCore.FIRApp | |
import kotlinx.cinterop.ExperimentalForeignApi | |
@OptIn(ExperimentalForeignApi::class) | |
fun onDidFinishLaunchingWithOptions() { | |
println("KMP Initializer: Starting setup...") | |
FIRApp.configure() // Call Firebase configure | |
println("KMP Initializer: Firebase project ID: ${FIRApp.defaultApp()?.options!!.projectID()}") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment