tieskedh
11/08/2020, 5:42 PM(1,9) Module JWTDecode not found.
The project has objc-attributes added: https://github.com/auth0/JWTDecode.swift/pull/55
The top-level pod uses: use_frameworks!
(It also has the JWTDecode-dependency...)
I do have:
// Revert to just ios() when gradle plugin can properly resolve it
val onPhone = System.getenv("SDK_NAME")?.startsWith("iphoneos") ?: false
if (onPhone) {
iosArm64("ios")
} else {
iosX64("ios")
}
which maybe explains the difference? But removing the if and trying first one and then the other also didn't seem to work.
Can anyone help me?georg
11/08/2020, 5:52 PMtieskedh
11/08/2020, 5:57 PMgeorg
11/08/2020, 6:03 PMpod install
to generate the workspace with the new pod.tieskedh
11/08/2020, 6:24 PM