Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Undo breaking change on ViewManagerDelegate.kt String params (#47086)
Summary: Pull Request resolved: #47086 When we migrated `ViewManagerDelegate` to Kotlin, we convered his string params to be `String` (rather than `String?`). Existing implementation of this interface in OSS written in Kotlin were using `String?` due to this interface being in Java (and not being Nullsafe annotated). Therefore now changing this interface from `String?` to `String` is a breaking change for them. Affected libraries are: https://github.com/search?q=%22fun+receiveCommand%28%22+%22commandId%3A+String%3F%22+%22args%3A+ReadableArray%22+language%3Akotlin+-org%3Afacebook+-is%3Afork&type=code&p=4 This prevents the breaking change and should be included in 0.76. Changelog: [Android] [Fixed] - Undo breaking change on ViewManagerDelegate.kt String params Reviewed By: cipolleschi Differential Revision: D64532446 fbshipit-source-id: aac286554ad0e35f557160f900bcbad1acc5930d
- Loading branch information