Firebase signup with phone and email and then set password at first login
I have a mobile app with user signup by email and password working correctly. I want to change it as mentioned below.I want to signup a user with his email and phone number without specifying the...
View ArticleHow to integrate @2x @3x images to React Native Project (Both Android & IOS)?
I had added the same image's versions (@2x @3x)into src>asssets to work our platform in all devices. Here is the problem, VSCode only recognizes i.e path.png (it doesnt recognize @2x and @3x). How...
View ArticleError: Map already consumed - React Native
Basically I am connecting native android module with react native and passing information from native to js.try { WritableMap params = new WritableNativeMap(); params.putInt("connectionStatus", 2);...
View ArticleCouldn't start project on Android: Error running adb: adb: failed to run...
Getting this error while trying to run react-native app on emulator through expo.Couldn't start project on Android: Error running adb: adb: failed to run abb_exec. Error: closed adb: connect error for...
View ArticleReact-Native assembleRelease fails for task ':app:bundleReleaseJsAndAssets'
When I run ./gradlew assembleRelease build is failed with this error:Error:Execution failed for task ':app:bundleReleaseJsAndAssets. > A problem occurred starting process 'command 'node'I searched...
View ArticleCmd/React Native can't detect my JAVA_HOME environment variables
I'm trying to create a React Native app for Android. I use bash from the command line in Windows 10. I browse to the location of my React Native project and then run "react-native run-android". But...
View ArticleScroll View not working on android pixel simulator, but its working on ios...
return ( <View style={{ flexGrow: 1, flex: 1, height: Dimensions.get('window').height, flexDirection: 'column', }}> <ScrollView horizontal={false} contentContainerStyle={{flexGrow: 1}} >...
View ArticleHow to get ReactContext in a Android Service?
I want to start my service from ReactNative code. Here is the module I use to bridge.public class HeartbeatModule extends ReactContextBaseJavaModule { public static final String REACT_CLASS =...
View ArticleReact Native - Get file content
I am using react native and expo. I edit the app.json so any time I open local file from the device (click on the file) with "play" extension it open my app. The file contains text. This is some of my...
View ArticleReact Native update version in existing app
I have very large app on play store with very complicated code on React Native and Android. Most android library code is customized as per requirement in this app. Now I want to update my app on play...
View ArticleReact native fail to run-android even when emulator running
Running the command react-native run-android fails with the following output:Starting JS server... Building and installing the app on the device (cd android && ./gradlew installDebug... Could...
View ArticleUnable to load script from assets index.android.bundle on windows
I'm trying to run my first React Native project for first time on my device (Android 4.2.2).And I get: unable to load script from assets index.android.bundleCommands that I used:cd (project...
View ArticleHow can I regenerate Android and IOS folders in React Native project version...
I tried to usereact-native upgradereact-native upgrade --legacy truereact-native eject no command is useful in this case
View ArticleAfter Installing Admob, firebase version is conflicting - React Native
After installing the Admob https://www.npmjs.com/package/react-native-admob Npm package the firebase version is conflicting, I tired all previous version problem links, but after that also I can't fix...
View ArticleApp published but not indexed in Google Play after 2 weeks
For a client of ours we've created an app which has to be available by the 11th of October. The app is already available in the iOS App store but Google Play seems to be a problem.I have added the...
View ArticleHow can i check push notification permission for both ios and android in...
I want to check push notification permission for both ios and android. I want to see if user has switched off the push notification permission from his device settings. Is there any plugin or any code...
View ArticleXMLHttpRequest error in ReactNative Debug mode
I delete my android emulator and create a new one after this when i build my react native project and active debug mode this error appears on emulator but i dont have any problems with Previous...
View ArticleWhen run react-native run-android for run emulator adb android studio, show...
When run react-native run-android show error :Task :app:installDebug FAILED com.android.builder.testing.api.DeviceException: com.android.ddmlib.InstallException: INSTALL_FAILED_VERSION_DOWNGRADE
View ArticleReact Native GeoLocation is not working on Android
Can anyone confirm if React Native Geolocation is actually working on Android? I am stuck with location request timed out while using getCurrentPosition() method and no error message while using...
View ArticleHow to display WiFi network (SSID) list on react native app using expo?
Is there a way to display all Wifi list in react native using expo for Android. I have seen a few libraries but mostly for android and even those don't work properly. Any suggestions?I want like :
View Article