dephinera
01/18/2024, 10:19 AMUnable to find a specification for PrivatePod (~> 0.3.0) dependend upon by KMPModule
You have either:
* out-of-date source repos which you can update with `pod repo update` or with `pod install --repo-update`.
* mistyped the name or version.
* not added the source repo that hosts the Podspec to your Podfile.
Specifying the pod repo explicitly for the pod like this
pod("PrivatePod") {
version = "~> 0.3.0"
source = git("<https://gitlab>.<domain>.com/path/repo.git") {
tag = "0.3.0"
}
}
Fails with
Cloning into '/var/folders/1f/5nn9gymd4650nfgfv6lbx2q80000gp/T/d20240118-10099-4kfdwq'...
fatal: could not read Username for '<https://gitlab>.<domain>.com': Device not configured
and the cocoapods gradle plugin doesn’t support ssh urlsAndrew Reed
01/18/2024, 4:02 PMAndrew Reed
01/18/2024, 4:03 PMAndrew Reed
01/18/2024, 4:05 PM