Posts

Showing posts with the label sdk

React Native / iOS SDK. No matching function for call to 'RCTBridgeModuleNameForClass' after update iOS SDK to 14.5

11 4 I have updated the iOS SDK platform to version 14.5 . The xCode version is now 12.5 . After updating, I cannot launch the application on my device. An error: No matching function for call to 'RCTBridgeModuleNameForClass' . I tried reinstalling the pods but it didn't help. How can fix it? Thanks ios xcode react-native sdk Share Improve this question Follow ...

Android React Native build fail

I create the simple React Native Project. Step 1. C:>react-native init AwesomeProject Step 2. C:>cd AwesomeProject Step 3. C:>react-native run-android After that I faced the following error. C:\Users\Smith\AwesomeProject>react-native run-android Scanning 575 folders for symlinks in C:\Users\Smith\AwesomeProject\node_modul es (13ms) Starting JS server... Building and installing the app on the device (cd android && gradlew.bat install Debug)... FAILURE: Build failed with an exception. * What went wrong: A problem occurred configuring project ':app'. > The SDK directory 'C:\Users\Smith\AwesomeProject\android\C:UsersSmithApp DataLocalAndroidsdk' does not exist. * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. BUILD FAILED Total time: 4.774 secs Could not install the app on the device, read the error above for details. Make sure you have an Android emulator running ...

Adding React-Native-Admob in React-Native

I am trying to add React-Native-Admob 2.0.0-beta.5 into React-Native v0.55.4 for Android. compileSdkVersion =26 buildToolsVersion ="27.0.3" targetSdkVersion = 26 supportLibVersion = "26.1.0" minSdkVersion = 18 And React-Native-Admob has compileSdkVersion 23 buildToolsVersion "23.0.1" defaultConfig { minSdkVersion 16 targetSdkVersion 22 } And when i Compile the error Exception occur The SDK Build Tools revision (23.0.1) is too low for project ':react-native-admob'. Minimum required is 25.0.0 I can't downgrade my project's SDK, other package uses that SDK. You don't need to downgrade, you need to upgrade. Dependencies were probably added in the SDK that admob relies on. You can download the specified version packages for the SDK through Android studio and then set your SDK version in the file to the appropriate version necessary for admob. Edit I see that you are saying that admob is using version...