react-native-linking

Cannot open phone call with Linking.openURL

一曲冷凌霜 提交于 2020-08-04 05:42:30
问题 Description Cannot open phone call with Linking.openURL('tel:+123456789') Environment Environment: OS: macOS High Sierra 10.13.4 Node: 8.5.0 Yarn: Not Found npm: 5.8.0 Watchman: Not Found Xcode: Xcode 9.3 Build version 9E145 Android Studio: 2.3 AI-162.4069837 Packages: (wanted => installed) react: 16.3.1 => 16.3.1 react-native: https://github.com/expo/react-native/archive/sdk-27.0.0.tar.gz => 0.55.2 expo: 27.0.1, Steps to Reproduce import ... export default class App extends React.Component {

React Native: Unable to import React headers after updating to 0.60

空扰寡人 提交于 2020-03-12 06:00:20
问题 After updating to React Native 0.60 the header linking does no longer work. I'm having problems linking from the React library during build: /Users/User/Developer/Project/node_modules/react-native-image-resizer/ios/RCTImageResizer/RCTImageResizer.m:12:9: fatal error: 'React/RCTImageLoader.h' file not found #import <React/RCTImageLoader.h> ^~~~~~~~~~~~~~~~~~~~~~~~ What changed in 0.60 : The file RCTImageLoader.h is now at /node_modules/react-native/React/CoreModules . The file React.xcodeproj

React Native: Unable to import React headers after updating to 0.60

时光毁灭记忆、已成空白 提交于 2020-03-12 06:00:08
问题 After updating to React Native 0.60 the header linking does no longer work. I'm having problems linking from the React library during build: /Users/User/Developer/Project/node_modules/react-native-image-resizer/ios/RCTImageResizer/RCTImageResizer.m:12:9: fatal error: 'React/RCTImageLoader.h' file not found #import <React/RCTImageLoader.h> ^~~~~~~~~~~~~~~~~~~~~~~~ What changed in 0.60 : The file RCTImageLoader.h is now at /node_modules/react-native/React/CoreModules . The file React.xcodeproj

Deeplink: go-back to browser from myApp, after clicking back-button in android, react-native

杀马特。学长 韩版系。学妹 提交于 2020-01-24 00:58:40
问题 I am using Android app, which is openned from chrome using Deeplink , 1) Code of AndroidManifest.xml file, which opens myApp(React-Native) when I click deeplink in browser. <intent-filter android:label="@string/app_name"> <data android:scheme="myapp" android:host="myhost" /> </intent-filter> 2) url-link of browser, which opens app, by matching scheme://host, and I am passing URL's too, as: <a href= "myapp://myhost/?name=gd">Open myApp</a> 3) I am using React-native, for getting those params

React Native open Facebook page

安稳与你 提交于 2019-12-10 15:56:17
问题 I've been trying to open Facebook page using React Native Linking API. It doesn't work for me. I do have Facebook app installed. Here is what I tried: Linking.openURL('fb://page/<page_name>'); Linking.openURL('fb://profile/<profile_name>'); Linking.openURL('http://facebook.com/<page_name>'); I also tried to use Communications library: Communications.web(url) . None works for Facebook and Instagram. However it works like a charm for Google Maps, Apple Maps, Twitter and other big guys. I was