Fix OSS Buck Kotlin build (#33166)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/33166

`pure_kotlin` kwarg doesn't exist in the OSS Buck definition, so we should remove it

Changelog: [Internal]

Reviewed By: cortinico

Differential Revision: D34417682

fbshipit-source-id: 24a0d1adb15dc244d37be7ded12e244619cc803c
This commit is contained in:
Andrei Shikov
2022-02-23 07:36:53 -08:00
committed by Facebook GitHub Bot
parent df2e934a69
commit 5fbc6f2adb
+1
View File
@@ -177,6 +177,7 @@ def _unique(li):
def rn_android_library(name, deps = [], plugins = [], *args, **kwargs):
_ = kwargs.pop("autoglob", False)
_ = kwargs.pop("is_androidx", False)
_ = kwargs.pop("pure_kotlin", False)
if react_native_target(
"java/com/facebook/react/uimanager/annotations:annotations",
) in deps and name != "processing":