Unable to build after installing react-native-maps - react-native

I'm trying to implement google maps in my android app using React Native
I did all the following which I was supposed to do.
and I am getting this error in android studios
enter image description here

Related

React Native Expo open in IOS

Im starting to learn React Native using Expo. I just installed expo-cli, code some of my app (react-router-native, some jsx).
When I scan the QR (that shows visual code terminal after npm start of the project) to test the app on my iphone, I get this error in the phone:
Unable to resolve "#ungap/url-search-params" from "node_modules\react-router-native\index.js"
I can not open it on my iphone. App works ok on web.
Any ideas?

React Native Expo Sharepoint Image not showing on Android but does on IOS

True a php API I get the json from my sharepoint and all the data. Also the Image url that is stored there. Now the issue is when I get the image data and use it in React Native Expo on IOS it display's but on Android it doesn't.
Why is this, I already searched on Google but didn't find an answer.

Android React Native App Builds In Android Studio But Not Using The React Native CLI

I am able to build my app Using Run in Android Studio, but using the React Native CLI which I prefer, the app will not build using the react-native run-android command.
Using the React Native CLI, I get the error message:
Execution failed for task ':app:packageDebug'.
> react_9eow0duexig9bim4oxa9fkqs2$_run_closure4$_closure6$_closure10$_closure18
There are plenty of online posts about referencing the first line of the error of which none of the solutions fix the build, but there are literally no google results when searching for the second line.
Why would Android Studio be able to build the app when the React Native CLI can't?
I'm using RN v 0.61.4
Any help much appreciated.

Expo Branch: undefined is not an object (evaluating 'RNBranch.STANDARD EVENT ADD_TO_CART')

I am using expo for my react native application.
Steps:
- run expo start
Hit the error below on android studio emulator.
Working fine on real android device and IOS simulator.
UPDATE:
I have solved the issue. The issue was with my android studio. I open the app using the genymotion emulator and it was working
Unfortunately, Branch does not officially have a wrapper SDK for Expo and the link you referenced is built by a third-party which we cannot help troubleshoot.
Can you try ejecting your build from Expo and use native packages and linking in React Native, by following this: https://docs.branch.io/apps/react-native/#integrate-branch

cannot able to run react native project by android emulator

Error when try to run
I am having react native project and iam trying on android emulator via below command
react-native run-android
but its not working getting the error like in the image
From your log, it's clear that you haven't configured SDK location
You must add SDK location
sdk.dir=/Users/XXXXX/Library/Android/sdk
Create a new file named local.properties inside the android folder of your react-native app.
Add the SDK location.
Hope this helps