From 2c686c4cf48ab239edca0266fefc2e70836ed084 Mon Sep 17 00:00:00 2001 From: Jeong Tae Yong Date: Sun, 29 Sep 2019 00:20:33 +0900 Subject: [PATCH] fix for deprecated function using RN 0.60 --- .../es/tiarg/nfcndefreactnative/NfcNdefReactNativePackage.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/android/src/main/java/es/tiarg/nfcndefreactnative/NfcNdefReactNativePackage.java b/android/src/main/java/es/tiarg/nfcndefreactnative/NfcNdefReactNativePackage.java index 47dc61d..479dcfa 100644 --- a/android/src/main/java/es/tiarg/nfcndefreactnative/NfcNdefReactNativePackage.java +++ b/android/src/main/java/es/tiarg/nfcndefreactnative/NfcNdefReactNativePackage.java @@ -30,7 +30,8 @@ public List createNativeModules(ReactApplicationContext reactConte * listed here. Also listing a native module here doesn't imply that the JS implementation of it * will be automatically included in the JS bundle. */ - @Override + //Deprecated RN 0.60 + //@Override public List> createJSModules() { return Collections.emptyList(); }