Andrew Reed
01/31/2023, 10:57 AMCould not create task ':firebase-app:linkPodDebugFrameworkIosArm64'.
> Could not create task of type 'KotlinNativeLink'.
> Configuration with name 'iosArm64PodDebugFrameworkExport' not found.
Target setup is the following:
ios {
binaries {
framework {
baseName = "FirebaseApp"
}
}
}
iosSimulatorArm64 {
binaries {
framework {
baseName = "FirebaseApp"
}
}
}
Im using cocoapods to fetch the dependancy for ios:
kotlin {
cocoapods {
ios.deploymentTarget = "11.0"
framework {
isStatic = true
}
noPodspec()
pod("FirebaseCore")
}
}
Jon Bailey
02/01/2023, 10:32 AMAndrew Reed
02/01/2023, 10:32 AMAndrew Reed
02/01/2023, 10:33 AMAndrew Reed
02/02/2023, 10:51 AM