AR with React Native
So the question I have is about the augmented reality in react native. I know there is ARKit (IOS only) and ARCore (Android only). It also has the expo AR library (which is what I use in the service)....
View ArticleHow to handle large data set of a API response in React Native
I am currently working on a social app in React Native. At news feed screen I am getting 200 news data (including text + image + video + map + other activities in each feed like Facebook and other...
View ArticleReact Native module that returns phone state not working
I have tried react-native-call-detection, but to no avail. Even though I managed to remove all the errors, it simply won't return any state. I have began making my own module with an android project...
View Articlereact-native mac os run android - adb path problem
When i run react-native run-android. All the build is ok but when it finish the app won't launch on the device. I got : BUILD SUCCESSFUL in 21s 347 actionable tasks: 2 executed, 345 up-to-date...
View ArticleComposite Image React Native?
I have a lot of different images in .png format.I would like to stack all these different images together to get one single image that I can display with the Image component of React Native.The goal is...
View ArticlegestureState and nativeEvent difference
I am trying to use React Native's PanResponder. In its callback functions there are two parameters that can be invoked: event and gestureState. If I log the event.nativeEvent, and the gestureState...
View Articleexporting an apk of a front end developed via react-native and back end...
As the title indicates I got an app recently with the client wanting me to test the code and the performance of the app. After doing that, I was asked to get the APK and publish it for a bonus but I'm...
View ArticleAlternative for Window function in SQLite version < 3.25.0?
I want retrieve the last 10 rows for each chat_id match in a table.This works perfect: SELECT * FROM (SELECT a.*, row_number() OVER (PARTITION BY a.chat_id ORDER BY a.timestamp DESC ) AS row FROM...
View ArticleReact Native Firebase - Push data to Array allowing to display in a FlatList
I am new to React Native and struggling a little to get this working. I have realtime database in Firebase which contains 'mechanic' names. I would like to retrieve these names and display them in a...
View Articlereact native scrollview not scrolling on android
I have the following component:export default class StoreComponent extends Component { render() { return ( <View style={styles.container}> <ScrollView contentContainerStyle={styles.scroll}>...
View Articlereact-native android error Failed to install the app native_modules.gradle'...
running react-native run-android in windows but get this error:error Failed to install the app. Make sure you have the Android development environment set up:...
View ArticleCould not find com.android.tools.build:gradle:3.5
I'm trying to update gradle from 1.3.1 to 3.5, as some of my dependencies requires version 3.3 or above.I've seen similar questions, but none of them help.build.gradle:buildscript { repositories {...
View ArticleReact Native Camera shows blank screen with loading spinner
I am working in react native with expo and I am trying to implement react native camera. However, when I implement it into my own code and even use this usage code, it shows a blank screen with a...
View ArticleCapture a system trace on the command line in react native give error of...
I am currently working on a social app in React Native and I want to see the systrace of the app. I'm follow the same process give in docs. SDK PATH HERE /platform-tools/systrace/systrace.py --time=10...
View Articlehow to use 2 react-native packages with same class names/ namespaces
I have a react-native app with react-native-purchases and react-native-indicative packages. They both have imports likeimport com.reactlibrary.RNPurchasesPackage; import...
View ArticleExpo Permissions dont work in Publish APK
Hi friends i make a apk on expo and react native and before from export all work but after in APK dont work… nor when installing, nor when in app i have this in my app.JSON{"expo": {"name":...
View ArticleCan we get face-id in react native for Android devices?
I was implementing biometrics in my app for authentication. I am using react-native biometrics for it. Every things working good just one stucked. Face-id is not working in Android. I did a lot of...
View ArticleGoogle Play Console signing error/invalid signature after rebuilding...
Our team decided to upgrade our react-native version from 0.59.x to 0.61.5. We have so many difficulty upgrading it so we decide to start a new repo from fresh (npx react-native init appName) and copy...
View ArticleQuestion mark is appeared as icon in react native application
I am trying to use Icon into my react native project so i installed :1.npm install react-native-vector-icons --save2.react-native link react-native-vector-iconsAfter this part all icons added to...
View ArticlePass data from Android Native to React Native
I am building an integrated app with Android native and React native communicating with each other.For sending data from Native to React native I tried to pass data by using initial props but it was...
View Article