tkmin

Results 2 issues of tkmin

(at /node_modules/react-native-send-intent/android/src/main/java/com/burnweb/rnsendintent/RNSendIntentModule.java) among below codes ``` @ReactMethod public void openAppWithUri(String intentUri, ReadableMap extras, final Promise promise) { try { Intent intent = Intent.parseUri(intentUri, Intent.URI_INTENT_SCHEME); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); Intent existPackage = this.reactContext.getPackageManager().getLaunchIntentForPackage(intent.getPackage()); if...

I'm trying to migrate my RN project from v0.66.5 to v0.73.4, due to the ios app build failure. Among following the RN migration guide, I noticed "MainApplication.java" file should be...