Hello friends i want to integrate deep link in my react native project with Android so below is my code
<WebView
source={{ uri: this.state.authURL }}
ref="webViewAndroidSample"
renderError={(error) => alert(error)}
startInLoadingState = {false}
javaScriptEnabled = {true}
domStorageEnabled = {true}
onNavigationStateChange = {this._onShouldStartLoadWithRequest}/>
_onShouldStartLoadWithRequest(e){
console.log("URL "+e.url);
}
When i click other link inside my webview i am not getting clicked link url in e.url which i log any idea how can i solve this issue?