Closed jpudysz closed 2 months ago
Sorry there was a breaking change in 0.6.0 which I needed for Android. All specs now virtually inherit from HybridObject
, so you need to explicitly call it's constructor. That's all you need to change:
class SomeHybrid: SomeHybridSpec {
- SomeHybrid() {}
+ SomeHybrid(): HybridObject(TAG) {}
}
Hey! After upgrading from v.0.5.0 to v.0.6.0, I can no longer construct my Hybrid that depends on another Cxx Hybrid
Error:
It would be great to still support that, as I don't want to expose
NativePlatform
to JS.