Samuel Mitterrutzner
Samuel Mitterrutzner
You probably need to manually replace some files. I suspect you upgraded react native recently. If that's the case take a look at this: https://react-native-community.github.io/upgrade-helper/?from=0.70.7&to=0.71.3 and replace the files manually...
Not sure if this is related but I ran into a similar problem here when trying to create a many to many relationship between two tables: https://github.com/liquibase/liquibase-gradle-plugin/issues/143
@tati-qalified This issues is probably related as well: ```java class A { @Id private Long id; @ManyToMany(fetch = FetchType.LAZY) @JoinTable( name = "a", joinColumns = @JoinColumn(name = "b_id"), inverseJoinColumns =...
Hey @michaelAtRC I think there is something else going on as well. I have 2 apps on my machine locally: the first one is using v5 and the other one...
Hi @mikescamell thanks for you answer, but I don't even get to the point where I'm able to purchase anything. It already fails here: ```kotlin Purchases.sharedInstance.getSubscriptionSkus(skus, callback) ``` I know...
@michaelAtRC I'm using 6.4.0, I also tried other versions but all have the same problem
Hey sorry for not getting back to you, I was able to solve the issue by getting the products via the offerings: ```kotlin Purchases.sharedInstance.getOfferingsWith({ error -> callback.onError(error) }) { offerings...