In an organization scoped-package such as @unomed/react-native-matrix-sdk, UBRN puts the podspec into ./@unomed/react-native-matrix-sdk.podspec. However, the file actually needs to go into the root folder as unomed-react-native-matrix-sdk.podspec.
Similarly, inside the file, UBRN uses s.name = "@unomed/react-native-matrix-sdk" while it should be s.name = "unomed-react-native-matrix-sdk".
When I move the file, change the name and rebase the paths, everything works fine again.
PS: I also tested Android in an organization-scoped package. Everything appears to work fine out of the box there. 👌
In an organization scoped-package such as
@unomed/react-native-matrix-sdk
, UBRN puts the podspec into./@unomed/react-native-matrix-sdk.podspec
. However, the file actually needs to go into the root folder asunomed-react-native-matrix-sdk.podspec
.Similarly, inside the file, UBRN uses
s.name = "@unomed/react-native-matrix-sdk"
while it should bes.name = "unomed-react-native-matrix-sdk"
.When I move the file, change the name and rebase the paths, everything works fine again.
PS: I also tested Android in an organization-scoped package. Everything appears to work fine out of the box there. 👌